//SVCRNTS JOB (ACCT#),'CBLSVC',
//             USER=,                                       /* RACF */
//            GROUP=,                                       /* RACF */
//         PASSWORD=,                                       /* RACF */
//           NOTIFY=,
//            CLASS=A,MSGCLASS=X,MSGLEVEL=(1,1)
//*
//* ** SVCRNTS *** ---------------------------------------------------*
//*
//* &PREFIX..SVCRNTS  L=002 --- 2011/01/13 11:40:00 (NBJ)
//*
//*  Licensed Materials - Property of Compute (Bridgend) Ltd
//*
//*  Copyright (C) 2004-2011 - Compute (Bridgend) Ltd.
//*  All rights reserved.
//*
//* ------------------------------------------------------------------*
//*
//*  !!! Ensure CAPS OFF is in effect. !!!
//*  This job contains case sensitive control statements.
//*
//*  Executes SMP/E RECEIVE FROMNTS to receive the service package
//*  from a local HFS (ZFS/NFS) mounted file system.
//*
//*  Ensure CAPS OFF is in effect. This job contains case sensitive
//*  control statements.
//*
//*  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 GLOBAL CSI data set.
//*      2. Change #ntspath to be the name of your SMPNTS directory
//*         which contains the service directory. (e.g. /u/smpe/smpnts)
//*
//*   -  Change #svcdir with the name of the service subdirectory in
//*      the SMPNTS directory. (e.g. S0000001)
//*
//*      Note: #svcdir is case sensitive and must be enclosed in single
//*            quotes if it contains blanks, special characters or
//*            lowercase  alpha characters.
//*
//*   -  For SMP/E 34.09 or later...
//*
//*      1. Uncomment the SMPJHOME DD statement and tailor the PATH to
//*         reference the Java runtime libraries
//*         (e.g. '/usr/lpp/java/J5.0/'.) SMP/E will then use Java(TM)
//*         to check the SHA-1 package integrity instead of ICSF.
//*
//*      2. Uncomment the SMPCPATH DD statement and tailor the PATH to
//*         reference the SMP/E class libraries.
//*
//*   -  Uncomment DELETEPKG if you want to remove the SMPNTS package
//*      directory upon successful completion of the RECEIVE.
//*
//*
//*  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.
//*
//* ------------------------------------------------------------------*
//* History:
//*
//*  L=002 2011/01/13 -nbj- Receive SMPMCS and HOLDDATA.
//*  L=001 2011/01/11 -nbj- SMP/E RECEIVE FROMNTS Product Service.
//* ------------------------------------------------------------------*
//*
//SMPRECV EXEC PGM=GIMSMP,REGION=0M,
//             PARM='PROCESS=WAIT',
//             DYNAMNBR=120
//SMPCSI   DD  DISP=SHR,DSN=#smppre.CSI               <=== change this.
//SMPNTS   DD  PATHDISP=KEEP,
//             PATH='#ntspath/'                       <=== change this.
//*SMPJHOME DD  PATH='/usr/lpp/java/J1.4/'            <=== change this.
//*SMPCPATH DD  PATH='/usr/lpp/smp/classes/'          <=== change this.
//SYSUT1   DD UNIT=SYSDA,SPACE=(3120,(380,760))
//SYSUT2   DD UNIT=SYSDA,SPACE=(3120,(380,760))
//SYSUT3   DD UNIT=SYSDA,SPACE=(3120,(380,760))
//SYSUT4   DD UNIT=SYSDA,SPACE=(3120,(380,760))
//SMPOUT   DD  SYSOUT=*
//SMPRPT   DD  SYSOUT=*
//SMPLIST  DD  SYSOUT=*
//SYSPRINT DD  SYSOUT=*
//SMPCNTL  DD  *
  SET BOUNDARY (GLOBAL).
  RECEIVE
      FROMNTS(#svcdir)               /* change this. */
      .
/*
//*                --- End of SVCRNTS ---
