plz give the syntax for receive map and receive text cmds
in cics
Answer / 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 |
can anyone tell me about paginglogic in CICS,Please?
What is the cics command that is used to access current date and time?
How do you make your BMS maps case sensitive?
Can you use occurs in bms map?
Are sequential files supported by CICS?
Let us say you have a collection of multiple maps in cics. So if you are asked to determine the exact storage space that is available in a symbolicmap, then how will you compute it?
Name and explain some common CICS abend codes?
What is the option specified in the read operation to gain multiple concurrent operations on the same dataset?
A mapset consists of three maps and 10 fields on each map . How many of the following will be needed ?
A CICS program ABENDS with an ASRA ABEND code. What is its meaning?
How do u know if a start command intiated a transaction or a terminal intiated a transaction
What is the difference between the INTO and the SET option in the EXEC CICS RECEIVE MAP command?