Order Screen Status Value

In an order screen if the status value changes from inprogess to completed all the line items must become readonly. How it can be done?

Questions by jsujatha06

Showing Answers 1 - 9 of 9 Answers

1. Under Line Item bc create a calulated field by 
Name: Record Read Only
value: IIF(ParentFieldValue("Status")="completed all the line items",'Y','N')
ParentFieldValue("Status") will fetch Status value from parent record on Line Item (Child bc).

2. Under Line Item bc Create a user property
Name: BC Read Only Field
Value: Record Read Only

3. Compile the Line Item bc on the srf and then test.

venu.panta

  • Oct 26th, 2010
 

Siebel has provide the faciliate to configure this rek is Parent Read Only Field user property.

1. Create Calculated field in Order BC.
 Name: CalcStatus
 Calc Value: Iff([Status]=Lookupvalue('ORDER_STATUS'Completed'),'Y','N')

2.Goto Orderline Item BC and Create User property.

Name: Parent Read only field
Value: OrderBC.CalcStatus

compile srf.

Parent read only field will

  Was this answer useful?  Yes

YYYY

  • Aug 10th, 2017
 

Parent Read Only Field

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions