PANVALET

If you have any questions about the content of this page, please contact Requests for clarification.

 

VendorDocumentation
Computer Associates
 
 
 
 
 
 
 
 
 

 

 

PANVALET is a central library facility that can store source programs, object  programs, Job control streams and Data files. EASYTRIEVE PLUS macros may reside  in the PANVALET library as well as COBOL includes. The PANVALET system minimizes  the need for reorganization because of its internal compression techniques,  simplifies backup and restore through proper use of the protection file facilities and provides security at the Library or member level.

 

PANVALET Procedures 

PANMOV    Consists of three steps; the first does a PanValet dump, the second creates and initializes a new PanValet library and the third restores the new library from the dump in the first step.  

PAN1         Executes PAN#1

 

PANVALET JCL Examples

This example writes the output to the data set pointed to by DDNAME OUTPDS.

//YOURJOB JOB YOURJOBCARD
/*JOBPARM L=50
//STEP1 EXEC PAN1,USER=iii
//OUTPDS DD DSN=iii.OUTPUT,DISP=SHR
//SYSIN DD *
++OPTION OUTPUT,OUTPDS
++WRITE WORK,PREFIX=NL
/*

 

This prints a member listing from the PANDD1 PanValet library.

//YOURJOB JOB YOURJOBCARD
//STEP01 EXEC PGM=PAN#2
//PANDD1 DD DSN=iii.PAN.VALET,DISP=SHR
//PANDD2 DD DUMMY
//PANDD3 DD DUMMY
//SYSPRINT DD SYSOUT=A
//SYSPUNCH DD DUMMY
//SYSIN DD *
++PRINT
/*