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

To receive mixed case character using CICS maps


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

New User


Joined: 19 Aug 2008
Posts: 15
Location: Cochin

PostPosted: Fri Nov 25, 2011 1:56 pm
Reply with quote

Hi,

How to receive Mixed case characters( both lower case and upper case ) using CICS maps. Currently, i am receiving the characters as UPPER CASE by default. I have used the below command:

EXEC CICS
RECEIVE MAP ('MSMC17')
TERMINAL ASIS
END-EXEC.

Could you please help me to sort this?
Regards,
Annu
Back to top
View user's profile Send private message
shibub

New User


Joined: 16 Oct 2009
Posts: 13
Location: Bangalore

PostPosted: Fri Nov 25, 2011 4:18 pm
Reply with quote

A Google search gave me the below links.

http://ibmmainframes.com/post-54827.html
http://www.cicsworld.com/node/2327
http://softwaremiracles.com/walker/tipsandtools/Tamaris/CICS/mixed-case.html


-Shibu-
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


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

PostPosted: Fri Nov 25, 2011 5:50 pm
Reply with quote

Quote:
Could you please help me to sort this?
Sure, and it is easy. TALK TO YOUR CICS SUPPORT GROUP! Depending upon how the CICS parameters were set up, it may not even be possible for you to receive mixed-case characters with your map. In all cases, however, unless you talk to the people AT YOUR SITE that are responsible for setting up the CICS region, you cannot know for sure. Experimentation and use of CEMT can tell you a lot, though.
Back to top
View user's profile Send private message
Mickeydusaor

Active User


Joined: 24 May 2006
Posts: 258
Location: Salem, Oregon

PostPosted: Tue Nov 29, 2011 12:52 am
Reply with quote

Code:

05 WS-UCTRANS                 PIC 9(08) BINARY VALUE 0.

PERFORM 9600-CHANGE-CASE-SETTINGS


*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*                CHANGE TERMINAL TO MIXED CASE                *
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
 9600-CHANGE-CASE-SETTINGS.

     EXEC CICS INQUIRE
          TERMINAL (EIBTRMID)
          UCTRANST (WS-UCTRANS)
          RESP     (WS-CICS-RESPONSE)
          END-EXEC

     IF WS-UCTRANS = DFHVALUE (UCTRAN)
       MOVE DFHVALUE (TRANIDONLY) TO WS-UCTRANS
     ELSE
       MOVE DFHVALUE (UCTRAN)     TO WS-UCTRANS
     END-IF

     EXEC CICS SET
          TERMINAL (EIBTRMID)
          UCTRANST (WS-UCTRANS)
          RESP     (WS-CICS-RESPONSE)
          END-EXEC
     .
/
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 Using API Gateway from CICS program CICS 0
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts Calling an Open C library function in... CICS 1
No new posts How to 'Ping' a CICS region in JCL CICS 2
No new posts Parallelization in CICS to reduce res... CICS 4
Search our Forums:

Back to Top