Previous Topic: SyntaxNext Topic: PRINT Control Statement


Examples

To output bundle identifier and bundle status, use the following statements:

/OUTPUT BID
/OUTPUT BSTAT

To output distribution identifier in column 1 and the first address line in column 35, specify the following OUTPUT control statements:

/OUTPUT DID COL(1)
/OUTPUT A1 COL(35)

To output distribution identifier and all address lines as separate records, use:

/DEFINE I BIN
/DO I = 1 TO NA BY 1
/         OUTPUT DID SKIP
/         OUTPUT A
/         NEXT A
/END