ENDBR command
Ends a browse on a file or CICS-maintained data table on a local or a remote system. In Smalltalk, the parameters of the ENDBR command are contained in two classes: CICSEndbr and CICSEndbrResult.
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 CICSEndbr
| | | | |
FILE(filename) | file: | Input | Fixed(8) | |
REQID(data-value) | reqid: | Input | Binary 16 | |
SYSID(systemname) | sysid: | Input | Fixed(4) | Remote systems only. |
Parameters returned by CICS in CICSEndbrResult
| | | | |
RESP | resp | Output | Fixed(2) | Inherited from CICSResult. |
RESP2 | resp2 | Output | Fixed(2) | Inherited from CICSResult. |
Example
Ends the browse for a KSDS file.
result := CICS endbr
file: 'KSDSF1';
exec.
Last modified date: 05/12/2020