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 make your BMS maps case sensitive?
What is a deadlock?
How many ways are there for initiating a transaction?
What is Journal Recovery and Dynamic Transaction Backout?
Give the definition of COMMAREA ?
How to implement function keys in cics ...Interview ask me there is requirement to include two function key in the program F1 and F2 Keys...when F1 key is press record should be inserted into database after reading the input file and when F2 is press ,record should be updated in databased...explain about the entire process including testing also..?please expain in step by step ?
1 Answers HeadStrong, Polaris,
What is the size of commarea
what are the differences between and exec cics xctl and exec cics start command?
In case if the user inputs the characters which turn out to be uppercase, then what is the procedure to close that condition?
Explain the difference between getting the system time with eibtime and asktime command?
The DFHCOMMAREA is used to pass information from one application to another. What are some other ways
What is the command which will delete a program LOADed into the main storage using LOAD command?