AMT Help Files
Home Development Command Translation CICS Commands SET TERMINAL

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)]
);

Parameter(s)

<Terminal>
The terminal name.
<ServStatus>
This option is not used in AMT.
<AcqStatus>
This option is not 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.

Example(s)

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)
);
                

Contents

 Go to top