To make the MVG Field/Applet Read only based on the particular field value in the Parent BC
Example,
Account is the Parent BC and CUT Address is the Child BC.
If the Account Status field is “Inactive”, the Address MVG Field should become read-only.
Configuration:
In Parent BC, Create a calculated field as follows
Field Name: CalAddrReadOnly
Value: IIF([Status]="Inactive", "Y", "N")
In Child BC - User Properties, create one record with the following values:
Name: Parent Read Only Field
Value: Account. CalAddrReadOnly
*from TIP of the Day by Anil S Kumar, IBM
Account is the Parent BC and CUT Address is the Child BC.
If the Account Status field is “Inactive”, the Address MVG Field should become read-only.
Configuration:
In Parent BC, Create a calculated field as follows
Field Name: CalAddrReadOnly
Value: IIF([Status]="Inactive", "Y", "N")
In Child BC - User Properties, create one record with the following values:
Name: Parent Read Only Field
Value: Account. CalAddrReadOnly
*from TIP of the Day by Anil S Kumar, IBM
Comments