ISSUE ERROR command
Allows an application to inform a partner in a connected APPC system that some program-detected error has occurred. In Smalltalk, the parameters of the ISSUE ERROR command are contained in two classes: CICSAppcissueerror and CICSAppcissueerrorResult.
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 CICSAppcissueerror
| | | | |
CONVID(name) | convid: | Input | Fixed(4) | |
Parameters returned by CICS in CICSAppcissueerrorResult
| | | | |
RESP | resp | Output | Fixed(2) | Inherited from CICSResult. |
RESP2 | resp2 | Output | Fixed(2) | Inherited from CICSResult. |
STATE(cvda) | state | Output | Binary 32 | |
Example
Informs conversation CON1 that an error has occurred.
| result |
result := CICS appcissueerror
convid: 'CON1';
exec.
Last modified date: 07/09/2019