plz give the syntax for receive map and receive text cmds
in cics
Answer Posted / krishna
receive (terminal): retrieve input data from a terminal
EXEC CICS RECEIVE INTO(data-area)
LENGTH(ws-len)
END-EXEC.
receive map: receive data from a terminal via BMS
EXEC CICS RECEIVE MAP(name)
MAPSET(name)
INTO(data-area)
LENGTH(ws-len)
END-EXEC.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is meant by an AICA ABEND?
Why do we need integrated cics translator?
when an apllication is invoked via the exec cics start command with the from option, how does the application gain access to the common area?
Can you define aica abend?
How do you use altindxs in batch, cics programs?
What is the term bms in cics?
What does the 'cemt:cics' transactions do?
How vsam files are read in cics pgms?
How to handle exceptional conditions in cics?
What is the cics command level?
What are the main uses of the transaction in the cics?
Receive consists of buffer option in it. What is the significance of this option?
How can you access qsam (seq) files from cics?
What is the pic clause for the any bll cell type of data fields?
Code the related portions of cics/cobol-i programs to gain addressability to twa area assigned to a particular task. Assme that the size of twa area is 300bytes. What are the advantages if cobol-ii is used in the place of cobol?