Context Object Parameters
Parameter Name | Type | Read/Write | Comments |
---|
Validation | Boolean |
Write | TRUE if the Item-Product scope can be removed and
FALSE otherwise. |
Sample
The following sample determines if an Item-Product scope can be removed.
Let iProcess(DELFmiFunctionReference)
Let ProcessName(String)
Let ProcessTest(String)
Validation = true
set iProcess = ThisObject
if ( NULL <> iProcess)
{
ProcessName = iProcess->GetAttributeString("V_Name ")
ProcessTest=ProcessName.Extract(0,3)
if (ProcessTest <> "Yes")
{
Validation = false
}
}