Specifies which indicators are to be used when a data record is written. Indicators can be used to pass information about the data record and how it was entered into the program.
For detailed information on the INDICATORS phrase, refer to Using Indicators with Transaction Files in the IBM Rational Development Studio for i: ILE COBOL Programmer's Guide.
Identifier-8 must be either an elementary Boolean data item specified without the OCCURS clause or a group item that has elementary Boolean data items subordinate to it.
Figure 1 shows an example of rolling. An initial screen format, FMT1 is written on the work station screen. The program processes this screen format and is now ready to write the next screen format, FMT2, to the workstation screen. Part of FMT1 is rolled down 2 lines before FMT2 is written to the workstation screen.
WRITE SCREENREC FORMAT "FMT2"
AFTER ROLLING LINES 14 THROUGH 20
DOWN 2 LINES
