Server Guide : Appendix B. CICS Smalltalk classes : SET FILE DISABLED command
SET FILE DISABLED command
Disables the specified file. In Smalltalk, the parameters of the SET FILE DISABLED command are contained in two classes: CICSSetfiledisabled and CICSSetfiledisabledResult.
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 CICSSetfiledisabled
 
Parameter
Instance method
Mode
Type
Notes/exceptions
FILE(name)
file:
Input
Fixed(8)
 
Parameters returned by CICS in CICSSetfiledisabledResult
 
Parameter
Instance method
Mode
Type
Notes/exceptions
RESP
resp
Output
Fixed(2)
Inherited from CICSResult.
RESP2
resp2
Output
Fixed(2)
Inherited from CICSResult.
Example
Disables the file named FILEA.
result := CICS setfiledisabled file: 'FILEA'; exec.
Last modified date: 07/09/2019