After Product or Part-Item Implement Link Creation (DELPLMFProcessOccurrence_ImplementLinkCreationID)

An opening ID is an entry point used to customize business logic. After Product or Part- Item Implement Link Creation specifies the opening ID run after the creation of an implement link between an item and a part or Product.

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: DELPLMFProcessOccurrence_ImplementLinkCreationID
Customization intent: Execution
Execution context: Client

Input Objects

Input objects must be of the following types:

  • ThisObject: reference (for a scope link) or instance (for an implement link) of an item
  • Parameters corresponds to the context object.

Context Object Parameters

Parameter NameTypeRead/WriteComments
iPartOccurrence ProductOccurrence or Part ReadReference (for a scope link) or occurrence (for an implement link) of the implemented product or part. When iPartOccurrence is an EBOM, it is always a reference.

Sample

The following sample creates of an implement link between an item and a design part occurrence.

Let iPartOccurence(ProductOccurrence)		/* the occurrence of design part */
Let ProcInst(DELFmiFunctionInstance)
Let NewProcessName(String) 

set iPartOccurence= Parameters->GetAttributeObject("iPartOccurrence")
if (iPartOccurence <> NULL)
{
   set ProcInst = ThisObject
   if  (ProcInst <> NULL) 
   {
     NewProcessName= "This is a new name"
     ProcInst. PLM_ExternalID = NewProcessName  
   }
}