Clone Naming for Manufactured Part Generation (DELMA_ElementaryEndItemNaming)

An opening ID is an entry point used to customize business logic. Clone Naming for Manufactured Part Generation specifies the opening ID run to retrieve the name of the cloned part used for Manufactured Part resulting product (Manufactured Part generation).

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

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

PLM Opening ID: DELMA_ElementaryEndItemNaming
Customization intent: Execution
Execution context:Client

Input Objects

Input objects must be of the following types:

  • ThisObject: Reference of the Manufactured Part.
  • Parameters corresponds to the context object.

Context Object Parameters

Parameter NameTypeRead/WriteComments
iPartReferenceObject Type Read Reference of the cloned part.
iEEIReferenceObject TypeRead Reference of the Manufactured Part.
oEEINameStringWriteName of the clone.

Sample

The following sample shows how to retrieve the name of the cloned part used for Manufactured Part resulting product.

/* INPUTS */

Let PartReference(VPMReference)        /* the reference of design part */
Let EEIReference(VPMReference)         /* the reference of Manufactured Part */

/* OUPUTS */

Let CloneName(String)                /* clone name */

PartReference = Parameters.GetAttributeObject ("iPartReference")
EEIReference= Parameters.GetAttributeObject ("iEEIReference")

CloneName= PartReference. V_Name + EEIReference. V_Name

Parameters.SetAttributeString ("oEEIName",CloneName)