SET FILE CLOSED command
Closes the specified file. In Smalltalk, the parameters of the SET FILE CLOSED command are contained in two classes: CICSSetfileclosed and CICSSetfileclosedResult. 
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 CICSSetfileclosed
 
|  |  |  |  |  | 
| FILE(name)  | file:  | Input  | Fixed(8)  |   | 
Parameters returned by CICS in CICSSetfileclosedResult
 
|  |  |  |  |  | 
| RESP  | resp  | Output  | Fixed(2)  | Inherited from CICSResult.  | 
| RESP2  | resp2  | Output  | Fixed(2)  | Inherited from CICSResult.  | 
Example
Closes the file named FILEA. 
result := CICS setfileclosed file: 'FILEA'; exec.
Last modified date: 07/09/2019