ClearLookupResults

Clears the results that are returned by the previous Lookup action.

Syntax

bool ClearLookupResults ()

Parameters

None.

Returns

Always True.

Level

All.

Details

This action clears the stored results returned from a previous Lookup action such as PopulateWithResult.
Example:
OpenConnection("@APPVAR(*/lookupdb:cs)")
ExecuteSQL("SELECT NAME, ADDRESS FROM Vendor;")
PopulateWithResult("1")
ClearLookupResults()     

Here, ClearLookupResults() clears the stored results of the Vendor Name and Address.