|  | 
| Access to the ProfMaster Base Object from a custom rule in Process code | 
Function Evaluate As System.Boolean
 Return Me.IM_AutoBillEdit.IsOutsideProcess.Value(False)
End Function
However, this Base Object property is not accessible in Else rules. To access it, cast Me.Process to its type and then access individual objects though the object collection.
|  | 
| Access to the ProfMaster Base Object from an ELSE rule in Process code | 
For Each profMasterItem As ProfMaster In _
CType(Me.Process, NextGen.Application.Process.ProfProcess). _
ProfMasterCollection
NextMessage = profMasterItem.Description
Next
End Sub
 
No comments:
Post a Comment