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:
- A reference to a symbolic character
- A numeric-edited pictures that contains currency symbol that require a
CURRENCY SIGN clause
- A comma used as a decimal point in a PICTURE clause
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.