Search This Blog

User Properties

Opportunity BC User Property :
Lets take an example and try to configure it. Suppose, on Opportunity business Component, there are two fields : a) Sales Stage b) Revenue. The requirement is as soon as "Sales Stage" = "Lost", user is not allowed to make any more change in "Revenue" field.
Lets how we can achieve this :
1. Create a calculated field:
 Name = Revenue Read Only Calc
 Calculated = TRUE
 Calculated Value = iif([Sales Stage] = "Lost", "Y", "N")
2. Create one User Property at Opportunity Business Component :
 Name = Field Read Only Field: Revenue
 Value = Revenue Read Only Calc
That's it !! Compile the Opportunity Business Component and try to change the value of Sales Stage on the UI.
========================================================================
Service Request BC User Property :
Scenario:If Service Request business component Status field is closed then the Action BC should become read only.
Parent BC: Service Request
Child BC: Activities
Implementation:
1. Create a Calculated Field in Parent BC – Service Request as shown below –
Field Name: Calc Status Closed
Calculated Value: IIF([Status] = “Closed”,”Y”,”N”). …Thanks Vijaya for noticing it
Note: Set the Links Specification Property to TRUE for the field: [Calc Status Closed]
2. Create a BC User Property in Child BC – Action as shown below -
Name: Parent Read Only Field: Service …
========================================================================

No comments:

Siebel IP 2017 - Web Tool Development Steps

Siebel IP 2017 Development and Deployment Steps : 1. Click on the Workspace Icon in Siebel Web Tools application. 2. Create a New work s...