Display the Parent Container (Schematic_ GetCompositeName)

An opening ID is an entry point used to customize business logic. The Schematic_ GetCompositeName opening ID allows you to display a containee under its container parent in the app tree.

Note: For more information about customization by business rules, see Installation and Setup: Customize: Behavior: Data Setup: Customization by Business Rules.

This page discusses:

General Information

This opening ID is invoked when you display the components in the app tree.

Definition Description
PLM Opening ID Schematic_ GetCompositeName
Customization intent Computation
Execution context Client

Input Objects

Input objects must be of the following types:

  • ThisObject: Logical Occurrence
  • Parameters corresponds to the context object.

Context Object Parameters

Parameter Name Type Read or Write Comments
ThisObject (input) LogicalOccurrence Read Name of the containee.
CompositeName Sting Write Name of the container.

Sample

The following sample shows how to define the Schematic_ GetCompositeName opening ID.

Let instance(RFLVPMLogicalInstance)
Set instance=ThisObjectInstance

Let result(String)
Set result=instance.GetAttributeString("V_description")

Parameters.SetAttributeString("CompositeName",result)