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 |
Can you use OCCURS in a BMS map? If you do, what are the issues related with its use?
What is EIB. How it can be used?
What happens when a CICS command contains the NOHANDLE option?
What are the classifications of the cics program?
If you use the OPTIMIZE compiler option the size of the program can be reduced by 5 to 10%(True or False)
What is MDT? What are FSET, FRSET ?
What is the meaning of the ENQ and DEQ commands?
How would you resolve an ASRA abend?
What CICS command would you use to read a VSAM KSDS sequentially in ascending order?
How to get the cursor position when we receive a map?
What happens if i move +1 (instead of -1) to field+L in CICS? Will it show compile time error?
For protecting a transaction using the transaction security function, the two things that must be done are?