SET TERMINAL
| COBOL |
Java |
| EXEC CICS SET TERMINAL |
ibmCics.setTerminal |
Syntax
ibmCics.setTerminal(new SetTerminalOptions()
.terminal(<Terminal>)
[.servStatus(<ServStatus>)]
[.acqStatus(<AcqStatus>)]
[.noUppercase(true)]
[.uppercase(true)]
[.noHandle(true)]
);
Parameters
- <Terminal>
- The terminal name.
- <ServStatus>
- This option isn't used in AMT.
- <AcqStatus>
- This option isn't used in AMT.
- <NoUppercase>
- If true, sets transaction uppercase translation property to false.
- <Uppercase>
- If true, sets transaction uppercase translation property to true.
- noHandle
- Optional Boolean. If set to true, exceptions created by this command will be ignored.
Examples
| COBOL |
Java |
EXEC CICS
SET TERMINAL(WS-TERMINAL)
UCTRAN()
NOHANDLE
END-EXEC.
|
ibmCics.setTerminal(new SetTerminalOptions()
.terminal(locDef.ws_Terminal.getStrValue())
.uppercase(true)
.noHandle(true)
);
|