z/OS JES2 Initialization and Tuning Reference
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


Sample JES2 initialization data set

z/OS JES2 Initialization and Tuning Reference
SA32-0992-00

The following initialization data set is available in SYS1.SHASSAMP so that you do not have to code the entire data set. However, it is only an example.

Note: To enhance readability, the code and comments have been separated. The JES2 initialization data set does not have column restrictions or dependencies.
/*****PROPRIETARY-STATEMENT*******************************************/ 00000800
/*                                                                   */ 00001600
/*     LICENSED MATERIALS-PROPERTY OF IBM                            */ 00002400
/*     5694-A01 (C) COPYRIGHT IBM CORP 1994, 2005                    */ 00004000
/*                                                                   */ 00005600
/*     STATUS:  HJE7720                                              */ 00006400
/*                                                                   */ 00007200
/*01* EXTERNAL CLASSIFICATION:  NONE                                 */ 00007400
/*01* END OF EXTERNAL CLASSIFICATION:                                */ 00007600
/*                                                                   */ 00007800
/*****END-OF-PROPRIETARY-STATEMENT************************************/ 00008000
/*                                                                   */ 00008800
/*********************************************************************/ 00010000
/*                                                                   */ 00020000
/*       HASIPARM - sample template for coding initialization        */ 00022000
/*                  statements for the JES2 component of MVS.        */ 00024000
/*                                                                   */ 00026000
/*       HASIPARM contains sample templates for the JES2             */ 00028000
/*       initialization parameter statements.  It is part of the set */ 00030000
/*       of HASIxxxx example files which should be tailored,         */ 00032000
/*       renamed, and placed in production libraries as part of the  */ 00034000
/*       installation of the JES2 component of MVS.                  */ 00036000
/*                                                                   */ 00040000
/*       Refer to the JES2 Initialization and Tuning Guide and       */ 00050000
/*       Reference publications for complete descriptions of each    */ 00060000
/*       statement and its parameters, and other information about   */ 00070000
/*       JES2 initialization.                                        */ 00080000
/*                                                                   */ 00100000
/*       WARNING:  This data set will NOT "run" as it is presented   */ 00101000
/*       here.  Minimally, you MUST remove all the ¢¢ and @@         */ 00102000
/*       symbols.  The ¢¢s are used to flag parameters for which     */ 00103000
/*       there either is no JES2 default or that default is based on */ 00104000
/*       other parameter specifications.  The @@s are used to flag   */ 00105000
/*       those parameters whose default values you should carefully  */ 00106000
/*       study to avoid blindly using them without consideration     */ 00107000
/*       of your specific requirements.  For those with terminals    */ 00108000
/*       without the cent sign (? and at sign (@), they are          */ 00108500
/*       hex '4A' and '7C', respectively.                            */ 00109000
/*       Note also that some statements below violate the            */ 00110000
/*       continuation rules to provide additional comments where     */ 00120000
/*       they would not normally be valid.                           */ 00130000
/*                                                                   */ 00139000
/*********************************************************************/ 00148000
/*                                                                   */ 00157000
/* Init Deck Management Considerations                               */ 00166000
/* -----------------------------------                               */ 00175000
/*                                                                   */ 00175200
/* Placement + PDS Member Partitions                                 */ 00175400
/* ---------------------------------                                 */ 00175600
/*                                                                   */ 00175800
/* In order for the JES2 component to be started, a subsystem        */ 00176000
/* cataloged JCL procedure (PROC) is required. The JCL procedure     */ 00176200
/* used for JES2 should point to a file (or files) containing JES2   */ 00176400
/* initialization parameters, such as the HASIPARM file.             */ 00176600
/*                                                                   */ 00176800
/* Historically, IBM has distributed JES2 initialization             */ 00177000
/* parameters in the SYS1.PARMLIB dataset.  The sample JES2          */ 00177200
/* cataloged JCL procedure, HASIPROC, still specifies the            */ 00177400
/* JES2PARM member of SYS1.PARMLIB in its HASPPARM DD.  The          */ 00177600
/* choice of SYS1.PARMLIB or some other dataset should be            */ 00177800
/* made based on the local installation's multi-system dataset       */ 00178000
/* sharing requirements, system programmer management                */ 00178200
/* procedures, performance (e.g. using a dataset that has a          */ 00178400
/* large block size), etc.                                           */ 00178600
/*                                                                   */ 00178800
/* By default, JES2 uses the HASPPARM DD within its PROC to          */ 00179000
/* read initialization parameters.                                   */ 00179200
/*                                                                   */ 00179400
/* To simplify the management of initialization statements, IBM      */ 00179600
/* recommends that most of the members be shared across all          */ 00179800
/* members in the JESplex.                                           */ 00180000
/*                                                                   */ 00180200
/* The DD that points to the JES2 initialization parameters          */ 00180400
/* can point to a concatenation of files.  An installation           */ 00180600
/* may wish to use the HASIPARM sample information, and then         */ 00180800
/* place their final initialization parameters in multiple           */ 00181000
/* files.  This may allow the sharing of a large percentage          */ 00181200
/* of the parameters between multiple JES2 subsystems in the         */ 00181400
/* installation's complex, facilitate management of the              */ 00181600
/* parameters by different groups of programmers, and lessen         */ 00181800
/* the number of files that need to be updated for a new             */ 00182000
/* release of JES2.                                                  */ 00182200
/*                                                                   */ 00182400
/* The JES2 parameters must be read from a dataset(s) that has       */ 00182600
/* a fixed record format (RECFM), such as RECFM=FB, and that         */ 00182800
/* has 80 character records (LRECL=80).  The dataset(s) can be       */ 00183000
/* blocked with a BLKSIZE that is a multiple of 80.                  */ 00183200
/*                                                                   */ 00183400
/* The following example of partitioning the JES2 initialization     */ 00183600
/* statements may be useful in managing the parameters and           */ 00183800
/* maintaining the order dependencies listed below.                  */ 00184000
/*                                                                   */ 00184200
/*    - xxxDEF - Global Definitions (alphabetically or functional)   */ 00184400
/*    - NODE, APPL, CONNECT, NJE LINEs                               */ 00184600
/*    - DESTID                                                       */ 00184800
/*    - Local Devices (RDR, PRT, PUN)                                */ 00185000
/*    - RMT & RJE LINEs                                              */ 00185200
/*    - RJE, NJE Passwords (protect in a separate data set)          */ 00185400
/*    - Parameters unique to each system                             */ 00185600
/*                                                                   */ 00185800
/* Here is a sample JES2 start-up procedure that uses symbolic       */ 00186000
/* parameters so any of the members can be changed through an        */ 00186200
/* operator provided override. (This is probably an extreme          */ 00186400
/* example of breaking up the parameters, and there is nothing       */ 00186600
/* wrong with keeping all the statements in a single member.)        */ 00186800
/*                                                                   */ 00187000
/* //JES2  PROC  MDEF=J2DEF,MNOD=J2NJE,MDST=J2DEST,                  */ 00187200
/* //            MLOC=J2LOCL,MRJE=J2RJE,PASS=J2PASS,                 */ 00187400
/* //            SYSN=          <== Don't Default this member        */ 00187600
/* //*                           -- Specify on S JES2,SYSN=x command */ 00187800
/* //IEFPROC EXEC PGM=HASJES20,...                                   */ 00188000
/* //HASPPARM DD DSN=SYS1.PARMLIB(&MDEF),DISP=SHR Global Definitions */ 00188200
/* //         DD DSN=SYS1.PARMLIB(&MNJE),DISP=SHR NJE                */ 00188400
/* //         DD DSN=SYS1.PARMLIB(&MDST),DISP=SHR Symbolic Dests     */ 00188600
/* //         DD DSN=SYS1.PARMLIB(&MLOC),DISP=SHR Local Devices      */ 00188800
/* //         DD DSN=SYS1.PARMLIB(&MRJE),DISP=SHR RJE                */ 00189000
/* //         DD DSN=SYSZ.PARMLIB(&PASS),DISP=SHR In a protected lib */ 00189200
/* //         DD DSN=SYS1.PARMLIB(J2SYS&SYSN.),DISP=SHR Unique       */ 00189400
/* //  etc.                                                          */ 00189600
/*                                                                   */ 00189800
/* Common Parameters for all JESplex Members                         */ 00190000
/* -----------------------------------------                         */ 00190200
/*                                                                   */ 00190400
/* The following statements should have identical parameter          */ 00190600
/* settings across all members in the JESplex:                       */ 00190800
/*    - xxxDEF (global parameters) except where noted below          */ 00191000
/*    - JOBCLASS, OUTCLASS, etc.                                     */ 00191200
/*    - NODE, DESTID, CONNECT, RMT, LINE                             */ 00191400
/*    - Local Devices (RDRs, PRTs, PUNs), OFFLOAD                    */ 00191600
/*                                                                   */ 00191800
/* Consider letting the MASDEF OWNMEMB parameter default to          */ 00192000
/* the SMFPRMxx SID value.                                           */ 00192200
/*                                                                   */ 00192400
/* The following parameters will probably be set differently on      */ 00192600
/* each system:                                                      */ 00192800
/*    - INIT(nnn) classes tailored for each system                   */ 00193000
/*    - AUTOESYS RESTART=YES|NO                                      */ 00193200
/*    - Local Device & Line definitions unique to each system        */ 00193400
/*    - START parameter can only be YES on one system for            */ 00193600
/*      local devices & lines shared by all                          */ 00193800
/*    - MASDEF HOLD= and DORMANCY= values                            */ 00194000
/*    - LOGON(n) should specify a unique APPLID for JES2 on each     */ 00194200
/*      member                                                       */ 00194400
/*    - CONDEF CONCHAR must be different if you are using            */ 00194600
/*      SCOPE=SYSPLEX (but needs to be the same if you want          */ 00194800
/*      to exploit the MVS ROUTE *ALL command for JES2 commands).    */ 00195000
/*    - PCEDEF Number of PCEs should vary with JES workload          */ 00195200
/*                                                                   */ 00196200
/* Order Dependencies                                                */ 00196400
/* ------------------                                                */ 00196600
/*                                                                   */ 00196800
/* There are a few cases where the order of JES2 initialization      */ 00197000
/* statements is significant.                                        */ 00197200
/* The cases where order does make a difference are:                 */ 00197400
/*                                                                   */ 00197600
/*    - EXIT(19) statement must be before any statements             */ 00197800
/*      that are to be scanned by the exit routine.                  */ 00198000
/*    - DESTDEF must come before DESTID statements, or               */ 00198200
/*      destination names whose meaning might be changed             */ 00200400
/*      by the DESTDEF statement.                                    */ 00200500
/*    - NODE names before references to the node name in             */ 00200600
/*      the following statements:                                    */ 00200700
/*        - CONNECT                                                  */ 00200800
/*        - APPL                                                     */ 00200900
/*        - DESTID                                                   */ 00201000
/*        - Device Route Codes                                       */ 00201100
/*    - DESTID names before references by Device Route Codes         */ 00201200
/*                                                                   */ 00201300
/* Here is a suggested order for JES2 initialization statements:     */ 00201400
/*    - xxxDEF - global system definitions for MAS, Ckpt, Spool,     */ 00201500
/*      Buffers, Job, Output, queues, Exits, etc.                    */ 00201600
/*    - NJE NODE, APPL, CONNECT                                      */ 00201700
/*    - DESTID                                                       */ 00201800
/*    - Devices - Local, LINEs, Remotes, Spool Off.                  */ 00201900
/* .                                                                 */ 00202000
/* Ranges                                                            */ 00204000
/* ------                                                            */ 00206000
/*                                                                   */ 00206200
/* Use Ranges in Subscripts of JES2 initialization statements        */ 00206400
/* to manage in groups. For example:                                 */ 00206600
/*                                                                   */ 00206800
/* INIT(11-21) CLASS=X,START=YES                                     */ 00207000
/* JOBCLASS(*) COMMAND=IGNORE,LOG=YES                                */ 00207200
/* SSI(*)      TRACE=NO                                              */ 00207400
/*                                                                   */ 00207600
/* Caution                                                           */ 00207800
/* -------                                                           */ 00208000
/*                                                                   */ 00208200
/* Don't use an asterisk subscript (*, or n-*) on device             */ 00208400
/* statements because of excessive overhead during JES2              */ 00208600
/* initialization.  For example, NODE(*) means NODE(1-32767)         */ 00208800
/* and will significantly elongate JES2 initialization time.         */ 00209000
/*                                                                   */ 00209200
/* Keeping up with Dynamic Changes                                   */ 00209400
/* -------------------------------                                   */ 00209600
/*                                                                   */ 00209800
/* If any changes to initialization parameter settings with the $T,  */ 00210000
/* $ADD or $DEL commands, you must also make these changes to your   */ 00210200
/* initialization decks or they will be lost when JES2 restarts.     */ 00210400
/* For additional information on the effect of a hot start, refer    */ 00210600
/* to The Init and Tuning Guide and The Init and Tuning Reference.   */ 00210800
/*                                                                   */ 00211000
/* The MVS ROUTE *ALL command can be used to change or add           */ 00211200
/* symmetrically to the JESplex via $T and $ADD commands             */ 00211400
/* (if the command characters are identical).                        */ 00211600
/*                                                                   */ 00211800
/*********************************************************************/ 00212000
/*                                                                   */ 00212200
/* SYNTAX RULES for JES2 Initialization Statements:                  */ 00212400
/*                                                                   */ 00212600
/*   - Statements may be coded free-form in Columns 1 through 71     */ 00212800
/*   - Column 72 may be used for a Continuation Character, but is    */ 00213000
/*     NOT Required.  A trailing comma indicates continuation.       */ 00213200
/*   - Comments and Blanks may appear anywhere before, after, or     */ 00213400
/*     in-between statements, parameters, and delimiters.            */ 00213600
/*   - Comments are NOT allowed within a range.                      */ 00213800
/*   - Comments must be bounded by the slash-asterisk,               */ 00214000
/*     asterisk-slash type delimiters.                               */ 00214200
/*   - Statements must have at least one parameter coded on the      */ 00214400
/*     same line as the statement name.                              */ 00214600
/*                                                                   */ 00214800
/*********************************************************************/ 00215000
/*                                                                   */ 00215200
/* NOTES on the Format of this Member:                               */ 00215400
/*                                                                   */ 00215600
/*   - The Order of Statements is Alphabetical within the following  */ 00215800
/*     categories:                                                   */ 00216000
/*     - ALL Initialization Statements, showing new statements,      */ 00216200
/*       new and changed operands, etc.                              */ 00216400
/*     - An abbreviated list of statements and operands ADDED        */ 00216600
/*       in the JES2 SP 4.1.0 and later releases                     */ 00216800
/*     - An abbreviated list of statements and operands CHANGED      */ 00217000
/*       in the JES2 SP 4.1.0 and later releases                     */ 00217200
/*     - An abbreviated list of statements and operands DELETED      */ 00217400
/*       in SP 2.2.0 JES2 or later releases.                         */ 00217600
/*     - An abbreviated list of statement operands which cannot      */ 00217800
/*       be changed without a COLD start.                            */ 00218000
/*                                                                   */ 00218200
/* COLUMN layouts of the following statements are as follows:        */ 00218400
/*                                                                      00218600
STMT     PARAMETER=DEFAULT,       COMMENTS                   CHG-CODE*/ 00218800
/*                                                                   */ 00219000
/*    1- 8 - Statement Name                                          */ 00219200
/*   10-29 - Parameters set to default values                        */ 00219400
/*            ¢¢ - Indicates there is no default, or the default is  */ 00219600
/*                   based on other parameters.                      */ 00219800
/*            @@ - Indicates the default should not be taken blindly.*/ 00220000
/*   30-60 - Comments                                                */ 00220200
/*   62-69 - How the Parameter can be changed.  One or more of the   */ 00220400
/*           following flags will appear in the change code list.    */ 00220600
/*           They are listed in order of flexibility and power, but  */ 00220800
/*           these capabilities are not hierarchical.  For example,  */ 00221000
/*           some parameters can be changed only by cold starts      */ 00221200
/*           and commands.                                           */ 00221400
/*                                                                   */ 00221600
/*            a  - can be added by $ADD                              */ 00221800
/*            o  - can be altered by operand $T                      */ 00222000
/*            r  - can be removed by $DEL                            */ 00222200
/*            h  - can be altered/added by a hot start               */ 00222400
/*                 (if no H, the parm is ignored during hot start)   */ 00222600
/*            w  - can be altered/added by JES2 Warm or Quick Start  */ 00222800
/*            n  - can be altered/added by a JES2                    */ 00223000
/*                 All Member Warm Start                             */ 00223200
/*            c  - can be altered/added by JES2 Cold Start           */ 00223400
/*                                                                   */ 00223600
/*********************************************************************/ 00223800
/*                                                                   */ 00224000
/*01* Change Activity:                                               */ 00224200
/*                                                                   */ 00225000
/* $430P429=10X      HJE4430 920811 HGF:  JES2 to SAMPLIB(HASIPROC)  */ 00225900
/*                                                                   */ 00226200
/* $510P307=PL10307  HJE5510 931020 :     Init Deck Sample Updates   */ 00226500
/*                                                                   */ 00226700
/* $520LJQV=         HJE5520 940115 JPK:  JES2 TO SAMPLIB(HASIPARM)  */ 00226900
/* $520D001=MODRJE   HJE5520 940415 T_K1: Modifiable RJE             */ 00227100
/* $520P112=SNIFFER  HJE5520 941006 GMD:  Spool reclaim changes      */ 00227300
/*                                                                   */ 00227400
/* $R01P003=PTM      HJE6601 950914 VLC:  PTM 3  (External Classifi  */ 00227500
/*                                                                   */ 00227600
/* $R04LCMD=WLM      HJE6604 960913 CLW:  Job Commands               */ 00227900
/* $R04LWLM=WLM      HJE6604 970313 CLW:  Sampling anomalies         */ 00228200
/* $R04P144=WLM      HJE6604 970619 CLW:  Misc. errors.              */ 00228300
/* $ES1LBSZ=PTMS     HJE6608 990325 E_S7: Increase SNA Buffer Size   */ 00228400
/*                                                                   */ 00268400
/* $ES1LBSZ=PERF     HJE7703 990427 E_S7: Increase SNA Buffer Size   */ 00308400
/* $JS2LSPA=PERF     HJE7703 990817 JMS:  Spool allocation           */ 00348400
/* $CLWP038=BASEQ    HJE7703 000131 CLW:                             */ 00388400
/* $CLWP038=BASEQ    HJE7703 000201 CLW:  Dynamic BLOB resizing      */ 00428400
/* $ES7P037=PAGS     HJE7703 000208 E_S7: Set Tracedef pages=9       */ 00468400
/* $ES7P037=PAGS     HJE7703 000208 E_S7: Set Tracedef pages=9       */ 00508400
/* $JK0LLRJ=LRJOB    HJE7705 000608 J_K2: Long Running Job Support   */ 00510000
/* $JK1LLRJ=LRJOB    HJE7705 000829 J_K2: Long Running Job Support   */ 00520000
/* $JK0LLRJ=LRJOB    HJE7705 000919 J_K2: Long Running Job Support   */ 00522000
/* $JK1LLRJ=LRJOB    HJE7705 000919 J_K2: Long Running Job Support   */ 00531000
/* $TW4P118=MONITOR  HJE7707 020411 TJW:  Increase RDINUM default    */ 00540000
/* $CW9LMLM=NJETCP   HJE7720 030212 CLW:  Line manager recovery      */ 00544000
/* $CW9LMLM=NJETCP   HJE7720 030328 CLW:  Line manager recovery      */ 00546000
/* $NW1LBLD=BASEQ    HJE7720 040315 NAW:  Fix PROCLIB continuation   */ 00547000
/* $NW1LBLD=BASEQ    HJE7720 040322 NAW:  Fix PROCLIB continuation   */ 00547400
/* $OA07604=APAR     HJE7720 040524 S_F:  was closed as sug          */ 00547500
/* $CWXLTCP=NJETCP   HJE7720 041117 CLW:  Sample/test exits          */ 00547600
/* $CWXLTCP=NJETCP   HJE7720 050131 CLW:  Sample exits               */ 00548000
/*                                                                   */ 00548400
/* A000000-999999     Created for JES2 4.3.0                         */ 00588400
/*********************************************************************/ 00628400
/*                                                                   */ 00668400
/*                                                                   */ 00800000
/*                                                                   */ 00810000
/*********************************************************************/ 00820000
/*                                                                   */ 00830000
/*               *-----------------------------------*               */ 00840000
/*               | ALL Initialization Parameters     |               */ 00850000
/*               *-----------------------------------*               */ 00860000
/*                                                                   */ 00900000
/*   Note: Not ALL Parameters are shown, especially for devices.     */ 00905000
/*                                                                   */ 00905600
/*********************************************************************/ 00910000
/*                            *--------------------------------------*  00920000
                              |    SNA/NJE Applications              |  00930000
                              |    VTAM Application ID         aohwnc|  00935000
                              *--------------------------------------*  00940000
                                                                     */ 00950000
