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 the NOHANDLE option and the IGNORE condition?

3 Answers  


why we code ACCUM parameter in cics send time

1 Answers  


Db2 what is the difference between a package and a plan. How does one bind 2 versions of a cics transaction with the same module name in two different cicsregions that share the same db2 subsystem?

0 Answers  


WHAT ARE THE VERBS IN CICS EQUAL TO ACCEPT,DISPLAY,VALUE?

2 Answers  


What is the CICS Command that is used for reading a record from the TDQ?

1 Answers   IBM,






If TDQs are selfdestructive then why they are used? AND Why TSQs are preferred over TDQs?

5 Answers   IBM,


Can you define bms?

0 Answers  


What is cics load command?

0 Answers  


Define TCT.

0 Answers  


What does the following transactions do?

1 Answers  


What is the CICS command that is used to receive the un- formatted data from the terminal?

2 Answers  


What is the primary function of the Processing Program Table (PPT)?

5 Answers   IBM,


Categories