Wrapper Program Example

You can use this sample wrapper program as a prototype for the code in your own wrapper program.
You must provide a wrapping program if the copy member contains any of these elements:
Note: In these cases a SPECIAL-NAMES paragraph should be specified in the wrapping program that provide definition for them.

Sample wrapper program

ex.cbl

       IDENTIFICATION DIVISION.
       PROGRAM-ID. MINI.
       ENVIRONMENT DIVISION.
       CONFIGURATION SECTION.
       SPECIAL-NAMES.
           SYMBOLIC CHARACTERS EXMARK IS 134
           DECIMAL-POINT IS COMMA
           CURRENCY SIGN  'EUR' PICTURE SYMBOL 'Q'.
       DATA DIVISION.
       WORKING-STORAGE SECTION.
            COPY member.
       END PROGRAM MINI.

Feedback