What CICS command would you use to read a VSAM KSDS
sequentially in ascending order?
Answers were Sorted based on User's Feedback
Answer / chudar
exec cics Startbr
dataset
ridfld()
getq
end exec
exec cics read next
dataset(name)
into(area)
length()
ridfld()
getq
end exec
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / lenin
The answer given by chudar is correct, but the GTEQ
parameter not required in READ NEXT statement.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / rameshkumar.hk.
exec cics read
dataset(name)
into(area)
length()
ridfld()
getq
end exec
In connection with first answer above.
Will use only read option .startbr is used when u want to
read data dynamically.
| Is This Answer Correct ? | 2 Yes | 1 No |
Name some common CICS service programs and explain their usage?
What do you mean by CEMT?
Specify CICS transaction initiation process. (From the perspective of CICS control programs and control tables.)
If you use the OPTIMIZE compiler option the size of the program can be reduced by 5 to 10%(True or False)
how to make the entire screen protected. i.e., for example when we design a delete screen before deleting the details we need to popup a screen saying do u wish to delete(Y/N). When this screen appears i want to make the previous screen fields as protected.Please help me with the anser. i need the entire screen to be protected. Thanks in advance
What is the primary function of the Processing Program Table (PPT)?
Receive consists of buffer option in it. What is the significance of this option?
Explain what is the massinsert option?
How is the storage determined in the symbolic map, if you have multiple maps?
is it possible to create TDQ's and TSQ's dynamically,How
How many ways to share information between different CICS programs?
Do you require a table entry for a TSQ?