IN CICS APPLICATION PROGRAM, INSTEAD OF HARDCODING MAP AND
MPASET NAMES WHILE SENDING AND REIEVING ...CAN WE DO LIKE
THIS ???
MOVE MAP AND MAPSET NAMES TO WORKING STORAGE SECTION
VARIABLES AND USE THOSE VARIABLES WHILE SENDING AND
RECIEVING MAP.IF YES, HOW CAN WE MOVE MAP INPUT , OUTPUT
VARIABLES.
IF ANYBODY KNOWS THIS PLEASE POST THE ANSWER
Answer Posted / rogerio coelho
You have more than one map in your program?
That`s not a very good practice, but you can do this:
01 WS-MAP-AREA PIC X(6000).
01 WS-MAP-NAME PIC X(7).
COPY MAP001.
COPY MAO002.
PROCEDURE DIVISON.
<MOVE DATA TO MAP FIELDS>
MOVE MAP001O TO WS-MAP-AREA.
MOVE MAP001 TO WS-MAP-NAME.
EXEC CICS SEND MAP(WS-MAP-NAME)
FROM(WS-MAP-AREA)
END-EXEC.
EXEC CICS RECEIVE(WS-MAPNAME)
INTO(WS-MAP-AREA)
END-EXEC.
MOVE WS-MAP-AREA TO MAP001I.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Explain the difference between link xctl?
Explain how many conditions can you include in a single handle condition command?
Explain the difference between exec cics handle condtion and an exec cics ignore command?
Explain the difference between and exec cics xctl and an exec cics link command?
Name the two types of transient data queues?
Define an aica abend?
Can you define mdt?
What is an mdt (modified data tag)?
What is interval control?
What is the use of mdt (modified data tag)?
Define an asra?
What is the pic clause for the any bll cell type of data fields?
how can you prevent more than one user from accessing the same transient data queue?
If we wish to create bms executable, what are the basic steps that the user has to go through?
Explain how do you access the records randomly in tsq?