Text Conversion/Batch Usage
Cobol
It is occasionally necessary to convert data from mixed case to upper
case or upper case to mixed case. There are options to perform upper
case to mixed case for names, addresses, cities and name suffices.
From a Cobol program, this module is called as follows:
CALL 'IS9015C' USING H9015D1 IS9015D2
where H9015D1 and H9015D2 are defined as follows:
- Text to be Converted -- 50 bytes/input and output
- Text Conversion Option -- 1 byte/input
- A - Convert Address to Mixed Case
- C - Convert City to Mixed Case
- L - Convert to All Lower Case
- N - Convert Name to Mixed Case
- S - Convert Name Suffix to Mixed Case
- U - Convert to All Upper Case
No JCL changes are required to invoke this procedure.