Mention the option used in the CICS READ command to gain
accessibility directly to the file I/O area.
Answer Posted / 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 View All Answers
Specify cics transaction initiation process?
Whenever a cics program goes through a compilation process, there is always some extra code that is added to the program. Where exactly does this new piece of code go to and what is it termed as ?
Can you explain dfheiblk?
hi,what is the module? how many modules in mainframe based banking projects
Explain the difference between cics program control table (pct) and cics processing program table (ppt)?
How many ways are there for initiating a transaction?
when a task suspends all the handle conditions via the push command, how does the task reactivate all the handle conditions?
Explain how do you establish a starting position in a browse operation?
Define the term function request shipping?
which cics command must be issued by the application program in order to gain access to the common work area (cwa)?
What is journal recovery?
Define TCT.
Explain the difference between a physical bms mapset and a logical bms mapset?
What is the pic clause for the any bll cell type of data fields?
Can you define attribute byte?