GetCurrentRFInstance( )

Get the form instance number where the rule is currently being run.

Syntax

GetCurrentRFInstance()

Parameters

None.

Return Value

Repeating form instance number where the rule is being run.

Example 3-56 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;