Previous Topic: How Tasks Work: Post-SpoolNext Topic: How to Use Network Input with a Shared Database


SYSOUT Application Interface

With the SYSOUT Application Interface, network input data sets are processed as follows:

Example 1

Assume that CA Deliver runs at node N1 and that SYSOUT class E has been reserved and defined to CA Deliver for network input.

To have a report routed to and printed by CA Deliver, it must be created with the following attributes:

DEST=N1
SYSOUT=E

From another CPU, for non-shared JES spool, the JCL is as follows:

//STEP1    EXEC PGM=IEBGENER
//SYSUT1   DD   DSN=JCL.DATA(LISTING),DISP=SHR
//SYSUT2   DD   SYSOUT=E,DEST=N1
//SYSIN    DD   DUMMY
//SYSPRINT DD SYSOUT=A

In this example, the initialization parameter NETCLSL must be set to NETCLSL=E/A, where the value A is the class to which SYSOUT data is to be written if the extracted job does not match the definition in the database.

Example 2

Assume that CA Deliver runs at node N1 and that destination R100 has been reserved and defined to CA Deliver for network input. To have a report routed to and printed by CA Deliver, it must be created with the following attribute:

DEST=N1R100

From another CPU, for non-shared JES spool, the JCL is:

//STEP1    EXEC PGM=IEBGENER
//SYSUT1   DD   DSN=JCL.DATA(LISTING),DISP=SHR
//SYSUT2   DD   SYSOUT=B,DEST=N1R100
//SYSIN    DD   DUMMY
//SYSPRINT DD SYSOUT=A

In this example, the initialization parameter NETDEST must be set to NETDEST=R100.