SET FILE OPEN command
Opens the specified file. In Smalltalk, the parameters of the SET FILE OPEN command are contained in two classes: CICSSetfileopen and CICSSetfileopenResult. 
See CICS Application Programming Reference for the syntax of the command and a description of its parameters. 
Defined instance methods
Parameters supplied to CICS in CICSSetfileopen
 
|  |  |  |  |  | 
| FILE(name)  | file:  | Input  | Fixed(8)  |   | 
Parameters returned by CICS in CICSSetfileopenResult
 
|  |  |  |  |  | 
| RESP  | resp  | Output  | Fixed(2)  | Inherited from CICSResult.  | 
| RESP2  | resp2  | Output  | Fixed(2)  | Inherited from CICSResult.  | 
Example
Opens the file named FILEA. 
result := CICS setfileopen file: 'FILEA'; exec.
Last modified date: 07/09/2019