Environment: On premises only General InformationThis opening ID is called when creating a new version of a component. The table below provides you with information related to the definition of the Opening ID.
Input ObjectsInput objects must be of the following types:
Context Object Parameters
SampleThe following sample /*The following rule is an example of what can be done*/ /* ----------------- */ /* Declare */ /* ----------------- */ Let newObject (PLMEntity) Let DescriptionValue="" /* ----------------------------------------------------------------------------- */ /* Retrieves the object description and searches for specific string sequence */ /* ----------------------------------------------------------------------------- */ DescriptionValue = ThisObject->GetAttributeString("V_description") DescriptionValue = DescriptionValue + " PLMActionNewVersion" ThisObject.V_description = DescriptionValue set newObject = Parameters->GetAttributeObject("NewObject") if (newObject == NULL) Trace(1, "obj null") else newObject.V_description = DescriptionValue |