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 |
After execute the map, What will happen ? Give breif Description
What is the difference between getting the system time with EIBTIME and ASKTIME command?
What is a deadlock?
What is the function of the LOAD command?
What is the effect of including the TRANSID in the EXEC CICS RETURN command?
There is map and length of field need to modified, let take cust id=2 is previous of 2 byte and now it has to be 5 byte ? how to modified the cics code ?what are change need to done ? where where u will do change ?
How to make protected field in BMS invisible through application program?
Kindly specify the pic clause for the any bll cell type of data fields?
Explain the difference between tsq and tdq
The read of a record from an Intrapartition TDQ is not destructive(True or False).
Explain the difference between a physical bms mapset and a logical bms mapset?
Which is the CICS control program which governs the flow of control among the CICS application