In normal Clarion I can stop a record from displaying on the browse by entering a
returnvalue = RECORD:Filtered in the
Local Objects\Abc Objects \ Browse on whatever\Validate Record\code After the parent call embed.
In NT I have created a filter which work fine. However under certain circumstances I want to further restrict the records displayed if a child record for the record exists
In Clarion I would enter something like
childfield = parentfield
get(childfile,keychieldfield)
IF errorcode()
ReturnValue = RECORD:Filtered
END
in the above embed point to further restrict my browse.
What is the best way to do this in NT?