Loads and executes the report that you specify.
Report.RUN |
Parameters
- Report
- Type: Report After you define this variable, you can run this function or the Report.RUNMODAL function on the variable. The variable is automatically cleared after it executes this function.
Remarks
Use this function or the RUNMODAL Function (Report) if you know at design time the exact report that you want to run. Otherwise, use the REPORT.RUNMODAL Function or REPORT.RUN Function.
If the report you specify does not exist, then a compile error occurs.
Example
This example requires that you create the following variables.
Variable name | DataType | Subtype |
---|---|---|
CustomerRec | Record | Customer |
SomeReport | Report | Salesperson - Sales Statistics |
Copy Code | |
---|---|
CustomerRec.SETCURRENTKEY("No."); CustomerRec.SETFILTER("Salesperson Code", 'JR|PS'); SomeReport.SETTABLEVIEW(CustomerRec); SomeReport.RUN |