gtpg2m4iGeneral Macros

TPPCC CONFIRM

Use the TPPCC general macro with the CONFIRM verb specified to send a confirmation request to the remote transaction program and wait for the confirmation reply. This allows the 2 programs to synchronize their processing.

Format




label
A symbolic name can be assigned to the macro statement.

CONFIRM
Directs the TPPCC macro to perform the CONFIRM verb function.

RESID
Specifies the symbolic name of a field or a register that points to a field. This is a 4-byte field in which the resource ID is supplied. This resource ID must be the one assigned on the initial ALLOCATE for this conversation or one that was assigned by an incoming ATTACH.

RCODE
Specifies the symbolic name of a field or a register that points to a field. This is a 6-byte field in which the return code is placed. The return code consists of a 2-byte primary return code followed by a 4-byte secondary return code. The actual values returned are listed in Return Conditions.

RTSRCVD
Specifies the symbolic name of a 1-byte field or a register that contains a value that indicates whether REQUEST_TO_SEND has been received. If a REQUEST_TO_SEND has been received, the value is LU62_RTSND_RCVDYES.

Entry Requirements

Return Conditions

Programming Considerations

Examples

SYMB100   TPPCC CONFIRM,                           X
                RESID=EBW004,                      X
                RCODE=EBW010,                      X
                RTSRCVD=EBW016