Rule to Insert an Existing View (Schematic_InsertExistingDifView)

An opening ID is an entry point used to customize business logic. The Schematic_InsertExistingDifView opening ID is used to define if a view can be instantiated.

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 inserting an existing view under a sheet.

DefinitionDescription
PLM Opening IDSchematic_InsertExistingDifView
Customization intent Validation
Execution contextClient

Input Objects

Input objects must be of the following types:

  • ThisObject: DifView
  • Parameters corresponds to the context object.
  • Validation variable set to know if the validation succeeded or failed:
    • TRUE: an existing view can be inserted in a sheet.
    • FALSE: an existing view cannot be inserted in a sheet.

Context Object Parameters

Parameter NameTypeRead or WriteComments
ThisObject (input)DifView Read -
ValidationBooleanWrite-

Sample

The following sample shows how to set the Schematic_InsertExistingDifView opening ID:


set Validation = False

if(ThisObject.Name == "ViewGA")
{
  Validation = True
}