I have a CICS tran that returnes names to the screen and then I do a screen scrape. I am getting names that have the spanish character n (n with an inverted s ontop). When this is encountered it deletes 1 byte from my field size which causes an error in the next name string because of an invakid character. Is there a way to change / bypass /ignore this character in the emulation.
The format of the screen is
01 wk-name.
05 wk-number pic 9(05).
05 wk-name pic x(35).
05 filler pic x(02).
In the VSAM file that character is unprintable and the hex representation is x'13'.
Thanks in advance.
The format of the screen is
01 wk-name.
05 wk-number pic 9(05).
05 wk-name pic x(35).
05 filler pic x(02).
In the VSAM file that character is unprintable and the hex representation is x'13'.
Thanks in advance.