How to remove the printing of security levels and user codes from all PAN#2 reports?
search cancel

How to remove the printing of security levels and user codes from all PAN#2 reports?

book

Article ID: 32030

calendar_today

Updated On:

Products

Panvalet

Issue/Introduction

Need to remove the printing of security levels and user codes from all PAN#2 reports.     

 
 

Environment

Release: 14.6

Resolution

There is a special USERMOD called $2SF001 located in member SPECLMVS in the CBA3SAMP library that needs to be received and applied. 

This special USERMOD $2SF001 is a zap that will suppress printing of security levels and user codes in all PAN#2 batch reports.

Use SMP/E to receive and apply this usermod. 

Example below:

//SMPEPTF EXEC PGM=GIMSMP,PARM='DATE=U',REGION=0M
//SMPCSI    DD DISP=SHR,DSN=YOUR.PANVALET.CSI
//SMPPTFIN DD *
++USERMOD($2SF001)   REWORK(2015267).    
++VER(Z038)  FMID(CBA3E60).  
++ZAP(I2SF000). 
 NAME $2SF000                          
 VER  00003A 5BF2,E2C6,F0F0,F140,D540   
 REP  00003A 5BF2,E2C6,F0F0,F140,E840    
//SMPCNTL   DD *
  SET BDY(GLOBAL) .
  RECEIVE SELECT($2SF001) SYSMODS .  
  SET BDY(CAIT0) .
  APPLY SELECT($2SF001).        
//