What do you do if you do not want characters entered by the user to be folded to uppercase?
Reveal answer
Fill a bubble to check yourself
What do you do if you do not want characters entered by the user to be folded to uppercase?
Use ASCI option on RECEIVE
Use ASIS option on RECEIVE
Use Unicode option on RECEIVE
Use ASCII option on RECEIVE
The ASIS option on the RECEIVE MAP command preserves the case of characters entered by the user instead of folding them to uppercase. Option A and D are the same incorrect spelling (ASCI instead of ASIS), and Option C (Unicode) is not a valid RECEIVE option for case preservation.
In CICS BMS, the ASIS option on a RECEIVE command tells CICS to pass the input exactly as the user typed it, preserving lowercase characters instead of automatically folding them to uppercase. Without ASIS, CICS's default behavior uppercases input, so this option is specifically what disables that folding.