//SVCACPT JOB (ACCT#),'CBLSVC',
//             USER=,                                       /* RACF */
//            GROUP=,                                       /* RACF */
//         PASSWORD=,                                       /* RACF */
//           NOTIFY=,
//            CLASS=A,MSGCLASS=X,MSGLEVEL=(1,1)
//*
//* ** SVCACPT *** ---------------------------------------------------*
//*
//* &PREFIX..SVCACPT  L=006 --- 2021/02/22 17:21:58 (NBJ)
//*
//*  Licensed Materials - Property of Compute (Bridgend) Ltd
//*
//*  Copyright (C) 2004-2011 - Compute (Bridgend) Ltd.
//*  All rights reserved.
//*
//* ------------------------------------------------------------------*
//*
//*  Executes SMP/E ACCEPT for all applied APAR and PTF SYSMODs that
//*  have not yet been accepted.
//*
//*  You must customise this job before running it:
//*
//*   -  Tailor the JOB statement.
//*
//*   -  Tailor job variables to suitable values for you installation.
//*      This may be done manually or by invoking the SELCOPY/i and
//*      ISPF edit macro, ZZSIEDIT, configured when SELCOPY product
//*      suite was installed. See library SZZSSAM1.
//*
//*      See instructions in the macro for more information.
//*
//*       1. Change #smppre to be the DSN prefix (high level
//*          qualifiers) of the SMP/E CSI data set.
//*
//*       2. Change #dz to be the name of the distribution zone in the
//*          SMP/E CSI.
//*
//*   -  Run with CHECK to identify possible distribution zone
//*      conflicts. Following a successful ACCEPT CHECK run, rerun the
//*      job without CHECK to update the distribution libraries.
//*
//*   -  Run without BYPASS to identify SYSMODs in exception SYSMOD
//*      status and the special processing required to successfully
//*      accept those SYSMODs.
//*
//*  Notes:
//*
//*  1. Before submitting, review the changes carefully to ensure that
//*     they are correct, no lines exceed column 71 and no values have
//*     been truncated.
//*
//*  2. Job should complete with a return code 0 or 4.
//*
//* ------------------------------------------------------------------*
//* History:
//*
//*  L=006 2021/02/22 -nbj- Add ENH to BYPASS HOLDSYSTEM.
//*  L=005 2018/09/25 -nbj- Add DDDEF to BYPASS HOLDSYSTEM.
//*  L=004 2018/01/24 -nbj- Add DB2BIND to BYPASS HOLDSYSTEM.
//*  L=003 2011/11/15 -nbj- Add COMPRESS option (for PDS libraries).
//*  L=002 2011/05/04 -nbj- Include sample BYPASS for held SYSMODs.
//*  L=001 2011/01/12 -nbj- SMP/E ACCEPT Product Service.
//* ------------------------------------------------------------------*
//*
//*
//SVCACPT  EXEC PGM=GIMSMP,REGION=6144K
//SYSPRINT DD  SYSOUT=*
//SMPCSI   DD  DISP=SHR,
//             DSN=#smppre.CSI          <== change this.
//SMPCNTL  DD  *
  SET    BOUNDARY (#dz).     /* <== change this. DISTRIBUTION zone. */
  ACCEPT APARS PTFS
         COMPRESS(ALL)                  /* Compress dist libraries. */
         CHECK                          /* Do not update libraries. */
     /*  BYPASS(HOLDSYSTEM(ACTION,DB2BIND,DDDEF,ENH)) */
                                        /* Do not hold SYSMODs with */
                                        /* system reason id ACTION. */
         .
/*
