Is there a fix for Panvalet that would allow the ++PRINT command to be issued without specifying the ++CONTROL card?
Panvalet 14.6
There is a special USERMOD called $2SF077 located in member SPECLMVS in the CBA3SAMP library that needs to be received and applied.
This special USERMOD $2SF077 is a zap that will allow you to issue the ++PRINT command without having to specify the ++CONTROL CARD.
You will 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($2SF077). /*
SPECIAL ZAP TO ALLOW ++PRINT TO NOT REQUIRE A ++CONTROL CARD. */
++VER(Z038) FMID(CBA3E60). /* CA-PANVALET BATCH */
++ZAP(I2SF000). /* MODIFY $2SF000 */
NAME $2SF000
IDRDATA $2SF077
VER 000332 5BF2,E2C6,F0F7,F740,D540
REP 000332 5BF2,E2C6,F0F7,F740,E840
/*
//SMPCNTL DD *
SET BDY(GLOBAL) .
RECEIVE SELECT($2SF077) SYSMODS . /* CHANGE TO MATCH ABOVE UMODID */
SET BDY(CAIT0) .
APPLY SELECT($2SF077) . /* CHANGE TO MATCH ABOVE UMODID */
/*