GetCurrentRFInstance( )
Get the form instance number where the rule is currently being run.
Syntax
GetCurrentRFInstance()
Parameters
None.
Return Value
Number that represents the repeating form instance number where the rule is being run.
Examples
Example 3-58 If this is the first instance, raise a query if aeDate is not entered
// If this is the first instance, raise a query if aeDate is not entered
return (GetCurrentRFInstance() == 1 && aeDate === null)?false:true;
Parent topic: Repeating form functions