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
What is the difference between SEND MAP DATAONLY and SEND MAP MAPONLY ?
What are the classifications of the cics program?
What is the common work area?
Explain the difference between cics program control table (pct) and cics processing program table (ppt)?
Define task work area?
Kindly specify the pic clause for the hhmmss type of data fields?
Define ceci?
Why do we need integrated cics translator?
Can you explain exec cics handle condition command?
which cics service transaction is used to gain accessibility to cics control tables? Mention the one that has the highest priority.?
Explain the difference between a package and a plan.
Mention the option used in a cics command to retrieve the response code after execution of the command?
What are the types of processes to create a map in cics?
What is the tcp in the cisc?
What is the pcp in the cics?