CL Programming

Retrieving Network Attributes

Using the Retrieve Network Attributes (RTVNETA) command, you can retrieve the network attributes of the system. These attributes can be changed using the Change Network Attributes (CHGNETA) command and displayed using the Display Network Attributes (DSPNETA) command. See the Systems Management category of information in the iSeries Information Center for more information about network attributes.

RTVNETA Example

In the following example, the default network output queue and the library that contains it are retrieved, changed to QGPL/QPRINT, and later changed back to the previous value.

PGM
DCL  VAR(&OUTQNAME) TYPE(*CHAR) LEN(10)
DCL  VAR(&OUTQLIB) TYPE(*CHAR) LEN(10)
RTVNETA  OUTQ(&OUTQNAME) OUTQLIB(&OUTQLIB)
CHGNETA  OUTQ(QGPL/QPRINT)
.
.
.
CHGNETA  OUTQ(&OUTQLIB/&OUTQNAME)
ENDPGM


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