ISSUE SIGNAL command
In a transaction in receive mode, signals the sending transaction on an APPC mapped conversation that a mode change is needed. In Smalltalk, the parameters of the ISSUE SIGNAL command are contained in two classes: CICSAppcissuesignal and CICSAppcissuesignalResult. 
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 CICSAppcissuesignal
 
|  |  |  |  |  | 
| CONVID(name)  | convid:  | Input  | Fixed(4)  |   | 
Parameters returned by CICS in CICSAppcissuesignalResult
 
|  |  |  |  |  | 
| RESP  | resp  | Output  | Fixed(2)  | Inherited from CICSResult.  | 
| RESP2  | resp2  | Output  | Fixed(2)  | Inherited from CICSResult.  | 
| STATE(cvda)  | state  | Output  | Binary 32  |   | 
Example
Signals conversation CON1 that a mode change is needed. 
| result |
 
result := CICS appcissuesignal
               convid: 'CON1';
               exec.
Last modified date: 07/09/2019