CICS Manual do Usuário - READQ TS
Reads data from a temporary storage queue.
Sintaxe:
Descrição:
READQ TS retrieves data from a temporary storage queue that is in either main or auxiliary storage. In the latter case, the queue can reside on a remote system.
The following example shows how to read a specific record from a temporary storage queue into a data area that is specified in the request:
EXEC CICS READQ TS QUEUE(UNIQNAME) INTO(DATA) LENGTH(LDATA) ITEM(IDATA) END-EXEC
The following example shows how to read the next record from a temporary storage queue into a data area that is provided by CICS; the pointer reference that is specified by the SET option is set to the address of the storage area that is reserved for the data record.
EXEC CICS READQ TS QUEUE(DESCRQ) SET(PREF) LENGTH(LENG) END-EXEC
Opções:
Condições:
Informações relacionadas: