Create Action (PLMActionCreate)

An opening ID is an entry point used to customize business logic. Create Action operates some modifications of the attributes of the PLM Component.

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

This page discusses:

Environment: On premises only

General Information

This opening ID is invoked after having created a component.

The table below provides you with information related to the definition of the Opening ID.

Opening ID: PLMActionCreate
Customization intent: Execution
Execution context:Server

Input Objects

Input objects must be of the following types:

  • ThisObject
  • Parameters corresponds to the context object.

PLM Component Class TypesPurpose
PLMCoreReferencePLM reference
PLMCoreRepReferencePLM representation (reference with stream attached)

Context Object Parameters

Parameter NameTypeRead/WriteComments
PolicyStringReadPolicy name.

Sample

The following sample shows you how to set the object description through the PLMActionCreate rule.

/* ----------------- */
/*      Declare      */
/* ----------------- */

/* ----------------------------------------------- */
/*    Set the object description   */
/* ----------------------------------------------- */
ThisObject.V_description = "description set by CreateActionRule"