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



Mention the option used in the CICS READ command to gain accessibility directly to the file I/O ar..

Answer / rijith.k

SET ADDRESS is the option.. correct me if i am wrong

Is This Answer Correct ?    6 Yes 0 No

Mention the option used in the CICS READ command to gain accessibility directly to the file I/O ar..

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

Post New Answer

More CICS Interview Questions

What is the difference between a physical BMS mapset and a logical BMS mapset?

3 Answers   IBM,


What is the EIB (execute interface block)?

2 Answers   IBM,


What is the difference between the NOHANDLE option and the IGNORE condition?

3 Answers  


Explain the significance of rdo?

0 Answers  


What are the various types of accesses that can be allowed by the SERVREQ option of the DFHFCT?

1 Answers  






Why must all CICS programs have a Linkage Section ?

4 Answers  


is it possible to create TDQ's and TSQ's dynamically,How

1 Answers  


Can a program change protected field ?

2 Answers   IBM,


What is commarea (communications area)?

0 Answers  


What is journal recovery?

0 Answers  


How do you use altindxs in batch, cics programs?

0 Answers  


how do you fire a batch job from a cics txn ?

0 Answers   IBM,


Categories