Rule to Get Logical System Information (Schematic_GetLogicalSystemInformation)

An opening ID is an entry point used to customize business logic. The Schematic_GetLogicalSystemInformation opening ID provides the system of a logical object.

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 a new symbol or route is placed in a diagram view using one of the following commands:

  • Create New Reference
  • Insert New Reference
  • Insert Existing Reference
  • Create From Existing Reference
  • Insert From Catalog
  • Place in View
  • Route in View
  • Create Route

Definition Description
PLM Opening ID Schematic_GetLogicalSystemInformation
Customization intent Execution
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
Object_To_Access_System_Name (output) Object Type Write The logical object which will give information about system name.
Attribute_To_Access_System_Name (output) String Write Attribute name to get the system name.

Sample

In the following sample, the rule returns the father of the logical object as the system.

Let SystemObject(LogicalOccurrence)
set SystemObject = ThisObject.Owner
Parameters.SetAttributeObject("Object_To_Access_System_Name", SystemObject)