See Also: RowId, RowId Helper Functions
Determines if a RowId value is null.
(IsNullRowId( {RowId} ))
Where:
{RowId} is a value of type RowId
Function RefindLastRecord returns Boolean
RowId riRow
Boolean bFound
Get priLastRow to riRow
If (IsNullRowId(riRow)) begin
Send RecordDoesNotExist
End
Else Begin
Move (FindByRowId(Customer.File_Number, riRow)) to bFound
End
Function_return bFound
End_Function // RefindLastRecord
IsNullRowId returns true if the value of the RowId variable is null. This is the only way you can test if a RowId variable is "empty" (i.e., null).