General InformationNote:
This business logic defines the wanted behavior when dropping a Workplan operation on a
General operation. The behavior can be either:
The table below provides you with information related to the definition of the opening ID.
Input ObjectsInput objects must be of the following type:
Context Object Parameters
SampleThe following sample shows how to use the opening ID.
/* INPUTS DEFINITION*/ Let TargetOperation(ProdSystemOccurrence) /* the occurrence of the drag&drop target operation */ Let DraggedOperation(ProdSystemOccurrence) /* the occurrence of the drag&drop dragged operation */ /* OUTPUTS DEFINITION*/ Let AsASystemBehavior(Boolean) /* RETRIEVE INPUT PARAMETERS*/ if ( true == Parameters.HasAttribute("iTargetOpeOcc")) set TargetOperation= Parameters.GetAttributeObject("iTargetOpeOcc") if ( true == Parameters.HasAttribute("iDraggedOpeOcc")) set DraggedOperation= Parameters.GetAttributeObject("iDraggedOpeOcc") /* By default the target operation holds the link */ set AsASystemBehavior = false Parameters.SetAttributeBoolean("oAsASystemBehavior",AsASystemBehavior) |