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 DFHAID? what is its use?
What is ATI? What kind of TDQ can be used?
The first step in the development of an application system is the Requirement Analysis(True or False).
Can you define mapset?
I just want to ask why does the variable I passed in a dclgen of sql that has a data type of varchar which has a maximum length is 250 is truncated,, Here is the code.. DCLGEN of rsauud01 table 01 dataarea 43 data-area-len pic s9(4). 43 data-area-text pic x(250). MYVARIABLE. 01 DATAAREA1 pic x(250). move 250 to data-area-len of dataarea of rsauud01 MOVE DATA-AREA1 TO data-area-text of dataarea of rsauud01 --- but it is always trucated everytime I insert it in the table by the way it is a cobol-cics program
What is the difference between a RETURN with TRANSID and XCTL ?For example prog. A is issuing REUTRN with TRANSID to prog B. Prog A. is issuing XCTL to prog B?
Transaction TRN1 has associated program PROG1 (pseudo- conversational). Under certain condition, PROG1 transfer control (XCTL) to PROG2, which should have his own pseudo- conversation with the terminal. When PROG2 send the map and execute a RETURN TRANSID('TRN1'), after receiving the control from the terminal, which program will be initiated?
Name some common CICS service programs and explain their usage?
pf7 and pf8 logic. first wnen i press pf7 first five records has to be displayed .second time when i press pf7 next five records to be displayed. what was the logic. give clear explination.
What is the difference between a physical BMS mapset and a logical BMS mapset?
Explain the function of the terminal control table?
what are the differences between and exec cics xctl and exec cics start command?