The REPORT command specifies the name of the file where the Apply Engine Engine Runtime Report and statistics are written. It optionally specifies the interval (record count) used to determine the report frequency.
If the REPORT command is not specified then the following defaults are used, depending on the operating system in which the Engine is executing:
- For Multiplatform, the Runtime Report/statistics will be displayed on the screen/terminal or the report can be redirected to a file (i.e. > runtime.rpt).
- On the z/OS platform, the Runtime Report/statistics will be written to the SYSPRINT DD statement.
REPORT [<report_file>] [EVERY <interval>];
REPORT [<report_file>] [EVERY <interval>];
Keywords | Description |
---|---|
[<report file>] |
Optional name of the file designated to contain the report output. In the z/OS environment, DD:ddname must be specified, where ddname is the name of the DD statement that references the report file. |
[EVERY <interval>] |
Optional interval count that when specified, will display message SQD0028I along with the number of records processed at each interval threshold. |
Example 1: Multiplatform
REPORT /home/sqdata/IMSTODB2.rpt EVERY 10000;
Example 2: z/OS Platform
REPORT DD:SQDRPT;