IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Case sensitive field


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
kirankumart

New User


Joined: 04 Aug 2009
Posts: 10
Location: Hyderabad

PostPosted: Thu May 19, 2011 4:20 pm
Reply with quote

I have a field WS-DESC on map, defined as PIC X(8).

move DESC to WS-DESC.
DESC variable has the value 'AbcdEF01'.

now i'm sending the map.

The map will show the field as 'AbcdEF01'.

now i'm resending the map without modifying the value in field WS-DESC.

Now the map is displayed with 'ABCDEF01'

Note that the value is shifted to upper case.

Can anyone help to avoid this case conversion. I want to have the same value to be displayed at anytime on the map.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8697
Location: Dubuque, Iowa, USA

PostPosted: Thu May 19, 2011 4:36 pm
Reply with quote

From the CICS Application Programming Guide:
Quote:
6.5.5.2 Upper case translation


CICS converts lower case input characters to upper case automatically under some circumstances. The definition of the terminal and the transaction together determine whether translation occurs. See the UCTRAN option of the PROFILE and the TYPETERM definitions in CICS Resource Definition Guide for how these specifications interact.

You can suppress this translation by using the ASIS option on your RECEIVE MAP command, except on the first RECEIVE in a task initiated by terminal input. (The first RECEIVE may be either a RECEIVE MAP (without FROM) or a terminal control RECEIVE.) CICS has already read and translated this input, and it is too late to suppress translation. (Its arrival caused the task to be invoked, as explained in "How tasks are started" in topic 3.1.2.) Consequently, ASIS is ignored entirely in pseudoconversational transaction sequences, where at most one RECEIVE MAP (without FROM) occurs per task, by definition. For the same reason, you cannot use ASIS with the FROM option (see "Formatting other input" in topic 6.5.12).
You could try the ASIS option but if it doesn't work, since the terminal AND the transaction determine whether or not translation occurs, you will have to consult your site support group to work with the CICS support group (or person) to ensure everything is set up correctly. If ASIS does not do it, there is nothing you, by yourself, can do to fix this.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CICS

 


Similar Topics
Topic Forum Replies
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts Join 2 files according to one key field. JCL & VSAM 3
No new posts How to move the first field of each r... DFSORT/ICETOOL 5
No new posts S0C7 - Field getting overlayed COBOL Programming 2
Search our Forums:

Back to Top