ENDBR
| COBOL |
Java |
| EXEC CICS ENDBR |
ibmCics.endBr |
Syntax
ibmCics.endBr (<FileName>[, <noHandle>]);
Parameters
- <FileName>
- The name of the file being browsed.
- <noHandle>
- Optional boolean. If set to true, exceptions created by this command will be ignored.
Examples
| COBOL |
Java |
EXEC CICS ENDBR
FILE('CUSTFILE')
END-EXEC.
|
ibmCics.endBr("CUSTFILE");
|