General InformationThis opening ID is invoked when:
Input ObjectsInput objects must be of the following types:
Context Object Parameters
Note:
Modifications done on the symbol reference do not update in already placed symbol instance. You need to remove the symbol from the diagram view and to place it again to see the modifications.
SampleIn the following sample, the V_description value is defined as alternative representation name. Any other attribute value can be defined as an alternative representation name. Let AlternateRep(String) Let ThisInstance (RFLVPMLogicalInstance) set ThisInstance = ThisObject.Instance AlternateRep = Parameters.GetAttributeString("AlternativeRepName") if (ThisInstance.HasAttribute("V_description") == true ) { AlternateRep = ThisInstance.GetAttributeString("V_description") } Parameters.SetAttributeString("AlternativeRepName", AlternateRep) After business rule execution, the alternative representation with the same name as the string returned by the business rule is activated in diagram view. |