ISSUE CONFIRMATION command
Issues a positive response to a SEND CONFIRM command on an APPC mapped conversation. In Smalltalk, the parameters of the ISSUE CONFIRMATION command are contained in two classes: CICSAppcissueconfirmation and CICSAppcissueconfirmationResult.
See CICS Application Programming Reference for the syntax of the command and a description of the parameters.
Defined instance methods
Parameters supplied to CICS in CICSAppcissueconfirmation
| | | | |
CONVID(name) | convid: | Input | Fixed(4) | |
Parameters returned by CICS in CICSAppcissueconfirmationResult
| | | | |
RESP | resp | Output | Fixed(2) | Inherited from CICSResult. |
RESP2 | resp2 | Output | Fixed(2) | Inherited from CICSResult. |
STATE(cvda) | state | Output | Binary 32 | |
Example
Confirms the state of conversation CON1.
| result stateResult |
result := CICS appcissueconfirmation
convid: 'CON1';
exec.
stateResult := result state.
Last modified date: 07/09/2019