Server Guide

Defined class methods

cr
Forces a carriage return on the System Transcript window or on the CICS terminal.

flush
Displays the string immediately. If you do not use flush, your output will appear either when the program ends or when the output screen fills. For example, to print a message to the CICS terminal immediately, while the program is running, enter:
  CICSTTY show: 'Send it now.'; flush.

nextPut:
Adds a character to the receiver on the System Transcript window or on the CICS terminal.

nextPutAll:
Adds a string to the receiver on the System Transcript window or on the CICS terminal.

show:
Displays the string on the System Transcript window or on the CICS terminal.

space
Adds one space to the receiver on the System Transcript window or on the CICS terminal.

space:
Adds a specified number of spaces to the receiver on the System Transcript window or on the CICS terminal.

tab
Adds one tab to the receiver on the System Transcript window or on the CICS terminal.

tab:
Adds a specified number of tabs to the receiver on the System Transcript window or on the CICS terminal.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]