Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
* --- Set 'backward' Relation ---
SELECT RptData1 && Parent table
SET ORDER TO <DesiredIndex>
SELECT RptData2 && Child table
SET RELATION TO <Expression> INTO RptData1
* --- Print Report #1 ---
SELECT RptData2
SET FILTER TO RptData1.Fieldn = <Desired Value> && Print all data for only 1 Parent record
REPORT FORM MyReport1 NOCONSOLE TO PRINT
<do whatever>
* --- Print Report #2 ---
SELECT RptData2
SET FILTER TO RptData1.Fieldn = <Desired Value> && Print all data for only 1 Parent record
REPORT FORM MyReport2 NOCONSOLE TO PRINT