On Field Update Set User Property In Siebel With Examples Rating: 9,2/10 3211 votes
On Field Update Set User Property In Siebel With ExamplesOn field update set user property in siebel

Admin Mode User Property In Siebel

Property

On Field Update Set User Property In Siebel With Examples In Java

I don't know of any out of the box solution to your needs, however there are many ways to achieve it with a bit of customisation. For example:. Create two new fields, Waiting Time (with predefault value: 0) and Waiting Date. Create the following BC user properties:. On Field Update Set x = 'Status', 'Waiting Time', 'IIF(Waiting Date IS NULL, Waiting Time, Waiting Time + (Timestamp - Waiting Date)).

On Field Update Set User Property In Siebel With Examples In Excel

On Field Update Set y = 'Status', 'Waiting Date', 'IIF(Status='Waiting on Customer',Timestamp,NULL)'Your Waiting Date field will store the last time the service request changed to 'Waiting on Customer', or NULL if it's on another status. Then, Waiting Time will accumulate the total time the request has been in that status.I have not tested the solution, it might need some more work, for example, it's possible that Siebel doesn't allow you to use the expression Waiting Time + (Timestamp - Waiting Date) directly and you'll have to decompose it using auxiliary calculated fields.Note also that the On Field Update Set user property has changed its syntax from to.If you're familiar with server scripting, you could implement something similar quite easily, on the BusCompPreSetFieldValue event. If the field being changed is Status, check if you're entering or exiting (or not) the 'Waiting on Customer' status, and update the two fields accordingly.