Using Values Greater than 255 for the LINE-SIZE of a List

If you define a fixed column width greater than 255 using the LINE-SIZE addition in the REPORT or NEW-PAGEstatement, the following notes apply:

Example

NEW-PAGE LINE-SIZE 1000.
DATA: F1(500) VALUE 'F1'.
WRITE: /      F1 COLOR COL_NORMAL.  " Output with length 255
WRITE: /(500) F1 COLOR COL_NORMAL.  " Output with length 500