pjs.found()
This method indicates whether or not a record was found by a prior call to file.getRecord(), file.positionTo(), file.positionAfter(), or file.delete(searchArgument).Â
Return Value
A Boolean value indicating whether/not a record was found.
Example
pjs.defineTable("myfile", { keyed: true, read: true });
myfile.getRecord(100);
if (pjs.found())
doSomething();
RPG Equivalent
%FOUND()