General InformationThis opening ID is invoked when creating an interface. This opening ID is used to customize the interface identifier. The table below provides you with information related to the definition of the Opening ID.
Input ObjectsInput objects must be of the following type: Context Object Parameters
SampleThe following sample shows how to valuate the instance identifier at creation of flows and types. Let sType="" Let sIdentifier="" Let sUniqueKey="" /* Getting Unique Key */ sType = Parameters->GetAttributeString("Type") sUniqueKey = GetUniqueKey(sType) /* Create the identifier */ if (sType == "RFLPLMFlowExpositionInstance") { sIdentifier = "Flow Exposition Identifier " + sUniqueKey } else if (sType == "RFLPLMFlowInstance") { sIdentifier = "Flow Identifier " + sUniqueKey } else if (sType == "RFLVPMSystemTypeExpositionInstance") { sIdentifier = "Type Exposition Identifier " + sUniqueKey } else if (sType == "RFLVPMSystemTypeInstance") { sIdentifier = "Type Identifier " + sUniqueKey } Parameters->SetAttributeString("Identifier",sIdentifier) |