Print Reports
This section helps you to understand print reports.
- PRINT statements executed from a jBASE program combine to create a print report. All print reports are generated on print channel zero unless otherwise specified.
- Most jBASE processors such as jQL and jCL generates print reports on only channel zero, which provides automatic pagination, headings and footings.
- Print channels are numbered from 0 to 255.
- You can assign print report channels to various formqueues using the SP-ASSIGN command.
- Multiple print reports can be generated simultaneously by using the PRINT ON statement in a jBASE program. EXAMPLE:
PRINT ON 1 “Text for print report on print channel 1” PRINT ON 2 “Text for print report on print channel 2”
- Two separate print reports can be generated with separate print job numbers. They can be assigned to the same formqueue or different formqueues, depending on the options specified in the currently active SP-ASSIGN commands.
In this topic