Binder Language to Export Tax Rate Data
STRPGMEXP PGMLVL(*CURRENT) EXPORT SYMBOL('taxrate')
ENDPGMEXP
Note:
- The Start Program Export (
STRPGMEXP) command identifies the beginning of a list of exports from the service program T1520SP1. - The Export Symbol (
EXPORT) command identifies the symbol nametaxrateto be exported from the service program T1520SP1. - The symbol name
taxrate, identified between theSTRPGMEXP PGMLVL(*CURRENT)andENDPGMEXPpair, defines the public interface to the service programT1520SP2. Only those procedures and data items exported from the module objects making up the ILE C service program can be exported from this service program. - The symbol name
taxrateis enclosed in apostrophes to maintain its lowercase format. Without apostrophes it is converted to uppercase characters. (The binder would search for TAXRATE, which it would not find.) - The symbol name
taxrateis also used to create a signature. The signature validates the public interface to the service programT1520SP2at activation. This ensures that the ILE C service programT1520SP1and the ILE C programT1520PG1can use service programT1520SP2without being re-created.