This article explains how the SARFSS task collects data from the JES2 output queue for archival into the OM View database and how to configure the associated JES2 Work Selection criteria.
OM View
OM Deliver
z/OS
The SARFSS task does not "send" output to a printer; instead, it acts as a collector of input data from the JES2 output queue for archival into the OM View database. This collection is controlled by IBM Functional Subsystem (FSS) parameters defined in the JES2 initialization.
To configure the routing and collection criteria:
PRINTER(####) parameters in JES2 to specify default values.WS (Work Selection) parameter to define criteria for archival. Available criteria include:Examples:
WS=(PRM),PRMODE=LINE (Selects datasets with mode LINE).WS=(Q),CLASS=S (Selects datasets with SYSOUT class S).Example of a FSS printer definition in JES2 parms:
FSS(SARFSS##) PROC=SARFSS##,AUTOSTOP=YES
PRT## MODE=FSS,FSS=SARFSS##,
CLASS=9,FORM=MSPS,
START=YES,WS=(Q,F/W,PRM,W,R,LIM,UCS,FCB)
where
/) for selection.Example of a FSS procedure definition in procedure library:
SARFSS## PROC
$$$$$$@ EXEC PGM=SARFSS,TIME=NOLIMIT,REGION=0M
SARINDEX DD DISP=SHR,DSN=<view database index>
PRT## DD DISP=SHR,DSN=SYSDEV.VIEW.INDEX(PRT##)
SARLOG DD SYSOUT=X
SYSUDUMP DD SYSOUT=*
PEND
$$$$$$@ EXEC SARFSS##
where