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 |
what is an MDT in cics
What are the steps you go through to a create a BMS executable?
Explain page up and page down logic along with coding logic in cics?
mention the option used in the cics read command to gain accessibility directly to the file i/o area. (Assume cobol-ii).?
How is Telon(CA-Telon) used to build map?
What is the command used to send a map to a terminal?
Explain the purpose of the program list table?
Can you define commarea?
What is frset?
How do you define Task Work Area?
CICS provides an interface through which the all the DL/I services can be used under CICS(True or False).
Explain how do you access the records randomly in tsq?