Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Defining Czech character set

Status
Not open for further replies.

greggvdw

Programmer
Aug 20, 2001
1
ZA
How do I define the Czech (or any odd alphabet) in the special names section. This is in order for it to respond to both Ascii and Ebcdic collating sequences. We have implemented our COBOL based information management system at a Czech company along with our GUI translator. Now the only problem that remains is that whenever a sort is performed, the data being sorted does not correspond with the values assigned by the ASCII and EBCDIC functions.
The mainframe is Unix and the terminals are NT.
 
First, The Language must be supported by the compiler. This may require an add-on from the vendor.
Second, The "names" of most alphabet names are also implementor-defined.
Third, Czech ASCII and Czech EBCDIC will, of course, be different alphabets.
Fourth, assuming you have the required alphabets supported on your system, you can specify a different alphabet (from your SPECIAL NAMES) in the COLLATING SEQUENCE phrase of the SORT statement.
Fifth, if worse comes to worst, you can define the alphabet and sort-sequence in SPECIAL NAMES, but you have to do it character by character, and include any odd characters which might show up in the sort fields.

Stephen J Spiro
Member, J4 COBOL Standards Committee
check it out at

stephenjspiro at hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top