What are the CICS commands associated with temporary
storage queue processing?

Answers were Sorted based on User's Feedback



What are the CICS commands associated with temporary storage queue processing?..

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

What are the CICS commands associated with temporary storage queue processing?..

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

Post New Answer

More CICS Interview Questions

What is DFHAID? what is its use?

7 Answers  


What is ATI? What kind of TDQ can be used?

3 Answers   IBM,


The first step in the development of an application system is the Requirement Analysis(True or False).

1 Answers  


Can you define mapset?

0 Answers  


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

2 Answers  






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?

3 Answers  


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?

3 Answers  


Name some common CICS service programs and explain their usage?

1 Answers   IBM,


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.

8 Answers   HSBC, Thomson,


What is the difference between a physical BMS mapset and a logical BMS mapset?

3 Answers   IBM,


Explain the function of the terminal control table?

0 Answers  


what are the differences between and exec cics xctl and exec cics start command?

0 Answers   IBM,


Categories