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 |
How do you handle errors in CICS pgms ?
What are different ways of initiating transaction in CICS ?
What does the following transactions do?
What do you mean by the term fct?
What is the difference between pct and fct?
what are the differences between temporary storage queue (tsq) and transient data quene (tdq)?
what are the differences between and exec cics xctl and an exec cics link command?
what is an MDT in cics
What is the command that is used to add a new record to the file?
What is interval control?
Which of the following commands, when issued by 2 different programs running at the same time, will prevent simultaneous use of resource 'SINGLE'?
Explain the difference between pseudo-conversational and conversational?