APPL(¢¢¢¢¢¢¢¢) COMPACT=¢¢,   /* APPL - VTAM Application ID     aohwnc*/ 00960000
                             /*     (pre-SP311 APPL APPLID=)         */ 00965000
                             /* COMPACT - Compaction Table Num  ohwnc*/ 00975000
         LINE=¢¢¢¢           /* Line dedicated to the SNA NJE   ohwnc*/ 00981000
                             /*     session (added SP410)            */ 00982000
         LOGON=1,            /* LOGON DCT to be used by this    ohwnc*/ 00982200
                             /*     session (added OS240)            */ 00982500
         LOGMODE=,           /* Logon mode table entry name     ohwnc*/ 00983000
                             /*     (added SP410)                    */ 00984000
         NODE=¢¢¢¢,          /* NJE Node Number                 ohwnc*/ 00985000
         REST=¢¢¢¢,          /* Session Resistance              ohwnc*/ 00993000
/*                                                                   */ 01000000
/*                                                                   */ 01010000
/*********************************************************************/ 01020000
/*                            *--------------------------------------*  01030000
                              |    Addresses of Bad Spool Tracks     |  01040000
                              |                                      |  01041000
                              |  Note: Statement is not displayable  |  01044000
                              *--------------------------------------*  01050000
                                                                     */ 01060000
BADTRACK VOL=¢¢¢¢¢¢,         /* Full Spool Volume Serial Number  hwnc*/ 01070000
         ADDR=(¢¢¢¢¢¢¢¢-¢¢¢¢¢¢¢¢)                                       01080000
                             /* Starting cyl/head of Bad Track   hwnc*/ 01090000
                             /* - Ending cyl/head of Bad Track   hwnc*/ 01100000
/*                                                                   */ 01110000
/*                                                                   */ 01120000
/*********************************************************************/ 01130000
/*                            *--------------------------------------*  01140000
                              |    LOCAL BUFFERS                     |  01150000
                              *--------------------------------------*  01160000
                                                                     */ 01170000
BUFDEF   BELOWBUF=           /* Characteristics for buffers below    */ 01185000
                             /*     16 meg line (added SP410)        */ 01190000
          (LIMIT=¢¢¢¢,       /* Number of Buffers               ohwnc*/ 01200000
                             /*     (pre-SP410=BUFNUM=¢¢             */ 01210000
           WARN=80),         /* Warning Threshold %             ohwnc*/ 01230300
                             /*     (pre-SP410=BUFWARN)              */ 01231200
         EXTBUF=             /* Characteristics for extended buffers */ 01232100
                             /*     (added SP410)                    */ 01233000
          (LIMIT=¢¢¢¢,       /* Number of Buffers               ohwnc*/ 01233900
                             /*     (pre-SP410=BUFNUM=¢¢)            */ 01234800
           WARN=80)          /* Warning Threshold %             ohwnc*/ 01237500
                             /*     (pre-SP410=BUFWARN)              */ 01238400
/*                                                                   */ 01240000
/*                                                                   */ 01250000
/*********************************************************************/ 01260000
/*                            *--------------------------------------*  01270000
                              |    CHECKPOINT PARAMETERS             |  01280000
                              |    This example assumes CKPT1 is     |  01282000
                              |    on DASD and CKPT2 is on a         |  01284000
                              |    Coupling Facility.                |  01286000
                              |    CKPT1 and CKPT2 can be on either. |  01288000
                              *--------------------------------------*  01290000
                                                                     */ 01300000
CKPTDEF  CKPT1=(DSNAME=¢¢¢¢, /* 1-44 char. dsn for 1st CKPT ds    onc*/ 01310000
                VOLSER=¢¢¢¢, /* 1st CKPT volume                   onc*/ 01350000
                INUSE=NO), @@/* initial status of CKPT1           onc*/ 01390000
                             /* NOTE: Refer to the Commands Manual   */ 01395000
                             /*       for additional information     */ 01400000
         CKPT2=(STRNAME=¢¢¢¢,/* 1-16 char. structure name for     onc*/ 01410000
                             /* 2nd CKPT data set.                   */ 01450000
                             /*     (STRNAME added in SP510)         */ 01460000
                INUSE=NO), @@/* initial status of CKPT2           onc*/ 01490000
         CKPTOPT=HIGHEST,    /* Which ckpt to use on JES2 restart onc*/ 01495000
                             /*     (added SP430)                    */ 01500000
         DUPLEX=ON,          /* MODE=DUPLEX - whether to use    ohwnc*/ 01502000
                             /*         CKPT2 as the duplex data set */ 01503000
                             /* MODE=DUAL - ignored                  */ 01504000
         LOGSIZE=¢¢,         /* Number of 4k pages for change log  nc*/ 01506000
         MODE=DUPLEX,        /* method of CKPT operation          onc*/ 01508000
         NEWCKPT1=(DSNAME=¢¢¢¢,                                         01510000
                             /* 1-44 char. CKPT1 replacement     ownc*/ 01520000
                VOLSER=¢¢¢¢),/* Replacement volume for CKPT1     ownc*/ 01540000
         NEWCKPT2=(STR=¢¢¢¢),/* 1-16 char. structure name for        */ 01560000
                             /* CKPT2 replacement                ownc*/ 01570000
                             /*     (added in SP510)                 */ 01575000
         OPVERIFY=YES,       /* Prompt oper. to confirm action   ownc*/ 01580000
                             /* to be taken for an I/O error on CKPT */ 01590000
                             /*     (added in SP510)                 */ 01600000
         RECONFIG=NO,        /* Use the most recently used       ownc*/ 01610000
                             /* checkpoint datasets                  */ 01620000
         VERSIONS=(NUMBER=0, /* Number of checkpoint versions   ohwnc*/ 01752000
                             /*   JES2 will maintain-0 indicates     */ 01754300
                             /*   JES2 will determine the maximum    */ 01754400
                             /*   number of versions to maintain.    */ 01754600
                             /*     (added SP410)                    */ 01754800
            WARN=80),        /* Threshold percentage at which   ohwnc*/ 01755700
                             /*   operator is to be notified.        */ 01756400
                             /*     (added SP410)                    */ 01757100
         VOLATILE=(ONECKPT=WTOR,                                        01757800
                             /* Specifies JES2 should issue WTOR to  */ 01758500
                             /* determine action if one CKPT is on a */ 01759200
                             /* volatile coupling facility           */ 01759900
                             /*     (added in SP510)            ohwnc*/ 01760600
                ALLCKPT=WTOR)                                           01763600
                             /* Specifies JES2 should issue WTOR to  */ 01767000
                             /* determine action if all CKPTs are on */ 01790000
                             /* volatile coupling facilities         */ 01800000
                             /*     (added in SP510)            ohwnc*/ 01810000
/*                                                                   */ 01812000
/*********************************************************************/ 01818000
/*                            *--------------------------------------*  01824000
                              |    Checkpoint Space Definitions      |  01830000
                              *--------------------------------------*  01836000
                                                                        01842000
CKPTSPACE BERTNUM=¢¢¢¢¢¢, @@ /* Number of BERTs                    oc*/ 01848000
                             /*     (added in OS/390 R4)             */ 01854000
          BERTWARN=80,       /* $HASP050 threshold for BERTs    ohwnc*/ 01860000
                             /*     (added in OS/390 R4)             */ 01866000
/*                                                                   */ 01880000
/*********************************************************************/ 01890000
/*                            *--------------------------------------*  01900000
                              |    Compaction Table Definitions      |  01910000
                              *--------------------------------------*  01920000
                                                                     */ 01930000
COMPACT  NAME=¢¢¢¢¢¢¢¢,      /* Name of Compaction Table         hwnc*/ 01940000
         NUMBER=¢¢,          /* Compaction Table Number          hwnc*/ 01950000
                             /* Table Definition                     */ 01960000
         CHARS=(¢¢,          /* - Number of Master Characters    hwnc*/ 01970000
                ?????..,/* - Master Characters              hwnc*/ 01980000
                ?????..)/* - Non-Master Characters          hwnc*/ 01990000
/*                                                                   */ 02000000
/*                                                                   */ 02010000
/*********************************************************************/ 02020000
/*                            *--------------------------------------*  02030000
                              |    CONSOLE PARAMETERS                |  02040000
                              *--------------------------------------*  02050000
                                                                     */ 02060000
CONDEF   AUTOCMD=20,         /* Number of Auto Cmds              hwnc*/ 02070000
         BUFNUM=100, @@      /* Number of CMBs                  ohwnc*/ 02110000
         BUFWARN=80,         /* Warning Threshold %             ohwnc*/ 02130000
         CMDNUM=100,         /* Maximum number of CMBs for JES2      */ 02140000
                             /* commands from common storage     ownc*/ 02150000
                             /*     (added in SP510)                 */ 02160000
         CONCHAR=$,          /* Console Cmd Character            ownc*/ 02170000
         DISPLEN=64,         /* $SCAN Cmd/init Display Length   ohwnc*/ 02182000
         DISPMAX=100,        /* $SCAN Cmd/init Max Lines        ohwnc*/ 02186000
         MASMSG=200,         /* Number of Queued Msgs           ohwnc*/ 02190000
         RDIRAREA=Z,         /* Default console out-of-line     ohwnc*/ 02210000
                             /*   area  (added SP410)                */ 02220000
         RDRCHAR=$,          /* Reader Cmd Character            ohwnc*/ 02230000
         SCOPE=SYSTEM        /* Specifies scope of command        wnc*/ 02241000
                             /*   prefix  (added SP410)              */ 02244000
/*                                                                   */ 02250000
/*                                                                   */ 02260000
/*********************************************************************/ 02270000
/*                            *--------------------------------------*  02280000
                              |    Static NJE Connections            |  02290000
                              *--------------------------------------*  02300000
                                                                     */ 02310000
CONNECT  NODEA=¢¢¢¢,         /*           Overall Statement - oarhwnc*/ 02320000
                             /* Node number or node name         hwnc*/ 02322000
                             /*     on 'A' end                       */ 02325000
         MEMBERA=1,          /* Member number on 'A' end         hwnc*/ 02330000
                             /*     (pre-SP311=MEMBA, required)      */ 02331000
                             /*     (SP311 - defaults to 1)          */ 02334000
         NODEB=¢¢¢¢,         /* Node number or node name         hwnc*/ 02340000
                             /*     on 'B' end                       */ 02345000
         MEMBERB=1,          /* Member number on 'B' end         hwnc*/ 02350000
                             /*     (pre-SP311=MEMBB, required)      */ 02352000
                             /*     (SP311 - defaults to 1)          */ 02355000
         PATHMGR=¢¢?        /* Support path manager protocols      o*/ 02356000
                             /*   (added SP410)                      */ 02357000
         REST=0              /* Resistance of connection        ohwnc*/ 02360000
                             /* NOTE: the values for REST= CANNOT    */ 02370000
                             /*       be 0 (as shown here).          */ 02380000
                             /*       If the parameter is not        */ 02390000
                             /*       coded at all, then the default */ 02400000
                             /*       will be 0.  The parameter is   */ 02410000
                             /*       shown this way only to include */ 02420000
                             /*       the default value here.        */ 02430000
/*                                                                   */ 02440000
/*                                                                   */ 02450000
/*********************************************************************/ 02460000
/*                            *--------------------------------------*  02470000
                              |    DEBUG PARAMETERS                  |  02480000
                              |      (revised by OW05639)            |  02481000
                              |    Do not use unless necessary       |  02484000
                              *--------------------------------------*  02490000
                                                                     */ 02500000
DEBUG    BERT=YES,           /* ABEND if BERT error detected    ohwnc*/ 02501000
         CKPT=NO,            /* Verify integrity of checkpoint  ohwnc*/ 02502000
         MISC=NO,            /* Count certain JES2 events       ohwnc*/ 02503000
         SECURITY=NO,        /* Issue WTO for security failures ohwnc*/ 02503500
         STORAGE=NO,         /* Verify GETWORKed areas          ohwnc*/ 02504000
         SYMREC=NO,          /* Issue $WTO with SYMREC          ohwnc*/ 02505000
         VERSION=NO          /* Verify integrity of ckpt vers   ohwnc*/ 02507000
/*                                                                   */ 02508000
/*                                                                   */ 02511000
/*********************************************************************/ 02511900
/*                            *--------------------------------------*  02512800
                              |    Defining How Destinations         |  02513700
                              |    Are Processed                     |  02514600
                              |      (added by OY54524)              |  02515500
                              *--------------------------------------*  02516400
                                                                     */ 02517300
DESTDEF  LOCALNUM=9999,      /* 9999 is the maximum special local wnc*/ 02518200
                             /* routing allowed on this member     nc*/ 02519100
         NDEST=Node,         /* JES2 interprets Nnnnn as node      nc*/ 02520000
         NODENAME=OPTIONAL,  /* userids can be specified without   nc*/ 02520900
                             /* a node specification                 */ 02521800
         RDEST=Remote,       /* JES2 interprets Rnnnn as remote    nc*/ 02522700
         RMDEST=Remote,      /* JES2 interprets RMnnnn as remote   nc*/ 02523600
         RMTDEST=Remote,     /* JES2 interprets RMTnnnn as remote  nc*/ 02524500
         UDEST=SPLOCAL,      /* JES2 interprets Unnnn as special   nc*/ 02525400
                             /* local routing                      nc*/ 02526300
         SHOWUSER=NOLOCAL    /* local dests are displayed       ohwnc*/ 02527200
                             /* without 'LOCAL' as the prefix        */ 02528100
/*                                                                   */ 02530000
/*                                                                   */ 02540000
/*********************************************************************/ 02550000
/*                            *--------------------------------------*  02560000
                              |    Symbolic Destinations             |  02570000
                              *--------------------------------------*  02580000
                                                                     */ 02590000
DESTID(¢¢¢¢¢¢¢¢) DEST=¢¢¢¢¢¢¢¢, /* DESTID - User-Defined Name   aownc*/ 02600000
                             /*     (pre-SP311 DESTID NAME=)         */ 02601000
                             /* DEST - NJE/RJE/LOCAL Routecode   ownc*/ 02610000
         PRIMARY=NO          /* Do not display the destid for    ownc*/ 02611000
                             /* job and SYSOUT routing               */ 02611500
/*                                                                   */ 02612000
/*                                                                   */ 02630000
/*********************************************************************/ 02640000
/*                            *--------------------------------------*  02650000
                              |   Default Estimated Sysout Bytes/Job |  02660000
                              *--------------------------------------*  02670000
                                                                     */ 02680000
ESTBYTE  NUM=99999,          /* 99999000 Bytes for 1st Msg      ohwnc*/ 02690000
         INT=99999,          /*  then 99999000 Byte Intervals   ohwnc*/ 02700000
         OPT=0               /* Allow Jobs to Continue          ohwnc*/ 02710000
/*                                                                   */ 02720000
/*                                                                   */ 02730000
/*********************************************************************/ 02740000
/*                            *--------------------------------------*  02750000
                              |    Default Estimated Execution Time  |  02760000
                              *--------------------------------------*  02770000
                                                                     */ 02780000
ESTIME   NUM=2,              /* 2 minutes for 1st Message       ohwnc*/ 02790000
         INT=1,              /*  then at 1 minute Intervals     ohwnc*/ 02800000
         OPT=NO              /* No HASP308 message              ohwnc*/ 02810000
/*                                                                   */ 02820000
/*                                                                   */ 02830000
/*********************************************************************/ 02840000
/*                            *--------------------------------------*  02850000
                              |   Default Estimated Sysout Lines/Job |  02860000
                              *--------------------------------------*  02870000
                                                                     */ 02880000
ESTLNCT  NUM=2,              /* 2000 Lines for 1st Message      ohwnc*/ 02890000
         INT=2000,           /*  then at 2000 Line Intervals    ohwnc*/ 02900000
         OPT=0               /* Allow Jobs to Continue          ohwnc*/ 02910000
/*                                                                   */ 02920000
/*                                                                   */ 02930000
/*********************************************************************/ 02940000
/*                            *--------------------------------------*  02950000
                              |   Default Estimated Sysout Pages/Job |  02960000
                              *--------------------------------------*  02970000
                                                                     */ 02980000
ESTPAGE  NUM=40,             /* 40 Pages for 1st Message        ohwnc*/ 02990000
         INT=10,             /*  then at 10 Page Intervals      ohwnc*/ 03000000
         OPT=0               /* Allow Jobs to Continue          ohwnc*/ 03010000
