Previous Topic Next topic Print topic


To convert an EBCDIC CCSID to ASCII

Attention: This feature is in Early Adopter Product (EAP) release status. We intend to provide the finalized feature in a future release. Please contact Micro Focus SupportLine if you require further clarification.

The CICS Web Services feature is EAP for development and testing usage. It should not be used for production deployment in this product release.

Note: To complete this task, you must have administrator privileges to the Enterprise Developer installation directory.
  1. Install both the EBCDIC and ASCII CCSIDs. See To install CCSID tables for details.
  2. Specify the EBCDIC CCSID in the SIT. See To specify a CCSID table in the CICS SIT for details.
  3. Code a COBOL module named MFCCSIDMAP, inserting the following code:
           linkage section.
           01 lk-ccsid                     pic x(4) comp-5.
    
           procedure division using by reference lk-ccsid.
               if lk-ccsid = EBCDIC-CCSID
                   move ASCII-CCSID to lk-ccsid
               end-if
               goback.

    Where EBCDIC-CCSID is the CSSID specified in the SIT and ASCII-CCSID is the corresponding ASCII CCSID.

  4. Compile MFCCSIDMAP to a dynamic link library (.dll) file, using the charset(ASCII) and dialect(MF) directives.
  5. Make a backup copy of the existing MFCCSIDMAP.dll files located by default in %ProgramFiles(x86)%\Micro Focus\Enterprise Developer\bin and \bin64 .
  6. Copy your new MFCCSIDMAP compiled program files to the %ProgramFiles(x86)%\Micro Focus\Enterprise Developer\bin and \bin64 directories respectively, overwriting the existing files.
Previous Topic Next topic Print topic