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 RECEIVE preserves user input exactly as typed, without converting characters to uppercase. By default, many systems automatically fold input to uppercase for consistency, but ASIS maintains the original case formatting when needed for case-sensitive processing.
In CICS BMS, the RECEIVE command normally folds lowercase input to uppercase unless you specify the ASIS option, which tells CICS to pass through characters exactly as the user typed them, preserving case. ASCII/Unicode options relate to character encoding translation, not case folding, so they don't address this requirement.