Mention the option used in the CICS READ command to gain
accessibility directly to the file I/O area.
Answers were Sorted based on User's Feedback
Answer / rijith.k
SET ADDRESS is the option.. correct me if i am wrong
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / nabarun
To gain control directly to the file I/O area we can
declare declare an area in the linkage section as bellow:
eg:
....
LINKAGE SECTION
01 LK-FILE-IOAREA.
02 LK-REC.
03 LK-REC-NAME PIC X(10).
03 LK-REC-ID PIC 9(3).
........
........
PROCEDURE DIVISION.
......
.......
EXEC CICS READ
DATASET('DATASET.TOBE.READ')
SET(ADDRESS OF LK-FILE-IOAREA)
RIDFLD(KEYS)
LENGTH(LEN)
END-EXEC.
......
......
| Is This Answer Correct ? | 1 Yes | 0 No |
When there are 2 records with the same key specified in a DELETE operation what will happen?
In case you modify the attribute field of map do you need to recompile the map?
Explain cedf transaction commands?
Where are transient data sets defined to CICS?
How to build up LU 6.2 communication?"
how do you execute a background cics txn ?
Specify CICS transaction initiation process. (From the perspective of CICS control programs and control tables.)
What are attribute bytes and how and why are they modified?
What are the two types of transient data queues?
What is ASRAABEND in CICS?
Suppose you are adding a new field in a map, and that field should also be added as a new column in DB2 table. How do you implement this? what is the impact analysis u will do?
Explain how do you terminate an already issued delay command?