SMP/E APPLY of maintenance for CA SYSVIEW 16.0 fails with errors:
GIM54502E ** ALLOCATION FAILED FOR CNM4APSC BECAUSE THERE IS NO DD STATEMENT IN THE JCL AND NO DDDEF ENTRY IN TARGET
ZONE CAIT.
GIM28307E ** ALLOCATION FAILED FOR CNM4APSC, WHICH IS REQUIRED IN ORDER TO PROCESS ELEMENT GSVOARGS IN SYSMOD SO14533.
GIM54502E ** ALLOCATION FAILED FOR CNM4ASAM BECAUSE THERE IS NO DD STATEMENT IN THE JCL AND NO DDDEF ENTRY IN TARGET
ZONE CAIT.
GIM28307E ** ALLOCATION FAILED FOR CNM4ASAM, WHICH IS REQUIRED IN ORDER TO PROCESS ELEMENT GSVOCCSS IN SYSMOD SO14533.
GIM54502E ** ALLOCATION FAILED FOR CNM4APPS BECAUSE THERE IS NO DD STATEMENT IN THE JCL AND NO DDDEF ENTRY IN TARGET
ZONE CAIT.
GIM28307E ** ALLOCATION FAILED FOR CNM4APPS, WHICH IS REQUIRED IN ORDER TO PROCESS ELEMENT GSVOSJAR IN SYSMOD SO14533.
Release : 16.0
Component : SYSVIEW
The missing DDDEFs were added by PTF SO14533.
See the ++HOLD on that PTF which has the JCL required to define the 3 new DDDEF files, they are USS files.
The HOLD data is as follows:
++HOLD (SO14533) SYSTEM FMID(CNM4G00)
REASON (DDDEF ) DATE (20240)
COMMENT (
+----------------------------------------------------------------------+
| CA SYSVIEW PERFORMANCE MANAGEMENT Version 16.0 |
+----------+-----------------------------------------------------------+
|SEQUENCE | Before Apply |
+----------+-----------------------------------------------------------+
|PURPOSE | Add new DDDEF's for the Application Server objects |
+----------+-----------------------------------------------------------+
|USERS | All users of SYSVIEW |
|AFFECTED | |
+----------+-----------------------------------------------------------+
|KNOWLEDGE | Product Installation |
|REQUIRED | |
+----------+-----------------------------------------------------------+
|ACCESS | Product libraries |
|REQUIRED | |
+----------+-----------------------------------------------------------+
**************************
* STEPS TO PERFORM *
**************************
- The application of this PTF will require that the volume where
the zFS file system was allocated during the initial product
install has sufficient free space to extend the file system by
approximately 40 cylinders.
- Use the following sample JCL to create 3 new DDDEF's in the
SMP/E target zone:
//JOBCARD JOB (00000000),CLASS=A,MSGCLASS=A,REGION=0M
//*
// EXPORT SYMLIST=*
//*
//*===================================================================*
//* Sample JCL to add new DDDEF's to the SMP/E target zone for: *
//* *
//* CNM4APPS *
//* CNM4APSC *
//* CNM4ASAM *
//* *
//*===================================================================*
//* *
//* 1. Set SMPEHLQ to the SMP/E high-level qualifier used for *
//* product installation. *
//* *
// SET SMPEHLQ='smpehlq'
//* *
//* 2. Set PATHPFX to the USS directory path prefix used for *
//* product installation. If you're not sure what the path *
//* prefix was, query the CNM4BJAR DDDEF in the target zone. *
//* The path prefix will be everything preceding /sysview. *
//* If the path contains more than one /sysview sub-directory, *
//* then path prefix will be everything preceding the last *
//* occurrence of /sysview. *
//* *
//* It your PATHPFX is longer than 37 bytes, the path name *
//* will need to span multiple lines in the DDDEF step. The *
//* resolved path name should extend up to column 72, and be *
//* continued in column 1 of the following line. *
//* *
//* 1 2 3 *
//* ....5....0....5....0....5....0....5.. *
// SET PATHPFX='/cai'
//* *
//* 3. Set SMPETZ to the SMP/E target zone name used for *
//* product installation. *
//* *
// SET SMPETZ='CAIT'
//* *
//* Note: If the VERIFY step fails, it could be that zFS file *
//* system created during product installation is no longer *
//* mounted, or the file system is not accessible from the *
//* system that this job ran on. *
//* *
//*-------------------------------------------------------------------*
//*
//*===================================================================*
//* Verify the file system is mounted *
//*===================================================================*
//VERIFY EXEC PGM=BPXBATCH
//STDERR DD SYSOUT=*
//STDOUT DD SYSOUT=*
//STDPARM DD *,SYMBOLS=EXECSYS
SH cd &PATHPFX/sysview/cnm4g00;
cd CNM4BJAR;
/*
//*===================================================================*
//* Create the USS directories *
//*===================================================================*
//CR8DIR EXEC PGM=BPXBATCH,COND=(0,NE)
//STDERR DD SYSOUT=*
//STDOUT DD SYSOUT=*
//STDPARM DD *,SYMBOLS=EXECSYS
SH umask 0002;
cd &PATHPFX/sysview/cnm4g00;
mkdir -p -m 775 apps/CA;
mkdir -p -m 775 apps/config/CA;
mkdir -p -m 775 apps/samples/CA
/*
//*===================================================================*
//* Add DDDEF's in the target zone *
//*===================================================================*
//DDDEF EXEC PGM=GIMSMP,COND=(0,NE)
//SMPCSI DD DISP=SHR,DSN=&SMPEHLQ..CSI
//SMPRPT DD SYSOUT=*
//SMPOUT DD SYSOUT=*
//SMPCNTL DD *,SYMBOLS=EXECSYS
SET BOUNDARY(&SMPETZ) .
UCLIN .
ADD DDDEF(CNM4APPS)
PATH(
'&PATHPFX/sysview/cnm4g00/apps/CA/'
) .
ADD DDDEF(CNM4APSC)
PATH(
'&PATHPFX/sysview/cnm4g00/apps/config/CA/'
) .
ADD DDDEF(CNM4ASAM)
PATH(
'&PATHPFX/sysview/cnm4g00/apps/samples/CA/'
) .
ENDUCL.
/*