/*                                                                   */ 03020000
/*                                                                   */ 03030000
/*********************************************************************/ 03040000
/*                            *--------------------------------------*  03050000
                              |   Default Estimated Sysout Cards/Job |  03060000
                              *--------------------------------------*  03070000
                                                                     */ 03080000
ESTPUN   NUM=100,            /* 100 Cards for 1st Message       ohwnc*/ 03090000
         INT=2000,           /*  then at 2000 Card Intervals    ohwnc*/ 03100000
         OPT=0               /* Allow Jobs to Continue          ohwnc*/ 03110000
/*                                                                   */ 03120000
/*                                                                   */ 03130000
/*********************************************************************/ 03140000
/*                            *--------------------------------------*  03150000
                              |    Exit Number - Routine Association |  03160000
                              *--------------------------------------*  03170000
                                                                     */ 03180000
EXIT(NNN)  ROUTINES=¢¢¢¢¢¢¢¢,/* Name on $ENTRY statement          wnc*/ 03190000
         STATUS=ENABLED,     /* The Exit is Enabled initially    ownc*/ 03200000
         TRACE=NO            /* Tracing not active               ownc*/ 03220000
/*                                                                   */ 03230000
/*                                                                   */ 03240000
/*********************************************************************/ 03250000
/*                            *--------------------------------------*  03260000
                              |    Functional Subsystem Definition   |  03270000
                              *--------------------------------------*  03280000
                                                                     */ 03290000
FSS(¢¢¢¢¢¢¢¢) PROC=¢¢¢¢¢¢¢¢, /* FSS - Token for PRINTERnn FSS=  aownc*/ 03300000
                             /*     (pre-SP311 FSSDEF FSSNAME=)      */ 03303000
                             /* PROC -FSS Procedure to Start FSS ownc*/ 03310000
         HASPFSSM=HASPFSSM,  /* FSS Load Module for FSS Support  ownc*/ 03320000
         AUTOSTOP=NO         /* Can FSS addr. space be removed  orwnc*/ 03326000
                             /* if all printers are inactive?         */03327000
/*                                                                   */ 03330000
/*                                                                   */ 03340000
/*********************************************************************/ 03344000
/*                            *--------------------------------------*  03352000
                              |    Include additional init decks     |  03360000
                              *--------------------------------------*  03368000
                                                                     */ 03376000
INCLUDE  DSNAME=¢¢(¢¢),      /* Up to 44 char data set name & member */ 03384000
         VOLSER=¢¢¢¢¢¢,      /* Volume serial for data set           */ 03392000
         UNIT=¢¢¢¢           /* Unit information for data set        */ 03400000
/*                                                                   */ 03408000
/*                                                                   */ 03416000
/*********************************************************************/ 03430000
/*                            *--------------------------------------*  03440000
                              |    Logical Initiators                |  03450000
                              *--------------------------------------*  03460000
                                                                     */ 03470000
INIT(nnnn) NAME=¢¢¢¢,        /* Initiator Name                    wnc*/ 03480000
         CLASS=A,            /* Initial Job Classes              ownc*/ 03500000
         START=YES           /* Start Automatically               wnc*/ 03510000
/*                                                                   */ 03520000
/*                                                                   */ 03530000
/*********************************************************************/ 03540000
/*                            *--------------------------------------*  03550000
                              |    Logical Initiator definition      |  03560000
                              *--------------------------------------*  03570000
                                                                     */ 03580000
INITDEF  PARTNUM=3   @@      /* Number of Initiators              wnc*/ 03590000
/*                                                                   */ 03610000
/*                                                                   */ 03620000
/*********************************************************************/ 03630000
/*                            *--------------------------------------*  03640000
                              |    Internal Readers                  |  03650000
                              *--------------------------------------*  03660000
                                                                     */ 03670000
INTRDR   AUTH=(JOB=NO,       /* Allow Job cmds                   ownc*/ 03672000
               DEVICE=NO,    /* Allow Device Cmds                ownc*/ 03674000
               SYSTEM=NO),   /* Allow system cmds                ownc*/ 03676000
                             /*     (pre-SP420 AUTH=0 for all 3      */ 03678000
                             /*      subparameters)                  */ 03680000
         BATCH=YES,          /* Allow batch jobs to use           wnc*/ 03682000
                             /*     internal readers                 */ 03684000
                             /*     (added SP420)                    */ 03686000
         CLASS=A,            /* Default Job Class                ownc*/ 03690000
         HOLD=NO,            /* Don't Hold Jobs Read             ownc*/ 03700000
         HONORLIM=NO,        /* Do output excession for INTRDR   ownc*/ 03702000
                             /*     (added by OW06743)               */ 03705000
         PRTYINC=0,          /* Don't Prty Age Jobs               wnc*/ 03710000
         PRTYLIM=15,         /* Limit Job Prty to 15              wnc*/ 03720000
         TRACE=NO            /* Allow tracing                    ownc*/ 03784000
                             /*     (added SP420)                    */ 03785000
/*                                                                   */ 03790000
/*                                                                   */ 03800000
/*********************************************************************/ 03810000
/*                            *--------------------------------------*  03820000
                              |    Job Class definitions             |  03830000
                              *--------------------------------------*  03840000
                                                                     */ 03850000
