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 |
Is length = 0 sufficient to ascertain that the field has been modified?
Into what fields will the date and time values be moved after execution of the above command?
What is the difference between physical map and symbolic map?
What is the command that is used to delay the processing of a task for a specified time interval
How is the storage determined in the symbolic map, if you have multiple maps?
Hi Folks, In the Map, one field is having attribute FSET. I want to FSET OFF of that field through program. Can any body let me know the process? Thanks Praveen
Define floating maps with illustration?
What will happen if the TDQ that you want to delete is not in the DCT?
Can you simply check if length = 0 for checking if a field was modified?
What is the primary objective of CICS ?
What are extra partition & intra partition TDQs?
what is the difference between task and transaction in cics?