Environment: On premises only
General Information
This opening ID is
called after creating a component, and after having potentially called the Create Action
business logic that may have modified some of its attributes.
The table below provides you with information
related to the definition of the Opening ID.
Opening ID: |
PLMPostCheckCreate |
Customization intent: |
Validation |
Execution context: |
Server |
Input Objects
Input objects must be of the following types:
ThisObject
Parameters
corresponds to the context object.
Context Object Parameters
Parameter Name |
Type |
Read/Write |
Comments |
Policy |
String |
Read |
Policy name. |
Sample
The following sample shows you how to check the object description using the
PLMPostCheckCreate rule. The description has been set by the PLMActionCreate rule.
/*The following rule is an example of what can be done*/
/* ----------------- */
/* Declare */
/* ----------------- */
Let DescriptionValue=""
Let Idx=-1
/* ----------------------------------------------------------------------------- */
/* Retrieves the object description and searches for specific string sequence */
/* ----------------------------------------------------------------------------- */
DescriptionValue = ThisObject->GetAttributeString("V_description")
Idx = DescriptionValue->Search("CreateActionRule")
if (Idx >= 0)
Validation = true
else
Validation = false