Page History
...
| Option | Description | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| text | Any string of characters, including alpha, numeric, and punctuation except double and single quotes. | ||||||||||||||||||||||||||||
| "@" in the first position of each line of text will center the heading on the page. | |||||||||||||||||||||||||||||
| options | Options can be embedded into the heading text to include page numbers, date, time, and more. Options consists of one or two characters within single quotes. The options available are: | ||||||||||||||||||||||||||||
|
Example
| Code Block |
|---|
* A Heading
Heading "Invoices sorted by date'L'Page 'PP'"
* Center the heading
Heading "@Invoices sorted by date 'L' Page 'PP'"
* Using the heading in a Run_Report statement
Declare Subroutine Run_Report
stmt = 'LIST CUSTOMERS CUSTOMER_NAME CITY STATE ZIP LANDSCAPE '
stmt: = 'Heading "@Customer Info '
stmt: = " 'L' Page 'PP'"
stmt: = '"'
Run_Report("",stmt) |