JOBCLASS(? ACCT=NO,          /* Acct# not req                      oc*/ 03860000
         ACTIVE=NO,          /* Class not used on new jobs           */ 03865000
         AUTH=ALL,           /* Allow all Cmd                      oc*/ 03870000
         BLP=NO,             /* Ignore BLP                         oc*/ 03880000
         COMMAND=VERIFY,     /* Verify Cmds                        oc*/ 03885000
         CONDPURG=NO,        /* Conditional purge for              oc*/ 03886000
                             /*   JOBCLASS(STC) or JOBCLASS(TSU)     */ 03887000
                             /*   (moved in OS/390 R4)               */ 03888000
         COPY=NO,            /* Not TYPRUN=COPY                    oc*/ 03890000
         GROUP=name,         /* Associate jobclass with group name    / 03893000
         HOLD=NO,            /* Not TYPRUN=HOLD                    oc*/ 03895000
         IEFUJP=YES,         /* Take SMF Job Purge Exit            oc*/ 03900000
         IEFUSO=YES,         /* Take SYSOUT Excess Exit            oc*/ 03910000
         JESLOG=(NOSPIN),    /* JOBLOG/SYSMSG spin specifications  oc*/ 03915000
         JOURNAL=YES,        /* Journal this Job Class             oc*/ 03920000
         LOG=YES,            /* Print JES2 JOB LOG                 oc*/ 03930000
         MODE=JES,           /* Run in JES mode, not WLM mode      oc*/ 03931000
                             /*   (added in OS/390 R4)               */ 03932000
         MSGCLASS=A,         /* Message class for JOBCLASS(STC)    oc*/ 03933000
                             /*   or JOBCLASS(TSU)                   */ 03934000
                             /*   (moved in OS/390 R4)               */ 03935000
         MSGLEVEL=(0,1),     /* Job, All Msgs                      oc*/ 03940000
         OUTDISP=(,),        /* Disposition of system output       oc*/ 04092000
                             /*   normal termination and abnormal    */ 04093000
                             /*   termination  (added SP410)         */ 04094000
                             /*   (pre-SP410=CONDPURG)               */ 04095000
         OUTPUT=YES,         /* Produce Output for Job             oc*/ 04110000
         QHELD=NO,           /* Hold jobs prior to execution       oc*/ 04116000
                             /*     (added by APAR OW06439)          */ 04122000
         PERFORM=000,        /* SRM Performance Group 0            oc*/ 04130000
         PGMRNAME=NO,        /* Pgmrnm not rq                      oc*/ 04135000
         PROCLIB=00,         /* Use //PROC00 DD                    oc*/ 04140000
         REGION=1M,          /* Region Size                        oc*/ 04143000
                             /*   (format changed SP410)             */ 04146000
         RESTART=NO,         /* No Requeue (XEQ) on IPL            oc*/ 04150000
         SCAN=NO,            /* Not TYPRUN=SCAN                    oc*/ 04170000
         SCHENV=¢¢¢¢¢¢¢¢,    /* Default SCHENV                     oc*/ 04180000
         SWA=BELOW,          /* SWA cbs below 16m line             oc*/ 04190000
                             /*     (added by APAR OY02574)          */ 04200000
                             /*     (superseded by APAR OY03444)     */ 04210000
         TIME=(0030,00),     /* Job Step Time                      oc*/ 04212000
                             /*   (format changed SP410)             */ 04215000
         TYPE6=YES,          /* Produce SMF 6 Records              oc*/ 04220000
         TYPE26=YES,         /* Produce SMF 26 Records             oc*/ 04240000
         XBM=¢¢¢¢¢¢¢¢,       /* Proc name for XBM/2 job            oc*/ 04274000
                             /*     (changed in SP313)               */ 04278000
         XEQCOUNT=MAX=*      /* Maximum jobs allowed in this       oc*/ 04278500
                             /*   class simultaneously               */ 04279000
                             /*     (added in OS/390 R4)             */ 04279500
/*                                                                   */ 04280000
/*                                                                   */ 04290000
/*********************************************************************/ 04300000
/*                            *--------------------------------------*  04310000
                              |    Job Characteristics               |  04320000
                              *--------------------------------------*  04330000
                                                                     */ 04340000
JOBDEF   ACCTFLD=OPTIONAL,   /* Accounting field optional       ohwnc*/ 04350000
         BAD_JOBNAME_CHAR=?, /* The character used to           ohwnc*/ 04350200
                             /*   substitute for bad jobname         */ 04350400
                             /*   characters                         */ 04350600
         CNVT_ENQ=FAIL,      /* Fail job conversion if a DSN         */ 04351000
                             /*  ENQ is not available             onc*/ 04352000
         DUPL_JOB=DELAY,     /* Don't allow jobs with duplicate      */ 04355000
                             /*  names to execute concurrently    onc*/ 04360000
                             /*     (added OS130)                    */ 04365000
         JCLERR=NO,          /* No Term. Job w/JCL Error        ohwnc*/ 04370000
         JNUMWARN=80,        /* Warn Threshold % for Job Numb.    onc*/ 04380000
         JOBNUM=1000,        /* Job Queue Size                     oc*/ 04410000
         JOBWARN=80,         /* Warning Threshold % For JQEs      onc*/ 04430000
         PRTYHIGH=10,        /* Upper Limit for Aging             onc*/ 04450000
         PRTYJECL=YES,       /* PRIORITY JECL Supported         ohwnc*/ 04470000
         PRTYJOB=NO,         /* PRTY= on JOB Not Sup'd          ohwnc*/ 04490000
         PRTYLOW=5,          /* Lower Limit for Aging             onc*/ 04510000
         PRTYRATE=0,         /* Prty Aging Rate X/Day             onc*/ 04530000
         RANGE=(1-9999),     /* Local Job Number Range             oc*/ 04550000
         RASSIGN=YES,        /* Allow assignment of job numbers ohwnc*/ 04560000
                             /*     outside RANGE (added OW20844)    */ 04570000
/*                                                                   */ 04590000
/*                                                                   */ 04600000
/*********************************************************************/ 04610000
/*                            *--------------------------------------*  04620000
                              |    Default PRTY Calculations         |  04630000
                              *--------------------------------------*  04640000
                                                                     */ 04650000
JOBPRTY(1) PRIORITY=9,       /* Job Prty=9 if                   ohwnc*/ 04660000
          TIME=2             /*  < 2 min. exec. time            ohwnc*/ 04670000
JOBPRTY(2) PRIORITY=8,       /* Job Prty=8 if                        */ 04710000
          TIME=5             /*  < 5 min. exec. time                 */ 04720000
                             /* etc.                                 */ 04722000
/*                                                                   */ 04724000
/*                                                                   */ 04726000
/*********************************************************************/ 04728000
/*                            *--------------------------------------*  04728500
                              |    Line JOB    Transmitters          |  04729000
                              *--------------------------------------*  04729500
                                                                     */ 04729700
L(NNNN).JT(N)   LIMIT=(0-*), /* Select Any # Lines              ohwnc*/ 04729900
                             /*     (added OS240)                    */ 04730100
         WS=(/)              /* Work selection criteria         ohwnc*/ 04730300
                             /*     (added OS240)                    */ 04730500
/*                                                                   */ 04730700
/*                                                                   */ 04731300
/*********************************************************************/ 04732000
/*                            *--------------------------------------*  04732700
                              |    Line SYSOUT Transmitters          |  04733400
                              *--------------------------------------*  04734100
                                                                     */ 04734800
L(NNNN).ST(N)   LIMIT=(0-*), /* Select Any # Lines              ohwnc*/ 04735500
                             /*     (added SP430)                    */ 04736200
         OUTDISP=,           /* Select output dispositions      ohwnc*/ 04736400
                             /*     (added OS130)                    */ 04736600
         PLIM=(0-*),         /* Select Any # Pages              ohwnc*/ 04736900
                             /*     (added SP430)                    */ 04737600
         WS=(/)              /* Work selection criteria         ohwnc*/ 04738300
                             /*     (added SP430)                    */ 04739000
/*                                                                   */ 04740000
/*                                                                   */ 04750000
/*********************************************************************/ 04760000
/*                            *--------------------------------------*  04770000
                              |    TP Lines for RJE/NJE              |  04780000
                              |       BSC Line                       |  04785000
                              *--------------------------------------*  04790000
                                                                     */ 04800000
                             /* Alternate name for LINEn: LNEn       */ 04803000
LINE(NNNN)  AUTODISC=YES,    /* automatic disconnect (NO)      aohwnc*/ 04806000
                             /*     (pre-SP311=ADISCON/NOADISC)      */ 04808000
         CODE=A,             /* BSC adapter code     (B)        ohwnc*/ 04810000
                             /*     (pre-SP311=CODEA/CODEB)          */ 04812000
         COMPRESS=YES,       /* Data compression avail.         ohwnc*/ 04815000
                             /*     (pre-SP311=COMP/NOCOMP           */ 04818000
         DUPLEX=HALF,        /* Half duplex line (FULL)         ohwnc*/ 04818600
                             /*     (pre-SP311=HDUPLEX/FDUPLEX)      */ 04819200
         INTERFAC=A,         /* BSC adapter interface (B)       ohwnc*/ 04819800
                             /*     (pre-SP311=IFACEA/IFACEB)        */ 04820400
         JRNUM=DEFAULT,      /* Number of job receivers on       hwnc*/ 04821000
                             /*     this line (Range=0-7)            */ 04821600
                             /*     (added SP430)                    */ 04822200
         JTNUM=DEFAULT,      /* Number of job transmitters on    hwnc*/ 04822800
                             /*     this line (Range=0-7)            */ 04823400
                             /*     (added SP430)                    */ 04824000
         LINECCHR=EBCDIC,    /* Line control char. form (USASCII)    */ 04824600
                             /*     (pre-SP311=EBCDIC/USASCII)  ohwnc*/ 04825200
         LOG=N,              /* Monitor channel end completions (Y)  */ 04827000
                             /*   or discontinue monitor (N)    ohwnc*/ 04830000
         PASSWORD=,          /* 1-8 char. security password     ohwnc*/ 04840000
         REST=0,             /* Resistance rating of the line   ohwnc*/ 04840900
         SPEED=LOW,          /* <=9600 bits per second (HIGH)   ohwnc*/ 04841800
                             /*     (Used for models 360/20 2&4)     */ 04842700
                             /*     (pre-SP311=LOWSPEED/HISPEED)     */ 04843600
         SRNUM=DEFAULT,      /* Number of SYSOUT receivers on    hwnc*/ 04844500
                             /*     this line (Range=0-7)            */ 04845400
                             /*     (added SP430)                    */ 04845600
         STNUM=DEFAULT,      /* Number of SYSOUT transmitters    hwnc*/ 04845800
                             /*     on this line (Range=0-7)         */ 04846000
                             /*     (added SP430)                    */ 04846200
         TRACEIO=NO,         /* Trace i/o operations on line (YES)   */ 04846800
                             /*   or stop tracing (NO)          ohwnc*/ 04847200
                             /*                                      */ 04848000
                             /* NOTE: The following parameters are   */ 04850000
                             /*       ignored if UNIT=SNA            */ 04860000
         TRANSPAR=NO,        /* Text transparency (YES)         ohwnc*/ 04960000
                             /*     (Required for BSC NJE lines)     */ 04970000
                             /*     (pre-SP311=NOTRANSP/TRANSP)      */ 04975000
         UNIT=¢¢¢¢           /* Unit address EP, CTC or 'SNA'   ohwnc*/ 04976300
/*                            *--------------------------------------*  04976400
                              |    TP Lines for RJE/NJE              |  04976500
                              |       SNA Line                       |  04976600
                              *--------------------------------------*  04976700
                                                                     */ 04976800
LINE(NNNN)  LOG=N,           /* Monitor channel end completions (Y)  */ 04976900
                             /*   or discontinue monitor (N)   aohwnc*/ 04977000
         JRNUM=DEFAULT,      /* Number of job receivers on      ohwnc*/ 04977100
                             /*     this line (Range=0-7)            */ 04977200
                             /*     (added SP430)                    */ 04977300
         JTNUM=DEFAULT,      /* Number of job transmitters on   ohwnc*/ 04977400
                             /*     this line (Range=0-7)            */ 04977500
                             /*     (added SP430)                    */ 04977600
         PASSWORD=,          /* 1-8 char. security password     ohwnc*/ 04977800
         SRNUM=DEFAULT,      /* Number of SYSOUT receivers on   ohwnc*/ 04978000
                             /*     this line (Range=0-7)            */ 04978200
                             /*     (added SP430)                    */ 04978400
         STNUM=DEFAULT,      /* Number of SYSOUT transmitters   ohwnc*/ 04978600
                             /*     on this line (Range=0-7)         */ 04978800
                             /*     (added SP430)                    */ 04979000
         TRACEIO=NO,         /* Trace i/o operations on line (YES)   */ 04979200
                             /*   or stop tracing (NO)          ohwnc*/ 04979400
         UNIT=SNA            /* Indicate SNA device             ohwnc*/ 04979600
/*                                                                   */ 04980000
/*                                                                   */ 04990000
/*********************************************************************/ 05000000
/*                            *--------------------------------------*  05010000
                              |    Exit Load Modules                 |  05020000
                              *--------------------------------------*  05030000
                                                                     */ 05040000
LOADMOD(module_name)  STORAGE=PVT                                       05045000
                             /* Exit load module name ($MODULE)  hwnc*/ 05050000
                             /*     (pre-SP311 LOAD module_name)     */ 05050500
                             /* Load module into private also    hwnc*/ 05051000
                             /* CSA and LPA                          */ 05052000
/*                                                                   */ 05060000
/*                                                                   */ 05070000
/*********************************************************************/ 05080000
/*                            *--------------------------------------*  05090000
                              |    Identify JES2 APPLIDs to VTAM     |  05100000
                              *--------------------------------------*  05110000
                                                                     */ 05120000
LOGON(n) Applid=JES2,        /* Access control blk (ACB) name  aohwnc*/ 05130000
         LOG=Y,              /* Monitor VTAM interface (Y)      ohwnc*/ 05131000
                             /*   or discontinue monitoring (N)      */ 05132000
         TRACEIO=NO,         /* Trace i/o activity (YES)        ohwnc*/ 05136000
                             /*   or stop tracing activity (NO)      */ 05137000
         PASSWORD=           /* 1-8 char. security password     ohwnc*/ 05140000
/*                                                                   */ 05150000
/*                                                                   */ 05160000
/*********************************************************************/ 05170000
/*                            *--------------------------------------*  05180000
                              |    Multi-Access Spool                |  05190000
                              |    MASDEF - this members             |  05193000
                              |             characteristics          |  05196000
                              *--------------------------------------*  05200000
                                                                     */ 05210000
                             /* Times are in 1/100 sec. unless spec'd*/ 05220000
MASDEF   AUTOEMEM=OFF,       /* Restart this members work       ohwnc*/ 05230000
                             /* if this member fails                 */ 05232000
         CKPTLOCK=ACTION,    /* Issue HASP479 during JES start   hwnc*/ 05236000
                             /* if needed                            */ 05240000
         DORMANCY=(100,      /* Minimum Dormancy Time           ohwnc*/ 05244000
                       500), /* Maximum Dormancy Time           ohwnc*/ 05250000
         HOLD=99999999,      /* Minimum Hold Time               ohwnc*/ 05270000
         LOCKOUT=1000,       /* Lock-out Warning Time           ohwnc*/ 05290000
         OWNMEMB=¢¢¢¢,       /* Member identifier of this member  wnc*/ 05310000
                             /*   This replaces OWNSID in SP510      */ 05316000
         RESTART=NO,         /* This member cannot $ESYS others ohwnc*/ 05322000
         SHARED=CHECK,       /* Check for Shared DASD              oc*/ 05330000
/*       SID(1)=¢¢¢¢,        /* replaced by MEMBER statements     wnc*/ 05350000
                             /*  in SP510                            */ 05360000
         SYNCTOL=120,        /* Synch.Tolerance (Sec.)          ohwnc*/ 05370000
         XCFGRPNM=¢¢¢¢       /* 1-8 char. MAS unique XCF groupname nc*/ 05380000
/*                                                                   */ 05390000
/*                            *--------------------------------------*  05390100
                              |    Multi-Access Spool                |  05391000
                              |    MEMBER - Used to define all       |  05391900
                              |             members                  |  05392800
                              *--------------------------------------*  05393700
                                                                     */ 05394600
MEMBER(n) NAME=¢¢¢¢          /* Member number (1-32) and 1-4      wnc*/ 05395500
                             /* character member name                */ 05396400
                             /* This replaces SID parm from MASDEF   */ 05397300
                             /* as of SP510                          */ 05398200
/*                                                                   */ 05400000
/*********************************************************************/ 05410000
/*                            *--------------------------------------*  05420000
                              |  Network/Local Account # Translation |  05430000
                              *--------------------------------------*  05440000
                                                                     */ 05450000
NETACCT  NACCT=¢¢¢¢¢¢¢¢,     /* Network Account Number            wnc*/ 05460000
         NTHRU=¢¢¢¢¢¢¢¢,     /* Upper limit for NACCT             wnc*/ 05470000
         JACCT=¢¢¢¢,         /* JES2 Account Number               wnc*/ 05480000
         JTHRU=¢¢¢¢,         /* Upper limit for JACCT             wnc*/ 05490000
         TYPE=¢¢?           /* Translate Both Ways               wnc*/ 05500000
/*                                                                   */ 05500800
/*                                                                   */ 05501700
/*********************************************************************/ 05502600
/*                            *--------------------------------------*  05503500
                              |    Network Server definitions        |  05504400
                              *--------------------------------------*  05505300
                                                                        05506200
NETSRV(n)  SOCKET=¢¢¢¢¢¢¢¢,  /* Socket for IP address and port   ownc*/ 05507100
           STACK=¢¢¢¢¢¢¢¢,   /* TCP/IP stack to use              ownc*/ 05507200
           TRACE=NO          /* Trace traffic on server          ownc*/ 05508000
                                                                        05508900
/*                                                                   */ 05510000
/*                                                                   */ 05520000
/*********************************************************************/ 05530000
/*                            *--------------------------------------*  05540000
                              |    NJE Definitions                   |  05550000
                              *--------------------------------------*  05560000
                                                                     */ 05570000
                                                                     */ 05575000
NJEDEF   DELAY=120,          /* Max. Msg Delay Time             ohwnc*/ 05580000
         HDRBUF=(LIMIT=¢¢¢¢, /* number of NJE header + trailer  ohwnc*/ 05584000
                             /* buffers                              */ 05588000
                             /*     (added in SP510)                 */ 05592000
              WARN=80),      /* Warning threshold               ohwnc*/ 05596000
         JRNUM=0,            /* Num. of job receivers            hwnc*/ 05600000
         JTNUM=0,            /* Num. of job xmitters             hwnc*/ 05620000
         LINENUM=0,          /* Num. of lines for NJE            hwnc*/ 05640000
         MAILMSG=NO,         /* Don't automatically issue       ohwnc*/ 05645000
                             /* notification message                 */ 05650000
         MAXHOP=0,   @@      /* Num. of iterations to limit      hwnc*/ 05655000
                             /*     hoping in network                */ 05660000
                             /* 0 means no hop counting              */ 05665000
                             /*     (added SP420)                    */ 05670000
         NODENUM=1,          /* Max. Number of NJE nodes         ownc*/ 05680000
         OWNNODE=1,          /* This Node's Number                  c*/ 05720000
         PATH=1,             /* Num. of Paths/Alt'nate            wnc*/ 05740000
         RESTMAX=79992000,   /* Max. resistance tolerance       ohwnc*/ 05760000
         RESTNODE=100,       /* This node's resistance          ohwnc*/ 05780000
         RESTTOL=0,          /* Alt. resistance tolerance       ohwnc*/ 05800000
         SRNUM=0,            /* Num. of sysout receivers         hwnc*/ 05820000
         STNUM=0,            /* Num. of sysout transmitters      hwnc*/ 05840000
         TIMETOL=20          /* Time variation between clocks   ohwnc*/ 05853000
                             /*     (added SP410)                    */ 05856000
/*                                                                   */ 05900000
/*                                                                   */ 05910000
/*********************************************************************/ 05920000
/*                            *--------------------------------------*  05930000
                              |    NJE Node Definitions              |  05940000
                              |      This statement needs to be      |  05941000
                              |      BEFORE any statement referring  |  05942000
                              |      to this node name in a          |  05943000
                              |      production init deck.  This     |  05944000
                              |      includes: APPL, CONNECT,        |  05945000
                              |      DESTID and device route codes   |  05946000
                              *--------------------------------------*  05950000
                                                                     */ 05960000
NODE(NNNN) AUTH=(DEVICE=YES, /* Authority at this node          ohwnc*/ 05970000
                             /* Device Authority at this node   ohwnc*/ 05980000
                             /*     (pre-SP311=DEVAUTH/NODEVATH)     */ 05985000
           JOB=YES,          /* Job Authority at this node      ohwnc*/ 05990000
                             /*     (pre-SP311=JOBAUTH/NOJOBATH)     */ 06000000
           NET=NO,           /* No Network Auth at this node    ohwnc*/ 06005000
                             /*     (pre-SP311=NONETATH/NETAUTH)     */ 06006000
           SYSTEM=YES),      /* System Authority at this node   ohwnc*/ 06010000
                             /*     (pre-SP311=SYSAUTH/NOSYSATH)     */ 06015000
         COMPACT=0,          /* No compaction                    hwnc*/ 06016000
         DIRECT=NO,          /* This node should always be        ownc*/ 06017000
                             /*  directly attached (adjacent)        */ 06018000
                             /*     (added ZOS170)                   */ 06019000
         ENDNODE=NO,         /* This node is eligible for store  ownc*/ 06020000
                             /*  and forward operations              */ 06022000
         HOLD=NONE,          /* Whether or not to hold jobs     ohwnc*/ 06025000
                             /*  that are received at this node      */ 06030000
         LINE=¢¢¢¢,          /* Line dedicated to session       ohwnc*/ 06035500
                             /*     (added SP410)                    */ 06036000
         LOGON=1,            /* LOGON DCT to be used by this    ohwnc*/ 06036100
                             /*     session (added OS240)            */ 06036200
         LOGMODE=,           /* Logon mode table entry name     ohwnc*/ 06036500
                             /*     (added SP410)                    */ 06037000
         NAME=¢¢¢¢¢¢¢¢,      /* Node name                        ownc*/ 06037100
         PASSWORD=(SEND=¢¢¢¢¢¢¢¢,VERIFY=¢¢¢¢¢¢¢¢),                      06037300
                             /* 1-8 char. security passwords    ohwnc*/ 06037400
         PATHMGR=YES,        /* Connection to adjacent node      ownc*/ 06037500
                             /*     (added SP410)                    */ 06038000
         PENCRYPT=NO,        /* Password encryption option      ohwnc*/ 06038100
                             /*     (added in SP313)                 */ 06038200
         PRIVATE=NO,         /* Broadcast connection to node     ownc*/ 06038500
                             /*     (added SP410)                    */ 06039000
         RECEIVE=BOTH,       /* Receive both jobs and sysout    ohwnc*/ 06040000
         REST=0,             /* Nodal Resistance                ohwnc*/ 06041000
         SENTREST=ACCEPT,    /* Use partial resistance from     ohwnc*/ 06042000
                             /*  this node during signon             */ 06043000
                             /*     (added by OY52946)          ohwnc*/ 06044000
         SIGNON=COMPAT,      /* Use compat or secure signon          */ 06044200
                             /*     protocol                    ohwnc*/ 06044400
                             /*     (added ZOS170)                   */ 06044600
         SUBNET=$$$$$$$$,    /* Subnet name which includes       ownc*/ 06045000
                             /*     node  (added SP410)              */ 06046000
         TRACE=NO,           /* Specifies tracing connection    ohwnc*/ 06047000
                             /*     (added SP410)                    */ 06048000
         TRANSMIT=BOTH,      /* Transmit both jobs and sysout   ohwnc*/ 06049000
/*       BSC                 /* No SNA Capability                hwnc*/ 06050000
                             /*     (SP311=BSC/SNA deleted)          */ 06055000
/*                                                                   */ 06060000
/*                                                                   */ 06070000
/*********************************************************************/ 06080000
/*                            *--------------------------------------*  06090000
                              |    Offload Data Set                  |  06100000
                              *--------------------------------------*  06110000
                                                                     */ 06120000
                             /* Defines a logical offload device     */ 06130000
OFFLOAD1 DSN=¢¢,             /* Up to 44 char. data set name    ohwnc*/ 06150000
         ARCHIVE=ONE,        /* Hold as archived on ONE or ALL       */ 06160000
                             /*  offload devices                ohwnc*/ 06170000
                             /*     (added OS110)                    */ 06180000
         CRTIME=RESET,       /* Set new create time for         ohwnc*/ 06185000
                             /*  reloaded jobs                       */ 06190000
                             /*     (added ZOS170)                   */ 06195000
         LABEL=SL,           /* Type of label processing done   ohwnc*/ 06200000
                             /*      (added in APAR OZ92050)         */ 06210000
         PROTECT=NO,         /* Whether ds has SAF protection   ohwnc*/ 06220000
                             /*      (added in APAR OZ92050)         */ 06230000
         RETPD=¢¢¢¢,         /* DS retention period (in days)   ohwnc*/ 06240000
                             /*      (added in APAR OZ92050)         */ 06250000
         UNIT=(¢¢¢¢¢¢¢¢,     /* Unit addr/dev type/group name   ohwnc*/ 06251000
                             /*      (added in APAR OZ92050)         */ 06252000
                        1),  /* No. of devices allocated to ds  ohwnc*/ 06252500
                             /*      (pre-OZ92050 UNITCT=)           */ 06253000
         VALIDATE=YES,       /* Validate header record          ohwnc*/ 06253200
                             /*     (added OS110)                    */ 06253800
         VOLS=¢¢?           /* Device volume number            hownc*/ 06255000
                             /*      (added in SP420)                */ 06256000
/*                                                                   */ 06260000
/*                                                                   */ 06270000
/*********************************************************************/ 06280000
/*                            *--------------------------------------*  06290000
                              |    Offload Job Receiver              |  06300000
                              *--------------------------------------*  06320000
                                                                     */ 06330000
OFF1.JR  CLASS=,             /* Reload All Classes              ohwnc*/ 06340000
         CREATOR=,           /* Reload All Users                ohwnc*/ 06342000
                             /*      (added in SP420)                */ 06345000
         HOLD=,              /* Reload Held & Non-Held          ohwnc*/ 06350000
         JOBNAME=,           /* Reload Any Job Name             ohwnc*/ 06360000
                             /* Modify Jobs on Reload                */ 06370000
         MOD=(CLASS=,        /* - Don't Change Class            ohwnc*/ 06380000
              HOLD=,         /* - Don't Change Hold             ohwnc*/ 06390000
              ROUTECDE=,     /* - Don't Change Dest'n           ohwnc*/ 06400000
              SYSAFF=),      /* - Don't Change SysAff.          ohwnc*/ 06410000
         NOTIFY=NO,          /* Don't Notify on Reload          ohwnc*/ 06420000
         RANGE=J1-2147483647,                                           06430000
                             /* Reload All Job Numbers          ohwnc*/ 06435000
         ROUTECDE=(),        /* Reload Jobs w/Any Dest          ohwnc*/ 06440000
                             /*   (modified SP410)                   */ 06445000
         START=YES,          /* Started with $S OFFLOAD          hwnc*/ 06450000
         SYSAFF=(),          /* Reload Jobs with Any Aff        ohwnc*/ 06460000
         WS=(CLASS/)         /* Job Selection Criteria          ohwnc*/ 06470000
/*                                                                   */ 06480000
/*                                                                   */ 06490000
/*********************************************************************/ 06500000
/*                            *--------------------------------------*  06510000
                              |    Offload Job Transmitter           |  06520000
                              *--------------------------------------*  06540000
                                                                     */ 06550000
OFF1.JT  CLASS=,             /* Select No Classes               ohwnc*/ 06560000
         CREATOR=,           /* Select Any users                ohwnc*/ 06565000
         DISP=DELETE,        /* Purge after Offload             ohwnc*/ 06570000
         HOLD=,              /* Select Held & Non-Held          ohwnc*/ 06580000
         JOBNAME=,           /* Select Any Job Name             ohwnc*/ 06590000
         NOTIFY=NO,          /* Don't Notify on Offld.          ohwnc*/ 06600000
         RANGE=J1-65534,     /* Select All Job Numbers          ohwnc*/ 06610000
         ROUTECDE=(),        /* Select Jobs w/Any Dest          ohwnc*/ 06620000
                             /*   (modified SP410)                   */ 06625000
         START=YES,          /* Started with $S OFFLOAD          hwnc*/ 06630000
         SYSAFF=(),          /* Select Jobs with Any Aff        ohwnc*/ 06640000
         VOLUME=(),          /* Select Any Spool Volume         ohwnc*/ 06650000
         WS=(CLASS/)         /* Job Selection Criteria          ohwnc*/ 06660000
/*                                                                   */ 06670000
/*                                                                   */ 06680000
/*********************************************************************/ 06690000
/*                            *--------------------------------------*  06700000
                              |    Offload Sysout Receiver           |  06710000
                              *--------------------------------------*  06730000
                                                                     */ 06740000
OFF1.SR  BURST=,             /* Select Any Burst Setting        ohwnc*/ 06750000
         CREATOR=,           /* Select Any Users                ohwnc*/ 06756000
                             /*      (added in SP420)                */ 06762000
         FCB=,               /* Select Any FCB                  ohwnc*/ 06770000
         FLASH=,             /* Select Any/No Flash             ohwnc*/ 06780000
         FORMS=,             /* Select Any FORMS ID             ohwnc*/ 06790000
         HOLD=,              /* Select Held/Non-Hld Jobs         ohwnc*/ 06800000
         JOBNAME=,           /* Select Any Job Name             ohwnc*/ 06810000
         MOD=(BURST=,        /* - Don't Change Burst            ohwnc*/ 06810300
              FCB=,          /* - Don't Change FCB              ohwnc*/ 06810600
              FLASH=,        /* - Don't Change Flash            ohwnc*/ 06810900
              FORMS=,        /* - Don't Change Forms            ohwnc*/ 06811200
              HOLD=,         /* - Don't Change Hold             ohwnc*/ 06811500
              OUTDISP=,      /* - Output disposition change     ohwnc*/ 06811800
                             /*   (pre SP410 DSHOLD=)                */ 06812100
              PRMODE=,       /* - Don't Change PRMODE           ohwnc*/ 06812400
              QUEUE=,        /* - Don't Change Class            ohwnc*/ 06812700
              ROUTECDE=,     /* - Don't Change Destn            ohwnc*/ 06813000
              UCS=,          /* - Don't Change UCS              ohwnc*/ 06813300
              WRITER=),      /* - Don't Change writer           ohwnc*/ 06813600
         NOTIFY=NO,          /* Don't Notify on reload          ohwnc*/ 06813900
         OUTDISP=(W,H,K,L),  /* Specifies output disposition    ohwnc*/ 06815000
                             /*   (pre SP410 was DS=ANY)             */ 06820000
                             /*   (added SP410)                      */ 06822000
                             /* Modify Following on Reload      ohwnc*/ 06825000
         PRMODE=(),          /* Select Any PRMODE               ohwnc*/ 06950000
         QUEUE=,             /* Select Any Sysout Class         ohwnc*/ 06960000
         RANGE=J1-2147483647,                                           06970000
                             /* Reload All Job Numbers          ohwnc*/ 06975000
         ROUTECDE=(),        /* Select Jobs w/Any Dest          ohwnc*/ 06980000
                             /*   (modified SP410)                   */ 06985000
         START=YES,          /* Started with $S OFFLOAD          hwnc*/ 06990000
         UCS=,               /* Select any UCS                  ohwnc*/ 07000000
         WRITER=,            /* Select any Writer               ohwnc*/ 07010000
         WS=(Q,OUTDISP/)     /* Job Selection Criteria          ohwnc*/ 07020000
                             /* - Output disposition match           */ 07032000
                             /*     (added SP410)                    */ 07035000
/*                                                                   */ 07040000
/*                                                                   */ 07050000
/*********************************************************************/ 07060000
/*                            *--------------------------------------*  07070000
                              |    Offload Sysout Transmitter        |  07080000
                              *--------------------------------------*  07100000
                                                                     */ 07110000
OFF1.ST  BURST=,             /* Select Any Burst Set'g          ohwnc*/ 07120000
         CREATOR=,           /* Select Any Users                ohwnc*/ 07122000
                             /*      (added in SP420)                */ 07125000
         DISP=DELETE,        /* Purge after Offload             ohwnc*/ 07130000
         FCB=,               /* Select Any FCB                  ohwnc*/ 07150000
         FLASH=,             /* Select Any/No Flash             ohwnc*/ 07160000
         FORMS=,             /* Select Any FORMS ID             ohwnc*/ 07170000
         HOLD=,              /* Selct Held&Non-Hld Jobs         ohwnc*/ 07180000
         JOBNAME=,           /* Select Any Job Name             ohwnc*/ 07190000
         LIMIT=(0-*),        /* Select Any # Lines              ohwnc*/ 07200000
         NOTIFY=NO,          /* Don't Notify on Offld.          ohwnc*/ 07210000
         OUTDISP=(W,K),      /* Specifies output disposition    ohwnc*/ 07212000
                             /*   (pre SP410 DS=)                    */ 07215000
         PLIM=(0-*),         /* Select Any # Pages              ohwnc*/ 07220000
         PRMODE=(),          /* Select Any PRMODE               ohwnc*/ 07230000
         QUEUE=,             /* Select Any Sysout Class         ohwnc*/ 07240000
         RANGE=J1-65534,     /* Select All Job Numbers          ohwnc*/ 07250000
         ROUTECDE=(),        /* Select Jobs w/Any Dest          ohwnc*/ 07260000
                             /*   (modified SP410)                   */ 07265000
         START=YES,          /* Started with $S OFFLOAD          hwnc*/ 07270000
         UCS=,               /* Select any UCS                  ohwnc*/ 07280000
         VOLUME=(),          /* Select Any Spool Volume         ohwnc*/ 07290000
         WRITER=,            /* Select any Writer               ohwnc*/ 07300000
         WS=(Q,OUTDISP/)     /* Job Selection Criteria          ohwnc*/ 07310000
                             /* - Output disposition match      ohwnc*/ 07323000
                             /*    (added SP410)                     */ 07326000
/*                                                                   */ 07330000
/*                                                                   */ 07340000
/*********************************************************************/ 07341000
/*                            *--------------------------------------*  07342000
                              |    JES2 Options Definition           |  07343000
                              *--------------------------------------*  07345000
                                                                     */ 07346000
OPTSDEF  LIST=NO,            /* Do not copy following init.      hwnc*/ 07347000
                             /*   stmts. to HARDCOPY console         */ 07347200
         LOG=YES,            /* Copy following init stmts to     hwnc*/ 07347400
                             /*   printer defined on HASPLIST        */ 07347600
         SPOOL=NOVALIDATE    /* Do not validate track group map    nc*/ 07347800
                             /*--------------------------------------*/ 07348000
                             /* The following options can only       */ 07348200
                             /* be overridden when the JES2          */ 07348400
                             /* initialization process is in         */ 07348600
                             /* CONSOLE mode.                        */ 07348700
                             /*--------------------------------------*/ 07348800
/*       CKPTOPT=HIGHEST     /* Use highest checkpoint to        hwnc*/ 07350000
                             /*      restart                         */ 07350300
/*       CONSOLE=YES         /* Prompt for more init. stmts.     hwnc*/ 07350400
/*       LISTOPT=NO          /* Support LIST start option        hwnc*/ 07351200
/*       LOGOPT=YES          /* Support LOG start option         hwnc*/ 07353900
/*       RECONFIG=YES        /* Allow op to specify RECONFIG     hwnc*/ 07354800
/*       REQMSG=YES          /* Display HASP400 message          hwnc*/ 07355700
/*                                                                   */ 07356600
/*                                                                   */ 07357500
/*********************************************************************/ 07358400
/*                            *--------------------------------------*  07360000
                              |    Output Class Attributes           |  07370000
                              *--------------------------------------*  07390000
                                                                     */ 07400000
OUTCLASS(A) BLNKTRNC=YES,    /* Truncate trailing blanks          wnc*/ 07410000
         OUTDISP=(WRITE,WRITE),                                         07430000
                             /* SYSOUT disposition normal/       ownc*/ 07440000
                             /*     abnormal job termination         */ 07450000
                             /*     (pre SP410 HOLD=,CONDPURG=)      */ 07460000
         OUTPUT=PRINT,       /* Print class                       wnc*/ 07490000
         TRKCELL=YES         /* TRACK-CELL this class             wnc*/ 07510000
/*                                                                   */ 07530000
/*                                                                   */ 07540000
/*********************************************************************/ 07550000
/*                            *--------------------------------------*  07560000
                              |    Output Characteristics            |  07570000
                              *--------------------------------------*  07580000
                                                                     */ 07590000
OUTDEF   BRODCAST=NO,        /* Whether shared broadcasting        oc*/ 07600000
                             /*  is in use by this complex           */ 07610000
         COPIES=255,         /* Max. # of Copies Allowed        ohwnc*/ 07630000
         DMNDSET=NO,         /* No Demand Setup                   wnc*/ 07650000
         JOENUM=¢¢,  @@      /* Max. # of JOEs                     oc*/ 07670000
         JOEWARN=80,         /* Warning Threshold %             ohwnc*/ 07710000
         OUTTIME=CREATE,     /* Specifies when JOE time saved   ohwnc*/ 07722000
                             /*     (added SP410)                    */ 07725000
         PRTYHIGH=255,       /* Ceiling for PRTY Aging          ohwnc*/ 07730000
         PRTYLOW=0,          /* Floor for PRTY Aging            ohwnc*/ 07750000
         PRTYOUT=NO,         /* No PRTY= on // OUTPUT           ohwnc*/ 07770000
         PRYORATE=0,         /* Don't priority age              ohwnc*/ 07776000
         SEGLIM=100,         /* Max. number output segments      ownc*/ 07782000
                             /*     (added SP410)                    */ 07785000
         STDFORM=STD,        /* Default Forms ID                  wnc*/ 07790000
         USERSET=NO          /* No User Demand-Setup              wnc*/ 07810000
/*                                                                   */ 07830000
/*********************************************************************/ 07840000
/*                            *--------------------------------------*  07850000
                              |    Default Output Priority           |  07860000
                              *--------------------------------------*  07870000
                                                                     */ 07880000
                             /* based on records (line mode)         */ 07890000
                             /*         or pages (page mode)         */ 07900000
OUTPRTY(1) PRIORITY=144,     /* Output PRTY is 144 if           ohwnc*/ 07910000
         RECORD=2000,        /*  < 2000 records (LINE)          ohwnc*/ 07920000
         PAGE=50             /*  or < 50 pages (PAGE)           ohwnc*/ 07930000
OUTPRTY(2) PRIORITY=128,     /* Output PRTY is 128 if           ohwnc*/ 07970000
         RECORD=5000,        /*  < 5000 records (LINE)          ohwnc*/ 07980000
         PAGE=100            /*  or < 100 pages (PAGE)          ohwnc*/ 07990000
                             /* etc.                                 */ 08030000
/*                                                                   */ 08040000
/*                                                                   */ 08050000
/*********************************************************************/ 08060000
/*                            *--------------------------------------*  08070000
                              |    JES2 Processor Numbers            |  08080000
                              *--------------------------------------*  08090000
                                                                     */ 08100000
PCEDEF   CNVTNUM=2,          /* Number of Converter PCEs         hwnc*/ 08110000
         OUTNUM=2,           /* Number of Output PCEs            hwnc*/ 08130000
         PSONUM=2,           /* Number of PSO PCEs               hwnc*/ 08150000
         PURGENUM=2,         /* Number of Purge PCEs             hwnc*/ 08170000
         SPINNUM=3,          /* Number of Spin PCEs              hwnc*/ 08180100
                             /*     (added in SP420)                 */ 08180400
         STACNUM=2           /* Number of STATUS/CANCEL PCEs     hwnc*/ 08181000
                             /*     (added in SP313)                 */ 08184000
/*                                                                   */ 08190000
/*                                                                   */ 08200000
/*********************************************************************/ 08210000
/*                            *--------------------------------------*  08220000
                              |    Printing Characteristics          |  08230000
                              *--------------------------------------*  08240000
                                                                     */ 08250000
PRINTDEF CCWNUM=¢¢,          /* # CCWs / Print Buffer             wnc*/ 08260000
         DBLBUFR=YES,        /* Double Buffer Lcl Prts            wnc*/ 08280000
         FCB=6,              /* Initial FCB Loaded                wnc*/ 08300000
         LINECT=61,          /* 61 Lines/Page                   ohwnc*/ 08320000
         NIFCB=****,         /* No 3800 FCB Loaded                wnc*/ 08340000
         NIFLASH=****,       /* No 3800 Flash Loaded              wnc*/ 08360000
                             /* NOTE: the values for NIFCB= and      */ 08380000
                             /*       NIFLASH=  CANNOT be null or    */ 08390000
                             /*       asterisks (as shown here).     */ 08400000
                             /*       If the statements are not      */ 08410000
                             /*       coded at all, then the default */ 08420000
                             /*       will be asterisks. The         */ 08430000
                             /*       statements are shown this way  */ 08440000
                             /*       only to include the default    */ 08450000
                             /*       values here.                   */ 08460000
         NIUCS=GF10,         /* 3800 Char. Set Loaded             wnc*/ 08470000
         RDBLBUFR=NO,        /* Single Buffer Rmt Prts            wnc*/ 08490000
         SEPPAGE=(LOCAL=DOUBLE,                                         08510000
                             /* Separator page defaults         ohwnc*/ 08520000
                             /*     (added SP410)                    */ 08525000
                             /*   Local printer  (pre SP410 SEPLINE) */ 08530000
             REMOTE=HALF),   /*   Remote printer (pre SP410 RSEPLINE)*/ 08540000
         TRANS=YES,          /* PN-Xlate for 1403/Rm.Pr           wnc*/ 08550000
         UCS=0               /* Bypass UCS-Loading                wnc*/ 08570000
/*                                                                   */ 08590000
/*                                                                   */ 08600000
/*********************************************************************/ 08600200
/*                            *--------------------------------------*  08600900
                              |    Dynamic PROCLIB definition        |  08601600
                              *--------------------------------------*  08602300
                                                                     */ 08603000
PROCLIB(¢¢¢¢¢¢¢¢) DD(nn)=(DSNAME=¢¢, /* Concatenated DD num   aorhwnc*/ 08603700
                                     /* Up to 44 character      ohwnc*/ 08604400
                                     /* data set name           ohwnc*/ 08605100
                     VOLSER=¢¢¢¢¢¢,  /* Volser for data set     ohwnc*/ 08605800
                     UNIT=¢¢¢¢),     /* Unit info for data set  ohwnc*/ 08606500
                  UNCONDITIONAL      /* Create PROCLIB if error ohwnc*/ 08607200
/*                                                                   */ 08607900
/*                                                                   */ 08608600
/*********************************************************************/ 08610000
/*                            *--------------------------------------*  08620000
                              |    Local Printers                    |  08630000
                              *--------------------------------------*  08640000
                                                                     */ 08650000
                             /* Alternate name for PRTn:             */ 08660000
                             /*   PRINTERn                     aohwnc*/ 08670000
PRT(nnnn) CKPTLINE=0,        /* Max lines in a logical page     ohwnc*/ 08700000
         CKPTPAGE=100,       /* Max seconds before a CKPT       ohwnc*/ 08710000
         Queue=AJ,           /* Job class that can be chosen    ohwnc*/ 08711000
                             /*     (Alias for CLASS is QUEUE)       */ 08712000
         CREATOR=,           /* User to choose                  ohwnc*/ 08715000
                             /*      (added in SP420)                */ 08720000
         DEVFCB=¢¢¢¢,        /* Specifies printer default FCB   ohwnc*/ 08721000
                             /*     (added in SP313)                 */ 08724000
         FCB=¢¢¢¢,           /* Forms control buffer image      ohwnc*/ 08730000
                             /*     (Alias for FCB is C)             */ 08740000
         FORMS=¢¢¢¢,         /* Form identifier                 ohwnc*/ 08750000
         HONORTRC=YES,       /* TRC specification on OUTPUT JCL ohwnc*/ 08751000
                             /* statement will be honored            */ 08754000
         JOBNAME=,           /* Job name to choose              ohwnc*/ 08760000
         LIMIT=0-*,          /* Amount of output (in records)   ohwnc*/ 08770000
         MODE=JES,           /* PRT is started in JES mode      ohwnc*/ 08775000
         PAUSE=NO,           /* PRT won't pause between         ohwnc*/ 08780000
                             /* datasets.                            */ 08785000
                             /*     (modified SP420)                 */ 08790000
         PRMODE=LINE,        /* Process mode                    ohwnc*/ 08792000
         RANGE=J?¢¢¢¢,      /* Job range to choose from        ohwnc*/ 08794000
         ROUTECDE=LOCAL,     /* Route code assigned to prt      ohwnc*/ 08796000
                             /*     (modified SP410)                 */ 08800000
         SEP=YES,            /* Separator pages printed         ohwnc*/ 08805000
                             /*     (modified SP420)                 */ 08810000
/*       SPACE=,             /* SPACING FOR PRINTER TO USE          o*/ 08815000
                             /*      (added in SP420)                */ 08820000
         SEPDS=NO,           /* No separator pages between      ohwnc*/ 08880000
                             /* output groups within same job        */ 08885000
                             /*     (modified SP420)                 */ 08890000
         SETUP=HALT,         /* Specifies optional printer      ohwnc*/ 08890200
                             /* halt for setup                       */ 08890500
                             /*     (added in SP313)                 */ 08890800
         START=YES,          /* printer comes up started         hwnc*/ 08891100
                             /*     (modified SP420)                 */ 08891400
         TRACE=NO,           /* No tracing on printer           ohwnc*/ 08892000
                             /* output groups within same job        */ 08895000
         TRKCELL=NO,         /* Records despooled 1 at a time   ohwnc*/ 08895300
                             /*     (added by APAR OY01334)          */ 08895600
         TRANS=DEFAULT,      /* Use PRINTDEF default for        ohwnc*/ 08896000
                             /* translating line of print            */ 08897000
                             /*     (added SP430)                    */ 08898000
         UCS=¢¢¢¢,           /* Print Train                     ohwnc*/ 08900000
                             /* For 3800, character arrangement table*/ 08910000
                             /*     (Alias for UCS is T)             */ 08920000
         UCSVERFY=NO,        /* No UCS verification             ohwnc*/ 08922000
                             /*     (added in SP420)                 */ 08925000
         UNIT=¢¢¢¢,          /* Unit address of device          ohwnc*/ 08930000
         VOLUME=(),          /* VOLS that jobs are chosen from  ohwnc*/ 08940000
         WRITER=,            /* Writer name assigned to PRT     ohwnc*/ 08960000
         WS=(W,R,Q,PRM,LIM/F,UCS,FCB)                                   08970000
                             /* Work selection criteria         ohwnc*/ 08980000
                             /*                                      */ 09010000
/*                            *--------------------------------------*  09010200
                              |    3800 Printer statement - subset   |  09010400
                              |      of important parameters for     |  09010600
                              |      this device type                |  09010800
                              *--------------------------------------*  09011000
                                                                     */ 09011100
PRT(NNNN)  QUEUE=AJ,         /* Job class that can be chosen    ohwnc*/ 09011400
                             /*     (Alias for CLASS is QUEUE)       */ 09011800
         DEVFCB=¢¢¢¢,        /* Specifies printer default FCB   ohwnc*/ 09012000
                             /*     (added in SP313)                 */ 09012200
         FCB=¢¢¢¢,           /* Forms control buffer image      ohwnc*/ 09012600
                             /*     (Alias for FCB is C)             */ 09012800
         MODE=JES,           /* PRT is started in JES mode      ohwnc*/ 09013500
         UNIT=¢¢¢¢,          /* Unit address of device          ohwnc*/ 09014600
                             /*                                      */ 09018100
                             /* The following parameters are         */ 09020000
                             /* honored for 3800 defined printers.   */ 09030000
                             /*                                      */ 09040000
                             /*                                      */ 09050000
         BURST=NO,           /* Output is not burst             ohwnc*/ 09052000
                             /*     (modified SP420)                 */ 09054000
         DEVFLASH=¢¢¢¢,      /* Default forms overlay           ohwnc*/ 09056000
                             /*     (added by APAR OY67855)          */ 09058000
                             /*   DEVFLASH and FLASH are             */ 09060000
                             /*   synonymous at initialization       */ 09062000
                             /*   but different for $T               */ 09064000
         FLASH=¢¢¢¢,         /* Initial forms overlay           ohwnc*/ 09070000
                             /*     (alias for FLASH is O)           */ 09080000
         MARK=NO,            /* No mark on sep page edge(MARK)  ohwnc*/ 09090000
                             /*     (modified SP420)                 */ 09092000
/*       MODIFY=,            /* 3800 printer copy identification     */ 09094000
                             /* module                              o*/ 09096000
                             /*      (added in SP420)                */ 09098000
         SEPCHARS=DEFAULT    /* Default char. table (SEPEXIST)   hwnc*/ 09100000
                             /*     (modified SP420)                 */ 09105000
                             /*                                      */ 09150000
/*                            *--------------------------------------*  09150100
                              |    FSS Printer statement - subset    |  09150200
                              |      of important parameters for     |  09150300
                              |      mode=FSS devices                |  09150400
                              *--------------------------------------*  09150500
                                                                     */ 09150600
                             /*                                      */ 09151000
PRT(NNNN)  QUEUE=BC,         /* Job class that can be chosen    ohwnc*/ 09151500
                             /*     (Alias for CLASS is QUEUE)       */ 09152000
         CKPTMODE=SEC,       /* Max seconds before a CKPT       ohwnc*/ 09152500
                             /*     (Added in SP420)                 */ 09152600
         CKPTSEC=0,          /* No. of seconds before a CKPT    ohwnc*/ 09153000
         COPYMARK=DATASET,   /* Level of separation indicator   ohwnc*/ 09153200
                             /* markings                             */ 09153500
                             /*      (Added IN SP410 and via APAR    */ 09153600
         DEVFCB=¢¢¢¢,        /* Specifies printer default FCB   ohwnc*/ 09154000
                             /*     (added in SP313)                 */ 09154200
         FSS=¢¢¢¢¢¢¢¢,       /* Name of FSS that supports prt   ohwnc*/ 09154500
         FCB=¢¢¢¢,           /* Forms control buffer image      ohwnc*/ 09156000
                             /*     (Alias for FCB is C)             */ 09156500
         MODE=FSS,           /* PRT is started in FSS mode      ohwnc*/ 09157000
         NPRO=300,           /* Non process run out time (secs) ohwnc*/ 09280000
         PLIM=0-*,           /* Page limits for output          ohwnc*/ 09320000
         PRESELCT=YES,       /* 3800 won't preselect output     ohwnc*/ 09330000
                             /*     (added SP420)                    */ 09340000
         SETUP=HALT,         /* Specifies optional printer      ohwnc*/ 09350000
                             /* halt for setup                       */ 09355000
                             /*     (added in SP313)                 */ 09360000
         TRANS=DEFAULT,      /* For 3800 default is no for      ohwnc*/ 09361000
                             /* translating line of print            */ 09362000
                             /*     (added SP430)                    */ 09363000
         UNIT=¢¢¢¢           /* Unit address of device          ohwnc*/ 09366000
/*                                                                   */ 09370000
/*********************************************************************/ 09380000
/*                            *--------------------------------------*  09390000
                              |    Punch Parameters                  |  09400000
                              *--------------------------------------*  09410000
                                                                     */ 09420000
PUNCHDEF CCWNUM=¢¢,          /* # CCWs / Punch Buffer             wnc*/ 09430000
         DBLBUFR=NO,         /* Single Buffer Lcl Puns            wnc*/ 09450000
         RDBLBUFR=NO         /* Single Buffer Rmt Puns            wnc*/ 09470000
/*                                                                   */ 09490000
/*                                                                   */ 09500000
/*********************************************************************/ 09510000
/*                            *--------------------------------------*  09520000
                              |    Local Punches                     |  09530000
                              *--------------------------------------*  09540000
                                                                     */ 09550000
                             /* Alternate name for PUNnn: PUNCHnn    */ 09560000
PUN(nn)  CKPTLINE=100,       /* No. of cards to punch per page  ohwnc*/ 09570000
         CKPTPAGE=1,         /* No. of pages pun'd before CKPT  ohwnc*/ 09580000
         Queue=BK,           /* Output class processed by PUN   ohwnc*/ 09582000
                             /*     (alias for QUEUE is CLASS)       */ 09584000
                             /*     (modified in SP420)              */ 09586000
         CREATOR=,           /* User to choose                  ohwnc*/ 09590000
                             /*      (added in SP420)                */ 09600000
         FORMS=¢¢¢¢,         /* Forms identifier loaded in PUN  ohwnc*/ 09620000
         JOBNAME=,           /* Jobs selected by this PUN       ohwnc*/ 09630000
         LIMIT=0-*,          /* Range for output record no.     ohwnc*/ 09640000
         PAUSE=NO,           /* No pausing between DS groups    ohwnc*/ 09670000
         PRMODE=(LINE),      /* Process mode                    ohwnc*/ 09690000
         RANGE=J?¢¢¢¢,      /* Job id range to select from     ohwnc*/ 09700000
         ROUTECDE=LOCAL,     /* Route code(s) assigned to PUNn  ohwnc*/ 09720000
                             /*     (modified SP410)                 */ 09725000
         SEP=YES,            /* Separator cards for ds groups   ohwnc*/ 09726000
                             /*     (modified in SP420)              */ 09727000
         SEPDS=NO,           /* No sep. for ds's within job     ohwnc*/ 09730000
         SETUP=HALT,         /* Specifies optional punch        ohwnc*/ 09730500
                             /* halt for setup                       */ 09731000
                             /*     (added in SP313)                 */ 09731500
         START=YES,          /* PUN1 comes up started            hwnc*/ 09732000
                             /*     (modified SP420)                 */ 09735000
         TRACE=YES,          /* Allow tracing                   ohwnc*/ 09736000
         UNIT=¢¢¢¢,          /* Unit address of PUNnn           ohwnc*/ 09740000
         VOLUME=(),          /* VOLIDS of jobs to be punched    ohwnc*/ 09750000
         WRITER=,            /* Writer name assigned to PUNn    ohwnc*/ 09770000
         WS=(W,R,Q,PRM,LIM/F)                                           09780000
                             /* Work selection criterion        ohwnc*/ 09785000
/*                                                                   */ 09810000
/*                                                                   */ 09820000
/*********************************************************************/ 09830000
/*                            *--------------------------------------*  09840000
                              |    Local Readers                     |  09850000
                              *--------------------------------------*  09860000
                                                                     */ 09870000
                             /* Alternate name for RDRnn: READERnn   */ 09880000
RDR(NN)   AUTH=(JOB=NO,      /* Allow job cmds                   ownc*/ 09890000
                DEVICE=NO,   /* Allow device cmds                ownc*/ 09900000
                SYSTEM=NO),  /* Allow system cmds                ownc*/ 09902000
                             /*      (pre-SP420 AUTH=0 for all 3     */ 09904000
                             /*       subparameters)                 */ 09906000
         CLASS=A,            /* Default job class               ohwnc*/ 09910000
         HOLD=NO,            /* Jobs not held after conv.(HOLD) ohwnc*/ 09920000
         MSGCLASS=A,         /* Default message class           ohwnc*/ 09930000
         PRIOINC=0,          /* Increment to job's select prio.  hwnc*/ 09960000
         PRIOLIM=15,         /* Maximum selection priority       hwnc*/ 09970000
         PRTDEST=LOCAL,      /* Default print destination       ohwnc*/ 09972000
                             /*     (added in SP420)                 */ 09975000
         PUNDEST=LOCAL,      /* Default punch destination       ohwnc*/ 09980000
                             /*     (added in SP420)                 */ 09990000
         START=NO,           /* RDR doesn't come up started      hwnc*/ 10020000
         TRACE=NO,           /* No tracing on punch             ohwnc*/ 10025000
         UNIT=¢¢¢¢,          /* Unit address of reader          ohwnc*/ 10030000
         XEQDEST=¢¢          /* Default execution node          ohwnc*/ 10040000
/*                                                                   */ 10050000
/*********************************************************************/ 10060000
/*                            *--------------------------------------*  10070000
                              |    Recovery Options                  |  10080000
                              *--------------------------------------*  10090000
                                                                     */ 10100000
                             /* Error Type                           */ 10110000
                             /*     (pre-SP311 RECVOPTS TYPE=)          10115000
RECVOPTS(*) COUNT=2,         /* Recovery options for all        ohwnc*/ 10130000
                             /* Number of occurrences to count       */ 10400000
                             /* NOTE:  For IMAGE and OFFLOAD, COUNT= */ 10410000
                             /*        defaults to 1.                */ 10420000
         INTERVAL=24         /* Interval (in hours) in which    ohwnc*/ 10440000
                             /* errors are counted                   */ 10450000
/*                                                                   */ 10460200
/*                                                                   */ 10460400
/*********************************************************************/ 10460600
/*                            *--------------------------------------*  10460800
                              |    Console Display Command Routings  |  10461000
                              |          Definition                  |  10461200
                              *--------------------------------------*  10461400
                                                                     */ 10461600
REDIRECT(¢¢¢¢? DA=¢¢,       /* Entry console of redirected    aohwnc*/ 10461800
                             /*  display commands                    */ 10462000
                             /*    (added SP410)                     */ 10462200
                             /* The target console is identified in  */ 10462400
                             /*  the following operands:             */ 10462600
                             /* DA - Display active jobs        ohwnc*/ 10462800
        DCONNECT=¢¢,         /* Disp JES2 network connections   ohwnc*/ 10463000
        DEF=¢¢,              /* Disp JES2 parameter definitions ohwnc*/ 10463100
        DF=¢¢,               /* Display forms queue             ohwnc*/ 10463200
        DI=¢¢,               /* Display initiators              ohwnc*/ 10463600
        DJ=¢¢,               /* Display job,stc,tsu info        ohwnc*/ 10464000
        DN=¢¢,               /* Display queued jobs             ohwnc*/ 10464400
        DNODE=¢¢,            /* Display NJE nodes               ohwnc*/ 10464600
        DQ=¢¢,               /* Display number of queued jobs   ohwnc*/ 10464800
        DSPL=¢¢,             /* Display SPOOL columes           ohwnc*/ 10465200
        DU=¢¢,               /* Display units                   ohwnc*/ 10465400
        LJ=¢¢,               /* Display job output info         ohwnc*/ 10465500
        LS=¢¢,               /* Display STC output info         ohwnc*/ 10465600
        LT=¢¢                /* Display TSU output info         ohwnc*/ 10466000
/*                                                                   */ 10470000
/*                                                                   */ 10480000
/*********************************************************************/ 10481000
/*                            *--------------------------------------*  10482000
                              |    Request job ID job options        |  10483000
                              *--------------------------------------*  10484000
                                                                     */ 10485000
REQJOBID  JESLOG=(NOSPIN)    /* Don't spin JESLOG data sets     ohwnc*/ 10486000
/*                                                                   */ 10487000
/*                                                                   */ 10488000
/*********************************************************************/ 10490000
/*                            *--------------------------------------*  10500000
                              |    Remote Parameters                 |  10510000
                              *--------------------------------------*  10520000
                                                                     *  10530000
                              *--------------------------------------*  10540000
                              | RMT1 defines a BSC remote terminal   |  10550000
                              | A RMTnnnn statement with no operands |  10560000
                              | defaults to a BSC remote terminal.   |  10570000
                              *--------------------------------------*  10580000
                                                                     */ 10585000
                             /* BSC remote terminal                  */ 10590000
RMT(1)   DEVTYPE=2770,       /* Terminal type                  aohwnc*/ 10592000
                             /*     (pre-SP311=2770)                 */ 10594000
         BLOCK=YES,          /* Data record format              ohwnc*/ 10596000
                             /*     (pre-SP311=BLOCKED/UNBLOCK)      */ 10598000
         BUFEXPAN=0,         /* No additional buffer expansion  ohwnc*/ 10600000
                             /*     (pre-SP311=ABUFEX/NOABUFEX &     */ 10610000
                             /*                BUFEX/NOBUFEX)        */ 10615000
         BUFSIZE=¢¢¢¢,       /* Largest buffer sent/received    ohwnc*/ 10620000
         COMPRESS=NO,        /* No compression/expansion        ohwnc*/ 10630000
                             /*     (pre-SP311=COMP/NOCOMP)          */ 10635000
         CONDEST=1,          /* command response route code     ohwnc*/ 10640000
                             /* default is this remote number        */ 10641000
         CONS=NO,            /* No operator console             ohwnc*/ 10642000
                             /*     (pre-SP311=CONSOLE/NOCON)        */ 10645000
         DISCINTV=0,         /* Idle time in secs before auto   ohwnc*/ 10650000
                             /* disconnect (No timeout if DISCINT=0) */ 10660000
         HTABS=NO,           /* No horizontal format control    ohwnc*/ 10670000
                             /*     (pre-SP311=NOTABS/TABS)          */ 10675000
         LINE=¢¢¢¢,          /* Line number dedicated to rmt    ohwnc*/ 10680000
         SHARABLE=¢¢?       /* Line allowed to be shared by    ohwnc*/ 10681000
                             /* other remotes                   ohwnc*/ 10682000
         LOCAL190=ACTION,    /* Oper. setup messages are        ohwnc*/ 10683000
                             /*   action                             */ 10686000
                             /*        (pre-SP311=INFO/ACTION)       */ 10688000
         LOGON=2,            /* LOGON DCT to be used by this    ohwnc*/ 10688400
                             /*     remote (added OS240)             */ 10689000
         MFORM=T,            /* Console msg. display info.      ohwnc*/ 10690000
         MRF2780=NO,         /* No multi-record feature         ohwnc*/ 10700000
                             /*     (pre-SP311=MRF/NOMRF)            */ 10710000
         MSGPRT=YES,         /* Specifies remote console        ohwnc*/ 10712000
                             /* message print option                 */ 10714000
                             /*     (added in SP313)                 */ 10716000
         MULTILV=NO,         /* No multileaving                 ohwnc*/ 10720000
                             /*     (pre-SP311=MULTI/HARDWARE)       */ 10725000
         NUMPRT=1,           /* No. of printers at remote       ohwnc*/ 10730000
         NUMPUN=0,           /* No. of punches at remote        ohwnc*/ 10740000
         NUMRDR=1,           /* No. of readers at remote        ohwnc*/ 10750000
         PASSWORD=¢¢¢¢¢¢¢¢,  /* Security password               ohwnc*/ 10760000
         RECFM=VARIABLE,     /* Type of data record (fixed)     ohwnc*/ 10765000
                             /*     (pre-SP311=VARIABLE/FIXED)       */ 10766000
         RMT150=NO,          /* Msg 150 sent to local operator  ohwnc*/ 10767000
                             /*     (pre-SP311=MSG150/NOMSG150)      */ 10769000
         ROUTECDE=1,         /* ROUTECODE - the default is the  ohwnc*/ 10770000
                             /*             nnn value of RMTnnn      */ 10780000
         TRANSPAR=NO,        /* No text transparency            ohwnc*/ 10810000
                             /*     (pre-SP311=NOTRANSP/TRANSP)      */ 10820000
         WAITIME=¢¢          /* Time to wait after input        ohwnc*/ 10830000
                             /* output before allowing input again   */ 10840000
/*                                                                   *  10850000
                              *--------------------------------------*  10860000
                              | RMT2 defines a SNA remote terminal   |  10870000
                              | LUTYPE1 must be specified to         |  10880000
                              | indicate a SNA remote terminal.      |  10890000
                              *--------------------------------------*/ 10900000
                             /* SNA terminal                         */ 10910000
RMT(2)   DEVTYPE=LUTYPE1,    /* Terminal type (no SNA default)  ohwnc*/ 10911000
                             /*     (pre-SP311=LUTYPE1)              */ 10914000
         AUTOLOG=YES,        /* Automatic logon                 ohwnc*/ 10920000
         BUFSIZE=256,        /* Largest buffer sent/received    ohwnc*/ 10930000
         COMPACT=NO,         /* No compaction                   ohwnc*/ 10940000
                             /*     (pre-SP311=NOCMPCT/CMPCT)        */ 10945000
         COMPRESS=NO,        /* No compression/expansion        ohwnc*/ 10950000
                             /*     (pre-SP311=NOCOMP/COMP)          */ 10955000
         CONDEST=2,          /* Route code for cmd responses    ohwnc*/ 10960000
                             /*       default is nnn of RMTnnn       */ 10970000
         CONS=NO,            /* No operator consoles            ohwnc*/ 10980000
                             /*     (pre-SP311=NOCON/CONSOLE)        */ 10985000
         DISCINTV=0,         /* Idle time (in secs) before      ohwnc*/ 10990000
                             /* auto disconnect                      */ 11000000
                             /* disconnect (No timeout if DISCINT=0) */ 11005000
         LINE=¢¢¢¢,          /* Line number dedicated to rmt    ohwnc*/ 11010000
         LOCAL190=ACTION,    /* Operator setup messages are     ohwnc*/ 11013000
                             /* action (pre-SP311=SETUPACT/SETUPINF) */ 11016000
         LUNAME=,            /* Logical unit name of rmt term   ohwnc*/ 11020000
         MFORM=T,            /* Display time stamp, job name +          11022000
                             /* job id for this remote          ohwnc*/ 11025000
         MSGPRT=YES,         /* Specifies remote console        ohwnc*/ 11028000
                             /* message print option                 */ 11031000
                             /*     (added in SP313)                 */ 11034000
         NUMPRT=1,           /* No. of printers at remote       ohwnc*/ 11040000
         NUMPUN=0,           /* No. of punches at remote        ohwnc*/ 11050000
         NUMRDR=1,           /* No. of readers at remote        ohwnc*/ 11060000
         PASSWORD=¢¢¢¢¢¢¢¢,  /* Security password               ohwnc*/ 11070000
         RMT150=NO,          /* Msg. 150 sent to local          ohwnc*/ 11075000
                             /*   operator.                          */ 11076000
                             /*     (pre-SP311=MSG150/NOMSG150)      */ 11078000
         ROUTECDE=2,         /* Routecode - the default is the  ohwnc*/ 11080000
                             /*             nnn value of RMTnnn      */ 11090000
         SETUP=MSG,          /* Setup requirements (PDIR)       ohwnc*/ 11100000
                             /*     (pre-SP311=SETUPMSG/SETUPHDR)    */ 11110000
         START=NO,           /* Do not automatically start       hwnc*/ 11132000
         WAITIME=1           /* Wait time for operator          ohwnc*/ 11134000
/*                                                                   */ 11140000
/*                                                                   */ 11150000
/*********************************************************************/ 11160000
/*                            *--------------------------------------*  11170000
                              |    Remote Printers                   |  11180000
                              *--------------------------------------*  11190000
                                                                     */ 11200000
R(n).PR(n) ASIS=NO,          /* Suppress Extraneous Ejects      ohwnc*/ 11205000
         CCTL=YES,           /* Carriage cntl chars. (SNA only) ohwnc*/ 11210000
                             /*     (added in SP420)                 */ 11215000
         CKPTLINE=0,         /* Max lines in a logical page     ohwnc*/ 11220000
         CKPTPAGE=1,         /* Max pages before a CKPT         ohwnc*/ 11230000
         QUEUE=AJ,           /* Output classes processed        ohwnc*/ 11240000
                             /*     Alias for QUEUE is CLass         */ 11250000
         CMPCT=NO,           /* Compaction capabilities(SNA)    ohwnc*/ 11251000
         COMPRESS=NO,        /* Compression/expansion           ohwnc*/ 11252000
         COMPACT=0, @@       /* Compaction table       (SNA)    ohwnc*/ 11253000
         CREATOR=,           /* Choose all users                ohwnc*/ 11255000
                             /*      (added in SP420)                */ 11260000
         DEVFCB=¢¢¢¢,        /* Specifies printer default FCB   ohwnc*/ 11261000
                             /*     (added in SP313)                 */ 11262000
         EJECT=YES,          /* Eject after start               ohwnc*/ 11265000
                             /*      (added in SP420)                */ 11270000
         FCB=¢¢¢¢,           /* Forms control buffer image      ohwnc*/ 11300000
                             /*     (Alias for FCB is C)             */ 11310000
         FCBLOAD=NO,         /* FCB support provided            ohwnc*/ 11320000
                             /*      (modified in SP420)             */ 11325000
         FORMS=¢¢¢¢,         /* Form identifier                 ohwnc*/ 11330000
         JOBNAME=,           /* name of jobs to be selected     ohwnc*/ 11340000
         LIMIT=0-*,          /* Amount of output (in records)   ohwnc*/ 11350000
         LRECL=120,          /* For data transmitted to (SNA)   ohwnc*/ 11390000
         PLIM=0-*,           /* Amound of output (in pages)     ohwnc*/ 11390500
         PRMODE=LINE,        /* Process mode                    ohwnc*/ 11391000
         PRWIDTH=120,        /* Chars. printer per line         ohwnc*/ 11392000
         RANGE=J?¢¢¢¢,      /* Job range to choose from        ohwnc*/ 11393000
         ROUTECDE=Rn,        /* Route code assigned to prt      ohwnc*/ 11394000
         SELECT=PRINT¢¢,     /* Device type and subaddress to   ohwnc*/ 11395000
                             /* which output is queued.              */ 11396000
         SEP=YES,            /* Separator pages printed (NOSEP) ohwnc*/ 11400000
                             /*      (modified in SP420)             */ 11405000
         SEPDS=NO,           /* No separator pages between      ohwnc*/ 11490000
                             /* output groups within same job        */ 11500000
         SETUP=HALT,         /* Specifies optional printer      ohwnc*/ 11500200
                             /* halt for setup                       */ 11500400
                             /*     (added in SP313)                 */ 11500600
         START=YES,          /* remote printer comes up started  hwnc*/ 11500800
         SUSPEND=YES,        /* Prt-interrupt feature allowed   ohwnc*/ 11501000
         TRACE=YES,          /* Enable Tracing                  ohwnc*/ 11501200
         TRANS=DEFAULT,      /* Use PRINTDEF default for        ohwnc*/ 11502000
                             /* translating line of print            */ 11504000
                             /*     (added SP430)                    */ 11506000
         UCS=¢¢¢¢,           /* Print Train                     ohwnc*/ 11510000
                             /* For 3800, character arrangement table*/ 11520000
                             /*     (Alias for UCS is T)             */ 11530000
         VOLUME=(),          /* VOLS that jobs are chosen from  ohwnc*/ 11540000
         WRITER=,            /* Writer name assigned to PRT     ohwnc*/ 11560000
         WS=(W,R,Q,PRM,LIM/F)                                           11570000
                             /* Work selection criteria         ohwnc*/ 11580000
/*                                                                   */ 11610000
/*                                                                   */ 11620000
/*********************************************************************/ 11630000
/*                            *--------------------------------------*  11640000
                              |    Remote Punches                    |  11650000
                              *--------------------------------------*  11660000
                                                                     */ 11670000
R(n).PU(n) CCTL=YES,         /* Carriage cntrl chars.(SNA only) ohwnc*/ 11680000
                             /*      (modified in SP420)             */ 11685000
         CKPTLINE=100,       /* No. of cards to punch per page  ohwnc*/ 11690000
         CKPTPAGE=1,         /* No. of pages pun'd before CKPT  ohwnc*/ 11710000
         QUEUE=BK,           /* Output class processed by PUN   ohwnc*/ 11720000
                             /*     (alias for QUEUE is CLASS)       */ 11730000
         CMPCT=NO,           /* Compaction capabilities(SNA)    ohwnc*/ 11760000
         COMPRESS=NO,        /* Compression/expansion           ohwnc*/ 11770000
         COMPACT=0, @@       /* Compaction table       (SNA)    ohwnc*/ 11780000
         CREATOR=,           /* User to choose                  ohwnc*/ 11790000
                             /*      (added in SP420)                */ 11800000
         FLUSH=YES,          /* Blank card after each dataset   ohwnc*/ 11810000
                             /*      (added in SP420)                */ 11820000
         FORMS=¢¢¢¢,         /* Forms identifier loaded         ohwnc*/ 11825000
         JOBNAME=,           /* Jobs selected by this PUN       ohwnc*/ 11830000
         LIMIT=0-*,          /* Range for output record no.     ohwnc*/ 11842000
         LRECL=80,           /* For data transmitted to (SNA)   ohwnc*/ 11850000
         PRMODE=(LINE),      /* Process mode                    ohwnc*/ 11851000
         RANGE=J?¢¢¢¢,      /* Job id range to select from     ohwnc*/ 11852000
         ROUTECDE=¢¢¢¢?     /* Route code(s) assigned to PUNn  ohwnc*/ 11853000
                             /*     (modified SP410)                 */ 11854000
         SELECT=PUN¢¢,       /* Device type and subaddress to   ohwnc*/ 11855000
                             /* which output is queued.              */ 11856000
         SEP=YES,            /* Separator cards for ds groups   ohwnc*/ 11860000
                             /*      (modified in SP420)             */ 11865000
         SEPDS=NO,           /* No set. for DS's within job     ohwnc*/ 11940000
                             /*      (modified in SP420)             */ 11942000
         SETUP=HALT,         /* Specifies optional punch        ohwnc*/ 11942400
                             /* halt for setup                       */ 11943000
                             /*     (added in SP313)                 */ 11944000
         START=YES,          /* Rn.PUn is initially started      hwnc*/ 11944500
         SUSPEND=YES,        /* Punch interrupt allowed (BSC)   ohwnc*/ 11945000
                             /*      (modified in SP420)             */ 11945500
         TRACE=NO,           /* No tracing on punch             ohwnc*/ 11946000
         VOLUME=(),          /* VOLIDS of jobs to be punched    ohwnc*/ 11950000
         WRITER=,            /* Writer name assigned to PUNn    ohwnc*/ 11970000
         WS=(W,R,Q,PRM,LIM/F)                                           11980000
                             /* Work selection criterion        ohwnc*/ 11990000
/*                                                                   */ 12020000
/*                                                                   */ 12030000
/*********************************************************************/ 12040000
/*                            *--------------------------------------*  12050000
                              |    Remote Readers                    |  12060000
                              *--------------------------------------*  12070000
                                                                     */ 12080000
R(n).RD(n) CLASS=A,          /* Default job class               ohwnc*/ 12090000
         HOLD=NO,            /* Jobs not held after conversion  ohwnc*/ 12110000
         MSGCLASS=A,         /* Default message class           ohwnc*/ 12120000
         PRIOINC=0,          /* Increment to get select prio.     wnc*/ 12150000
         PRIOLIM=15,         /* Maximum selection priority        wnc*/ 12160000
         PRTDEST=LOCAL,      /* Default print destination       ohwnc*/ 12162000
                             /*     (added in SP420)                 */ 12165000
         PUNDEST=LOCAL,      /* Default punch destination       ohwnc*/ 12170000
                             /*     (added in SP420)                 */ 12230000
         START=NO,           /* RDR doesn't come up started     ohwnc*/ 12233000
         TRACE=YES,          /* Enable tracing on punch         ohwnc*/ 12234000
         XEQDEST=LOCAL       /* Default execution destination   ohwnc*/ 12236000
                             /*     (modified SP420)                 */ 12237000
/*                                                                   */ 12237100
/*                                                                   */ 12237200
/*********************************************************************/ 12237300
/*                            *--------------------------------------*  12237400
                              |    Network Socket definitions        |  12237500
                              *--------------------------------------*  12237600
                                                                        12237700
SOCKET(¢¢¢¢¢¢¢¢)   IPADDR=¢¢¢¢¢¢¢¢¢¢,  /* IP address            ohwnc*/ 12237800
                   PORT=nnnnn,         /* Related Port          ohwnc*/ 12237900
                   LINE=nnnnn,         /* Related line          ohwnc*/ 12238000
                   NODE=nnnnn          /* Related node          ohwnc*/ 12238100
                   NETSRV=nnn,         /* Server to use         ohwnc*/ 12238200
                   REST=nnnnn          /* Resistance            ohwnc*/ 12238300
                                                                        12238500
/*                                                                   */ 12240000
/*********************************************************************/ 12245000
/*                            *--------------------------------------*  12250000
                              |    SMF Definitions                   |  12260000
                              *--------------------------------------*  12270000
                                                                     */ 12280000
SMFDEF   BUFNUM=5,           /* Number of SMF Buffers             wnc*/ 12290000
         BUFWARN=80          /* Warning Threshold %             ohwnc*/ 12310000
/*                                                                   */ 12350000
/*                                                                   */ 12360000
/*********************************************************************/ 12370000
/*                            *--------------------------------------*  12380000
                              |    Spool Definitions                 |  12390000
                              *--------------------------------------*  12400000
                                                                     */ 12410000
SPOOLDEF BUFSIZE=3992,       /* Maximum Buffer Size                 c*/ 12420000
         DSNAME=SYS1.HASPACE,/* Spool Data Sets' Name               c*/ 12440000
         FENCE=(ACTIVE=NO),  /* Don't Force to Minimum volume      oc*/ 12460000
         SPOOLNUM=32,        /* Max. number of SPOOL volumes       oc*/ 12500000
         TGSIZE=30,          /* 30 Buffers/Track Group            wnc*/ 12580000
         TGSPACE=(MAX=16288, /* Fits TGMs into 4K page             oc*/ 12582000
                             /*   (TGNUM prior to SP510)             */ 12588000
                 WARN=80),   /* Usage warning threshold %         onc*/ 12600000
                             /*   (TGWARN prior to SP510)            */ 12610000
         TRKCELL=3,          /* 3 Buffers/Track-cell                c*/ 12620000
         VOLUME=SPOOL        /* Spool Volume Serial                oc*/ 12640000
/*                                                                   */ 12660000
/*                                                                   */ 12670000
/*********************************************************************/ 12670400
/*                            *--------------------------------------*  12671200
                              |    SSI Definitions                   |  12672000
                              *--------------------------------------*  12673600
                                                                     */ 12674400
SSI(nnn) TRACE=NO            /* Tracing is not active for this   ownc*/ 12675200
                             /*  SSI function                        */ 12676800
/*                                                                   */ 13050000
/*                                                                   */ 13060000
/*********************************************************************/ 13070000
/*                            *--------------------------------------*  13070700
                              |    Subtask definition                |  13071600
                              |    added in SP313                    |  13072500
                              *--------------------------------------*  13073400
                                                                     */ 13074300
SUBTDEF  GSUBNUM=10          /* Specify the number of general    hwnc*/ 13075200
                             /* purpose subtask                      */ 13076100
/*                                                                   */ 13077000
/*                                                                   */ 13077900
/*********************************************************************/ 13078800
/*                            *--------------------------------------*  13080000
                              |    TP (NJE/RJE) Characteristics      |  13090000
                              *--------------------------------------*  13100000
                                                                     */ 13110000
                             /* TP buffer definition             hwnc*/ 13120000
                             /* Characteristics for buffers below    */ 13130000
                             /*   16 meg line  (added SP410)         */ 13140000
TPDEF    AUTOINTV=32,        /* autologon timer interval        ohwnc*/ 13145000
         BSCBUF=(LIMIT=¢¢¢¢, /* BELOWBUF= pre-OS270                  */ 13146000
                             /* NUMBER OF BUFFERS               ohwnc*/ 13150000
                             /*     (pre-SP311 BUFNUM=¢¢)            */ 13160000
            SIZE=520,        /* Size of Buffers in bytes         hwnc*/ 13170000
                             /*     (pre-SP410 BUFSIZE=)             */ 13180000
            WARN=80),        /* Warning Threshold %             ohwnc*/ 13190800
                             /*     (pre-SP311 BUFWARN)              */ 13191500
                             /* Characteristics for extended buffers */ 13192200
                             /*     (added SP410)                    */ 13192900
                             /* EXTBUF= pre-OS270               ohwnc*/ 13193100
         SNABUF=(LIMIT=¢¢¢¢, /* Number of buffers               ohwnc*/ 13193600
                             /*     (pre-SP311 BUFNUM=¢¢)            */ 13194300
            SIZE=400,        /* Size of Buffers in bytes         hwnc*/ 13195000
                             /*     (pre-SP410 BUFSIZE=)             */ 13195700
            WARN=80),        /* Warning Threshold %             ohwnc*/ 13197800
                             /*     (pre-SP311 BUFWARN)              */ 13198500
         MBUFSIZE=400,       /* Multi-leaving buffer size        hwnc*/ 13200000
         RMTMSG=100,         /* Max. # Msgs Queued to remote    ohwnc*/ 13220000
         RMTNUM=¢¢¢¢,        /* Highest allowed RMT (for $ADD)   hwnc*/ 13230000
         SESSIONS=(LIMIT=¢¢¢¢,                                          13280000
                             /* Max number of sessions          ohwnc*/ 13288000
                             /*   (pre-OS130 SESSION)                */ 13296000
              WARN=¢¢)       /* Warning threshold               ohwnc*/ 13304000
                             /*   (added OS130)                      */ 13312000
/*                                                                   */ 13320000
/*                                                                   */ 13330000
/*********************************************************************/ 13340000
/*                            *--------------------------------------*  13350000
                              |    Start/Stop Trace Identifiers      |  13360000
                              *--------------------------------------*  13370000
                                                                     */ 13380000
TRACE(n) START=NO            /* Whether or not to collect trace  hwnc*/ 13400000
                             /*  data for specified id(s)            */ 13405000
/*                                                                   */ 13470000
/*                                                                   */ 13480000
/*********************************************************************/ 13480400
/*                            *--------------------------------------*  13480800
                              |    $TRACE Facility                   |  13481200
                              *--------------------------------------*  13481600
                                                                     */ 13482000
TRACEDEF ACTIVE=NO,          /* Whether or not to start the       wnc*/ 13484800
                             /*  trace facility                      */ 13485200
         LOG=(START=NO,      /* Whether or not to format and     ownc*/ 13486000
                             /*  add data to trace log dataset       */ 13486400
              SIZE=500,      /* Max size of trace log dataset    ownc*/ 13487200
              CLASS=A),      /* Trace log dataset output class   ownc*/ 13488000
         PAGES=9,            /* Number of 4K pages per table @R10P037*/ 13488200
         TABLES=3,           /* Number of trace tables           ownc*/ 13488400
         TABWARN=80          /* Warning Threshold %              ownc*/ 13488600
/*********************************************************************/ 13490000
/*                            *--------------------------------------*  13500000
                              |    Delete a job from the system      |  13510000
                              *--------------------------------------*  13520000
                                                                     */ 13530000
ZAPJOB                       /* Console mode only.  See JES2         */ 13540000
                             /*  initialization and tuning reference */ 13550000
/*                                                                   */ 13560000
/*                                                                   */ 13570000
/*********************************************************************/ 13870000
/*                                                                   */ 13880000
/*               *-----------------------------------*               */ 13890000
/*               | ADDED Initialization Parameters   |               */ 13900000
/*               *-----------------------------------*               */ 13910000
/*                                                                   */ 13920000
/*  The following initialization parameters have been added to JES2  */ 13930000
/*  in the JES2 SP4.1.0 release.  Review the general sections        */ 13940000
/*  above for details on the parameters.                             */ 13941000
/*                                                                   */ 13944000
/*       APPL      LOGMODE,LINE                                      */ 13950000
/*       BUFDEF    BELOWBUF,EXTBUF                                   */ 13953000
/*       CKPTDEF   VERSIONS,CKPTDCON                                 */ 13956000
/*       CONDEF    SCOPE,RDIRAREA                                    */ 13957000
/*       CONNECT   PATHMGR,STATUS,STATIC,CES,TIME                    */ 13960000
/*       JOBCLASS  OUTDISP                                           */ 13970000
/*       LOADMOD   RMODE                                             */ 13972000
/*       NJEDEF    TIMETOL,OWNNAME                                   */ 13985000
/*       NODE(nnnn) LINE,LOGMODE,PATHMGR,PRIVATE,SUBNET,TRACE        */ 13990000
/*       OFFn.SR   OUTDISP                                           */ 14000000
/*       OFFn.ST   OUTDISP                                           */ 14010000
/*       OUTCLASS  OUTDISP                                           */ 14020000
/*       OUTDEF    SEGLIM,OUTTIME                                    */ 14020900
/*       PRINTDEF  SEPPAGE                                           */ 14021800
/*       STCCLASS  OUTDISP                                           */ 14022700
/*       TPDEF     BELOWBUF,EXTBUF                                   */ 14023600
/*       TSUCLASS  OUTDISP                                           */ 14024500
/*                                                                   */ 14025400
/*  The following initialization parameters have been added to JES2  */ 14026300
/*  in the JES2 SP4.2.0 release.  Review the general sections        */ 14027200
/*  above for details on the parameters.                             */ 14028100
/*                                                                   */ 14029000
/*       INTRDR    BATCH                                             */ 14029900
/*       NJEDEF    MAXHOP                                            */ 14030800
/*       OFFn.JR   CREATOR                                           */ 14031700
/*       OFFn.JT   CREATOR                                           */ 14032600
/*       OFFn.SR   CREATOR                                           */ 14033500
/*       OFFn.ST   CREATOR                                           */ 14034400
/*       OUTDEF    PRYORATE                                          */ 14035300
/*       PCEDEF    SPINNUM                                           */ 14036200
/*       PRTn      CREATOR                                           */ 14037100
/*       PUNn      CREATOR                                           */ 14038000
/*       RnPRnn    CREATOR,EJECT                                     */ 14038900
/*       RnPUnn    CREATOR,FLUSH                                     */ 14039800
/*       RnRDnn    PRTDEST,PUNDEST,XEQDEST,SYSAFF                    */ 14040700
/*       RnRDnn    PRTDEST,PUNDEST,XEQDEST,SYSAFF                    */ 14041600
/*       RDRn      PRTDEST,PUNDEST,XEQDEST,SYSAFF                    */ 14042500
/*                                                                   */ 14043400
/*  The following initialization parameters have been added to JES2  */ 14044300
/*  in the JES2 SP4.3.0 release.  Review the general sections        */ 14045200
/*  above for details on the parameters.                             */ 14046100
/*                                                                   */ 14047000
/*       DESTDEF   LOCALNUM,NDEST,RDEST,RMDEST,RMTDEST,UDEST,        */ 14047900
/*                 SHOWUSER                                          */ 14048800
/*       DESTID    PRIMARY                                           */ 14049700
/*       LINEnnn   JRNUM,JTNUM,SRNUM,STNUM                           */ 14050600
/*       Ln.STn    WS,LIMIT,PLIM                                     */ 14051500
/*       NODEn     ENDNODE,SENTREST                                  */ 14052400
/*       NJEDEF    MAILMSG                                           */ 14053300
/*       PRTn      TRANS                                             */ 14054200
/*       Rn.PRnn   TRANS                                             */ 14055100
/*                                                                   */ 14056000
/*  The following initialization parameters have been added to JES2  */ 14056900
/*  in the JES2 SP5.1.0 release.  Review the general sections        */ 14057800
/*  above for details on the parameters.                             */ 14058700
/*                                                                   */ 14059600
/*       CKPTDEF   CKPT1=(STRNAME=),CKPT2=(STRNAME=),OPVERIFY,       */ 14060500
/*                 NEWCKPT1=(STRNAME=),NEWCKPT2=(STRNAME=),          */ 14061400
/*                 VOLATILE                                          */ 14062300
/*       CONDEF    CMDNUM                                            */ 14063200
/*       MASDEF    OWNMEMB,XCFGRPNM                                  */ 14064100
/*       MEMBER                                                      */ 14065000
/*       NJEDEF    HDRBUF                                            */ 14065900
/*       OPTSDEF   SPOOL                                             */ 14066800
/*       SPOOLDEF  TGLOST,TGSPACE                                    */ 14067700
/*                                                                   */ 14067900
/*  The following initialization parameters have been added to JES2  */ 14068100
/*  in the JES2 SP5.2.0 release.  Review the general sections        */ 14068300
/*  above for details on the parameters.                             */ 14068500
/*                                                                   */ 14068700
/*       DEBUG     CKPT,MISC,STORAGE,VERSION                         */ 14068900
/*       JOBCLASS  QHELD                                             */ 14069100
/*       RMTnnnn   SHARABLE                                          */ 14069300
/*       TPDEF     RMTNUM                                            */ 14069800
/*                                                                   */ 14070300
/*  The following initialization parameters have been added to JES2  */ 14070800
/*  in the JES2 OS1.1.0 release.  Review the general sections        */ 14071300
/*  above for details on the parameters.                             */ 14071800
/*                                                                   */ 14072300
/*       DEBUG     SYMREC                                            */ 14072800
/*       OFFLOAD   ARCHIVE,VALIDATE                                  */ 14073300
/*                                                                   */ 14073600
/*  The following initialization parameters have been added to JES2  */ 14073900
/*  in the JES2 OS1.3.0 release.  Review the general sections        */ 14074200
/*  above for details on the parameters.                             */ 14074500
/*                                                                   */ 14074800
/*       JOBDEF    DUPL_JOB                                          */ 14075100
/*       Ln.STn    OUTDISP                                           */ 14075400
/*       TPDEF     SESSIONS=(LIMIT=,WARN=)                           */ 14075700
/*                                                                   */ 14076000
/*  The following initialization parameters have been added to JES2  */ 14076300
/*  in the JES2 OS2.4.0 release.  Review the general sections        */ 14076600
/*  above for details on the parameters.                             */ 14076900
/*                                                                   */ 14077200
/*       JOBCLASS  MODE,MSGCLASS,CONDPURG,XEQCOUNT                   */ 14077500
/*       Ln.JTn    WS,LIMIT                                          */ 14077800
/*       CKPTSPACE BERTNUM,BERTWARN                                  */ 14078100
/*       NODE      LOGON                                             */ 14078400
/*       APPL      LOGON                                             */ 14078700
/*       RMTnnnn   LOGON                                             */ 14079000
/*                                                                   */ 14079300
/*  The following initialization parameters have been added to JES2  */ 14079600
/*  in the JES2 OS2.7.0 release.  Review the general sections        */ 14079900
/*  above for details on the parameters.                             */ 14080200
/*                                                                   */ 14080500
/*       JOBDEF    CNVT_ENQ                                          */ 14080800
/*                                                                   */ 14081100
/*  The following initialization parameters have been added to JES2  */ 14081400
/*  in the JES2 OS2.10 release.  Review the general sections         */ 14081700
/*  above for details on the parameters.                             */ 14082000
/*                                                                   */ 14082300
/*       JOBCLASS  SCHENV                                            */ 14082600
/*       ZAPJOB    all                                               */ 14082900
/*                                                                   */ 14083200
/*  The following initialization parameters have been added to JES2  */ 14083500
/*  in the JES2 z/OS 1.2 release.  Review the general sections       */ 14083800
/*  above for details on the parameters.                             */ 14084100
/*                                                                   */ 14084400
/*       INCLUDE   DSNAME,VOLSER,UNIT                                */ 14084700
/*       JOBCLASS  JESLOG                                            */ 14085000
/*       PROCLIB   DD,DSNAME,VOLSER,UNIT,UNCONDITIONAL               */ 14085300
/*       REQJOBID  JESLOG                                            */ 14085600
/*                                                                   */ 14086200
/*  The following initialization parameters have been added to JES2  */ 14086500
/*  in the JES2 z/OS 1.7 release.  Review the general sections       */ 14086800
/*  above for details on the parameters.                             */ 14087100
/*                                                                   */ 14087400
/*       NETSRV                                                      */ 14087700
/*       SOCKET                                                      */ 14088000
/*       LINE      UNIT=TCP                                          */ 14088300
/*       NODE      NETSRV,SIGNON,DIRECT                              */ 14088600
/*       OFFLOAD   CRTIME                                            */ 14088700
/*                                                                   */ 14088900
/*********************************************************************/ 14089200
/*                                                                   */ 14089500
/*                                                                   */ 14090000
/*********************************************************************/ 14100000
/*                                                                   */ 14110000
/*               *-----------------------------------*               */ 14120000
/*               | CHANGED Initialization Parameters |               */ 14130000
/*               *-----------------------------------*               */ 14140000
/*                                                                   */ 14150000
/*  The following initialization parameters have been changed in     */ 14160000
/*  the JES2 SP4.1.0 release.  Review the general sections above     */ 14170000
/*  for details on the parameters, and for changes that were made    */ 14180000
/*  by releases previous to JES2 SP4.1.0.                            */ 14190000
/*                                                                   */ 14200000
/*       CONNECT NODEA          -now may specify symbolic name       */ 14201000
/*       CONNECT NODEB          -now may specify symbolic name       */ 14202000
/*       JOBCLASS REGION,TIME   - new defaults                       */ 14203000
/*       NODE    PASSWORD       - now includes SEND= and VERIFY=     */ 14204000
/*       NODE    REST           - Maximum changed                    */ 14205000
/*       OFFn.JT ROUTECDE       - now accepts destid or userid value */ 14206000
/*       OFFn.JR ROUTECDE       - now accepts destid or userid value */ 14207000
/*       OFFn.ST ROUTECDE       - now accepts destid or userid value */ 14208000
/*       OFFn.ST WS             - now includes OUTDISP specification */ 14209000
/*       OFFn.SR ROUTECDE       - now accepts destid or userid value */ 14210000
/*       OFFn.SR WS             - now includes OUTDISP specification */ 14211000
/*       OFFn.SR MOD            - now includes OUTDISP specification */ 14212000
/*       PRTnnnn ROUTECDE       - now accepts destid or userid value */ 14213000
/*       PUNnnnn ROUTECDE       - now accepts destid or userid value */ 14214000
/*       Rn.PRnn ROUTECDE       - now accepts destid or userid value */ 14215000
/*       Rn.PUnn ROUTECDE       - now accepts destid or userid value */ 14216000
/*       OUTDEF  JOENUM         - maximum value specified increased  */ 14217000
/*       STCCLASS REGION,TIME   - increased defaults                 */ 14218000
/*       TSUCLASS REGION,TIME   - increased defaults                 */ 14218900
/*                                                                   */ 14219200
/*  The following initialization parameters have been changed in     */ 14219800
/*  the JES2 SP4.2.0 release.  Review the general sections above     */ 14220700
/*  for details on the parameters, and for changes that were made    */ 14221600
/*  by releases previous to JES2 SP4.2.0.                            */ 14222500
/*                                                                   */ 14222700
/*       ESTLNCT NUM            - Maximum changed                    */ 14222900
/*       ESTPAGE NUM,INT        - Maximum changed                    */ 14223100
/*       ESTPUN  NUM,INT        - Maximum changed                    */ 14223300
/*       INTRDR  AUTH           - No longer a numeric value          */ 14223500
/*       LINEn   UNIT           - Unit can be dynamically added      */ 14223700
/*       PRTn    UNIT           - Unit can be dynamically added      */ 14223900
/*       PRTn    FORMS          - Up to 8 forms can be specified     */ 14224100
/*       PUNn    UNIT           - Unit can be dynamically added      */ 14224300
/*       RDRn    AUTH           - No longer a numeric value          */ 14224500
/*       RDRn    UNIT           - Unit can be dynamically added      */ 14224700
/*                                                                   */ 14224900
/*  The following initialization parameters have been changed in     */ 14225100
/*  the JES2 SP4.3.0 release.  Review the general sections above     */ 14225300
/*  for details on the parameters, and for changes that were made    */ 14225500
/*  by releases previous to JES2 SP4.3.0.                            */ 14225700
/*                                                                   */ 14225900
/*       LOADMOD RMODE          - Is now display only, set function  */ 14226100
/*                                replaced by using linkage editor   */ 14226300
/*                                options.                           */ 14226500
/*                                                                   */ 14226700
/*  The following initialization parameters have been changed in     */ 14226900
/*  the JES2 SP5.2.0 release.  Review the general sections above     */ 14227100
/*  for details on the parameters, and for changes that were made    */ 14227300
/*  by releases previous to JES2 SP5.2.0.                            */ 14227500
/*                                                                   */ 14227700
/*       JOBDEF JOBWARN         - cannot be changed on a             */ 14228100
/*       JOBDEF JNUMWARN          single member warm start           */ 14228500
/*       JOBDEF PRTYHIGH          or a quick start                   */ 14228900
/*       JOBDEF PRTYLOW                                              */ 14229300
/*       JOBDEF PRTYRATE                                             */ 14229600
/*                                                                   */ 14230000
/*       OPTSDEF SPOOL          - default changed to NOVALIDATE      */ 14232000
/*                                                                   */ 14234000
/*       OUTDEF JOEWARN         - cannot be changed on a             */ 14236000
/*       OUTDEF PRTYHIGH          single member warm start           */ 14238000
/*       OUTDEF PRTYLOW           or a quick start                   */ 14240000
/*       OUTDEF PRYORATE                                             */ 14242000
/*                                                                   */ 14244000
/*       SPOOLDEF               - cannot be changed on a             */ 14246000
/*            TGSPACE=(TGWARN)    single member warm start           */ 14248000
/*                                or a quick start                   */ 14250000
/*                                                                   */ 14252000
/*       TPDEF BELOWBUF=(SIZE)  - minimum and default changed        */ 14254000
/*                                                                   */ 14254100
/*  The following initialization parameters have been changed in     */ 14254200
/*  the JES2 OS1.3.0 release.  Review the general sections above     */ 14254300
/*  for details on the parameters, and for changes that were made    */ 14254400
/*  by releases previous to JES2 OS1.3.0.                            */ 14254500
/*                                                                   */ 14254600
/*       PUNn       FORMS       - Up to 8 forms can be specified     */ 14254700
/*       Rn.PRn     FORMS       - Up to 8 forms can be specified     */ 14254800
/*       Rn.PUn     FORMS       - Up to 8 forms can be specified     */ 14254900
/*       OFFn.ST    FORMS       - Up to 8 forms can be specified     */ 14255000
/*       OFFn.SR    FORMS       - Up to 8 forms can be specified     */ 14255100
/*                                                                   */ 14256000
/*  The following initialization parameters have been changed in     */ 14256200
/*  the JES2 OS2.4.0 release.  Review the general sections above     */ 14256400
/*  for details on the parameters, and for changes that were made    */ 14256600
/*  by releases previous to JES2 OS2.4.0.                            */ 14256800
/*                                                                   */ 14257000
/*       JOBCLASS   all         - Can only be changed on a cold      */ 14257200
/*                                start or by operator command       */ 14257400
/*                                                                   */ 14257420
/*  The following initialization parameters have been changed in     */ 14257440
/*  the JES2 z/OS 1.7 release.  Review the general sections above    */ 14257460
/*  for details on the parameters, and for changes that were made    */ 14257480
/*  by releases previous to JES2 z/OS 1.7                            */ 14257500
/*                                                                   */ 14257520
/*       NODE       NAME        - Can be modified when the node      */ 14257540
/*                                is actively attached, or for the   */ 14257560
/*                                local node.                        */ 14257580
/*                                                                   */ 14257600
/*********************************************************************/ 14258000
/*                                                                   */ 14260000
/*                                                                   */ 14262000
/*********************************************************************/ 14264000
/*                                                                   */ 14270000
/*               *-----------------------------------*               */ 14280000
/*               | DELETED Initialization Parameters |               */ 14290000
/*               *-----------------------------------*               */ 14300000
/*                                                                   */ 14310000
/*  The following initialization parameters have been deleted.       */ 14320000
/*                                                                   */ 14340000
/*  parameter          release     reason/new action                 */ 14350000
/*  ----------------   -------     --------------------------------- */ 14355000
/*  INTRDR  RDINUM     z/OS 1.7    No longer supported               */ 14355200
/*  CKPTDEF APPLCOPY   z/OS 1.2    No longer supported               */ 14355300
/*  SPOOLDEF TGBPERVL  OS2.10      No longer required                */ 14355500
/*  TPDEF BELOWBUF     OS2.7.0     Replaced by BSCBUF                */ 14355600
/*  TPDEF EXTBUF       OS2.7.0     Replaced by SNABUF                */ 14355700
/*  STCCLASS           OS2.4.0     Replaced by JOBCLASS(STC)         */ 14356000
/*  TSUCLASS           OS2.4.0     Replaced by JOBCLASS(TSU)         */ 14357000
/*  TPDEF    SESSION   OS1.3.0     Replaced by SESSIONS=(LIMIT=)     */ 14358000
/*  SPOOLDEF TGLOST    SP5.2.0     No longer required                */ 14360000
/*  CKPTDEF  CKPTDCON  SP5.1.0     No longer required                */ 14361000
/*  MASDEF   OWNSID    SP5.1.0     Replaced by OWNMEMB               */ 14361200
/*  MASDEF   SID       SP5.1.0     Replaced by MEMBER statement      */ 14361400
/*  SPOOLDEF TGWARN    SP5.1.0     Replaced by TGSPACE=(WARN=)       */ 14361600
/*  SPOOLDEF TGNUM     SP5.1.0     Replaced by TGSPACE=(MAX=)        */ 14361800
/*  LOADMOD RMODE      SP4.3.0     Now displayable only              */ 14362000
/*  BUFDEF BUFNUM      SP4.1.0     Replaced by LIMIT                 */ 14362500
/*  BUFDEF BUFWARN     SP4.1.0     Replaced by WARN                  */ 14363000
/*  BUFDEF BUFFREE     SP4.1.0     Replaced by FREE                  */ 14364000
/*  CONDEF BSPACE      SP4.1.0     No longer supported               */ 14365000
/*  JOBCLASS CONDPURG  SP4.1.0     Replaced by JOBCLASS OUTDISP=     */ 14365600
/*  NJEDEF NATNUM      SP4.1.0     No longer required                */ 14366200
/*  OFFn.SR DS=ANY     SP4.1.0     Replaced by OUTDISP=              */ 14366800
/*  OFFn.SR DSHOLD=    SP4.1.0     Replaced by MOD=OUTDISP=          */ 14367400
/*  OFFn.ST DS=        SP4.1.0     Replaced by OUTDISP=              */ 14368000
/*  OUTCLASS CONDPURG  SP4.1.0     Replaced by OUTCLASS OUTDISP=     */ 14368600
/*  OUTCLASS HOLD      SP4.1.0     Replaced by OUTCLASS OUTDISP=     */ 14369200
/*  OUTCLASS MSGHOLD   SP4.1.0     Replaced by OUTCLASS OUTDISP=     */ 14369800
/*  PRINTDEF RSEPLINE  SP4.1.0     Replaced by PRINTDEF SEPPAGE=     */ 14370400
/*  PRINTDEF SEPLINE   SP4.1.0     Replaced by PRINTDEF SEPPAGE=     */ 14370600
/*  TPDEF BUFNUM       SP4.1.0     Replaced by LIMIT                 */ 14370800
/*  TPDEF BUFWARN      SP4.1.0     Replaced by WARN                  */ 14371000
/*  TPDEF BUFSIZE      SP4.1.0     Replaced by SIZE                  */ 14371200
/*  TPDEF BUFFREE      SP4.1.0     Replaced by FREE                  */ 14371400
/*  JOBCLASS XBATCH    SP3.1.3     No longer needed for XBM          */ 14371600
/*  JOBDEF XBATCH      SP3.1.3     No longer needed for XBM          */ 14372100
/*  CONDEF MSGID       SP3.1.1     JES2 Assumes YES                  */ 14372400
/*  HASPSSSM           SP3.1.1     Use STEPLIB                       */ 14373000
/*  NODE BSC/SNA       SP3.1.1     No longer differentiate           */ 14373500
/*  PRINTRnn           SP3.1.1     Form of PRTnn no longer supported */ 14374000
/*  SPOOLDEF RECINCR   SP3.1.1     No longer needed                  */ 14375000
/*  TPDEF WAIT         SP3.1.1     use RMT(*) WAITIME=               */ 14375500
/*  TRACE              SP3.1.1     Replaced by TRACEDEF and TRACE(n) */ 14376000
/*  CKPTDEF DSNAME     SP2.2.0     Replaced by CKPTDEF CKPTn=(DSN=)  */ 14380000
/*  CKPTDEF DUPLEX     SP2.2.0     Replaced by CKPTDEF MODE=,DUPLEX= */ 14390000
/*  CKPTDEF PRIMARY    SP2.2.0     Replaced by CKPTDEF CKPT1=(VOL=)  */ 14400000
/*  CKPTDEF RECONFIG   SP2.2.0     Cannot be specified in initdeck   */ 14405000
/*  SPOOLDEF TGBENUM   SP2.2.0     Replaced by SPOOLDEF TGBPERVL     */ 14410000
/*  TPDEF RMTNUM       SP2.2.0     Determined from highest RMTn Stmt */ 14420000
/*                                   (RMTNUM added back in SP5.2.0)  */ 14430000
/*                                                                   */ 14580000
/*********************************************************************/ 14590000
/*                                                                   */ 14600000
/*                                                                   */ 14610000
/*********************************************************************/ 14620000
/*                                                                   */ 14630000
/*  NOTE: Changing ANY of the following parameters will prevent a    */ 14640000
/*        JES2 Warmstart; they can ONLY be changed on a COLDSTART    */ 14650000
/*                                                                   */ 14660000
/*********************************************************************/ 14670000
/*                                                                   */ 14680000
/*  NJEDEF    OWNNODE=                                               */ 14700000
/*  SPOOLDEF  BUFSIZE=, DSNAME=, TRKCELL=, VOLUME=                   */ 14720000
/*                                                                   */ 14740000
/*  NOTE: If VOLUME= is a 5 character prefix, it can be changed      */ 14750000
/*        to a 4 character prefix using an operator command (for     */ 14760000
/*        example it can be changed from SPOOL to SPOO).  Any other  */ 14770000
/*        changes require a COLDSTART.                               */ 14780000
/*********************************************************************/ 99999999

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014