CA View: GIM45800S ** PACKAGE BRME0G0 WAS NOT FOUND IN THE SMPNTS
search cancel

CA View: GIM45800S ** PACKAGE BRME0G0 WAS NOT FOUND IN THE SMPNTS

book

Article ID: 263295

calendar_today

Updated On:

Products

View

Issue/Introduction

Customer is getting errors while trying to receive base View products from unzip using the SAMPJCL(BRM20RCB):

/* MEMBER: BRM20RCB                                                  *
//*********************************************************************
//* This member contains the JCL and control statements to Receive    *
//* the base FMIDs into the Global Zone.                              *
//*----------------------------------------------------------
//*  SMP/E RECEIVE PRODUCTS
//*----------------------------------------------------------
//RCVBD    EXEC PGM=GIMSMP,PARM='DATE=U',REGION=0M
//SMPJHOME DD PATH='/usr/lpp/java/J8.0_64/', <-- Enter your JAVA DIR
//            PATHDISP=KEEP
//SMPCSI   DD DISP=SHR,DSN=SYS3P.CAI.VIEW.V140.CSI
//SMPNTS   DD PATHDISP=KEEP,
//         PATH='SMPNTSHL'
//SMPCNTL  DD *

Errors received are:

  RECEIVE SYSMODS FROMNTS(BRME0G0)
   SELECT (
    CBRME00 /*CA-View                                               */
    CBROE00 /*CA-EBC OM Common Dbase Driver                         */
           ) .

 GIM45800S ** PACKAGE BRME0G0 WAS NOT FOUND IN THE SMPNTS.
 GIM20501I    RECEIVE PROCESSING IS COMPLETE. THE HIGHEST RETURN CODE WAS 12.

 

Environment

Release : 14.0

Cause

Here is a copy of what the ca/Broadcom supplied section of BRMSEDIT looks like regarding setting the value of value (SMPNTSHL):

/*                                                                  
/*   Set the High level value for the SMPNTS path name              
/*   If the full SMPNTS path name where your unpaxed the pax.Z      
/*      file is:                                                    
/*      /yourUSSdirectory/BRME0G0                                   
/*   The high level value (SMPNTSHL) is changed to                  
/*      /yourUSSdirectory/                                          
/*                                                                  
/*   SMPNTSHL must match the value of                               
/*   '<-- YOUR USS DIRECTORY -->'                                  
/*   in the UNZIPJCL job.                                           
/*                                                                  
/*******************************************************************/ 
ISREDIT CHANGE ALL SMPNTSHL +                                         
     /yourUSSDirectory/  


* After evaluating the above BRM20RCB code and BRMSEDIT code, we can verify that ca/Broadcom is NOT providing bad BRM20RCB  JCL or BRMSEDIT code as part of a base install from a pax.Z file.

* Suspected cause of problem is that the comments in the above BRMSEDIT code regarding SMPNTSHL were misinterpreted and as a result the value of BRME0G0 was added to the path statement in the customers BRM20RCB JCL as below,

PATH='/BHDS/install/view/BRME0G0/'

Resolution

Customer was instructed to run their RECEIVE job BRM20RCB with the following code by removing the BRME0G0 node from the path,

 //SMPNTS   DD PATHDISP=KEEP,
 //         PATH='/BHDS/install/view/'

 

With the above change, customer was able to run the receive job successfully.