EXTRACT PROCESS command
Allows an application to retrieve APPC conversation-related data, specified to CICS when the application is attached. In Smalltalk, the parameters of the EXTRACT PROCESS command are contained in two classes: CICSAppcextractprocess and CICSAppcextractprocessResult. 
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 CICSAppcextractprocess
 
|  |  |  |  |  | 
| CONVID(name)  | convid:  | Input  | Fixed(4)  |   | 
Parameters returned by CICS in CICSAppcextractprocessResult
 
|  |  |  |  |  | 
| PROCLENGTH(data-area)  | proclength  | Output  | Binary 16  |   | 
| PROCNAME(data-area)  | procname  | Output  | Fixed(64)  |   | 
| RESP  | resp  | Output  | Fixed(2)  | Inherited from CICSResult.  | 
| RESP2  | resp2  | Output  | Fixed(2)  | Inherited from CICSResult.  | 
| SYNCLEVEL(data-area)  | synclevel  | Output  | Binary 16  |   | 
Example
Retrieves APPC conversation-related data from CON1 and prints the data to the Transcript. 
| result |
 
result := CICS appcextractprocess
               convid: 'CON1';
               exec.
 
CICSTTY cr;
               show: 'Procname is: ', (result procname printString),
                     ' ProcLength is: ', (result proclength printString),
                     ' SyncLevel is: ', (result synclevel printString).
Last modified date: 07/09/2019