Context Object Parameters
Parameter Name | Type | Read/Write | Comments |
---|
iComputationMode | Boolean |
Read | TRUE if the materializing product is computed and FALSE if it is set. |
Sample
The following sample describes how to access the item reference on which the link is set.
Let Prcs (DELFmiFunctionReference)
Let Prd (VPMReference)
Let Name (String)
Let ComputationMode(Boolean)
set ComputationMode=Parameters->GetAttributeBoolean("iComputationMode")
/* Use ThisObject to access process reference from which link is set */
Set Prcs = ThisObject
Prd = Prcs->GetProcessOutput()
If (Prd <> NULL)
Prcs.V_Name = Prcs. V_Name + " with output process"
Else
Trace(1,"ERROR: init materialization link GetProcessOutput return NULL")