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 |
What is the difference between getting the system time with EIBTIME and ASKTIME command?
the dfhcommara is used to pass information from one application to another. What are some other ways that this function can be accomplished?
What is a mapset?
Which is the control table where you specify all the transaction that are to be started by CICS after CICS
When you do a START, what will the value of EIBCALEN?
Can a program change protected field ?
Why is GETMAIN command needed?? Will program not work if we do not give GETMAIN?
How do you delete Item 3 in a five-item TSQ?
What is the primary objective of CICS ?
How would you release control of the record in a READ for UPDATE?
How do you dynamically set the CURSOR position to a specific field?
What is the difference between LINK and XCTL ?