PAX installation error: PAX: FSUM7351 not found when using the PAX command -rvf.
search cancel

PAX installation error: PAX: FSUM7351 not found when using the PAX command -rvf.

book

Article ID: 225159

calendar_today

Updated On:

Products

File Master Plus

Issue/Introduction

When executing program BPXBATCH to unpax the CA File Master Plus release 12 PAX installation file DVD0000000001841.pax.Z, the client receives error message 
-rvf: FSUM7351 not found      

Environment

Z/OS batch JCL

Cause

The PAX installation file name is case sensitive. In the sample JCL below PAX file name DVD0000000001841.PAX.Z
is incorrect since it is all upper case. The PAX in the file name should be lower case. (.pax.)

For example DVD0000000001841.pax.Z  

                                   
//********************************************************************* 
//* THIS SAMPLE JOB CAN BE USED TO INVOKE THE PAX COMMAND TO CREATE *   
//* THE PRODUCT-SPECIFIC INSTALLATION DIRECTORY. *                      
//* *                                                                   
//* THIS JOB MUST BE CUSTOMIZED AS FOLLOWS: *                           
//* 1. SUPPLY A VALID JOB STATEMENT. *                                  
//* 2. REPLACE "YOURUSSPAXDIRECTORY" WITH THE NAME OF THE USS *         
//* DIRECTORY USED ON YOUR SYSTEM FOR PAX ESD DOWNLOADS. *              
//* 3. REPLACE "PAXFILE.PAX.Z" WITH THE NAME OF THE PAX FILE. *         
//* NOTE: IF YOU CONTINUE THE PARM= STATEMENT ON A SECOND LINE, *       
//* START ENTERING CHARACTERS IN COLUMN 16 AND MAKE SURE *              
//* THE 'X' CONTINUATION CHARACTER IS IN COLUMN 72. *                   
//********************************************************************* 
//UNPAXDIR EXEC PGM=BPXBATCH,                                           
//             PARM='sh cd /u/example/fmpv12/; pax               X
//             -rvf DVD0000000001841.PAX.Z'                             
//STDOUT DD SYSOUT=*                                                    
//STDERR DD SYSOUT=*                                                    
/*   
//

Resolution

Update the PAX file name from    DVD0000000001841.PAX.Z     to      DVD0000000001841.pax.Z  as shown in the JCL below and resubmit the job.
                                                                 
//UNPAXDIR EXEC PGM=BPXBATCH,                                           
//             PARM='sh cd /u/example/fmpv12/; pax               X
//             -rvf DVD0000000001841.pax.Z'                             
//STDOUT DD SYSOUT=*                                                    
//STDERR DD SYSOUT=*                                                    
/*   
//