What are the CICS commands associated with temporary
storage queue processing?
Answers were Sorted based on User's Feedback
Answer / pavan
cics commands in tsq operations:
exec cics exec cics exec cics
writeq ts readq ts deleteq ts
queue(queue id) queue(queue id) queue(queue id)
from(ws-rec) into(ws-rec) end-exec.
item(itemno) item(itemno)
end-exec. end exec.
for rewrite same like write but we are giving the item no
manually.
item no its a working-storage section vriable.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / naren
EXEC CICS
ENQ RESOURCE('TSQ NAME')
END-EXEC.
EXEC CICS
DNQ RESOURCE('TSQ NAME')
END-EXEC
THE ENQ COMMAND IS USED TO HOLD THE QUEUE, SO THAT IT CAN
BE USED BY ONLY ONE TASK....NO SHARING WILL BE ALLOWED TO
OTHER TASKS...
THE DNQ COMMAND RELEASES THE HOLD...
| Is This Answer Correct ? | 5 Yes | 4 No |
what is psuedo conversation?
What are the commands used to gain exclusive control over a resource (for Ex a Temporary storage queue.)?
what is an MDT in cics
What is the significance of RDO?
how can we establish a link between two maps using a cobol application program....lets say how can u use 'back' in a map ..to come back on previous .
What is a deadlock?
Can a CICS code be a part of a copybook? If so, then what are the outcomes after compilation?
which cics command must be issued by the application program in order to gain access to the common work area (cwa)?
What will be the length of the eibcalen ,if the transaction is used to cics first time?
What does the BUFFER option in RECEIVE mean ?
Can you define multiple maps in a BMS mapset?
What is the meaning of the enq command?