Storage map listing

The topic lists statements that control the listing of storage map entries occurring in the DATA DIVISION.

The statement can be any of the following one:

*CONTROL MAP           [*CBL MAP]
*CONTROL NOMAP         [*CBL NOMAP]

If a *CONTROL NOMAP statement is encountered, and MAP has been requested as a compilation option, listing of storage map entries is suppressed from this point on.

For example, either of the following sets of statements produces a storage map listing in which A and B will not appear:


*CONTROL NOMAP         *CBL NOMAP
    01  A                  01  A
    02  B                  02  B
*CONTROL MAP           *CBL MAP