Can the CA Intertest utility IN25SYMD read in consolidated listings which contains DB2 Precompile, CICS Translate, COBOL Compile and Link Edit output to load the PROTSYM files?
search cancel

Can the CA Intertest utility IN25SYMD read in consolidated listings which contains DB2 Precompile, CICS Translate, COBOL Compile and Link Edit output to load the PROTSYM files?

book

Article ID: 17189

calendar_today

Updated On:

Products

InterTest - CICS InterTest - Batch InterTest VSE - CICS

Issue/Introduction



The client stores their program compile output in a dataset. The listing dataset contains the entire job output which includes the DB2 Precompile, CICS Translate, COBOL Compile and Link Edit. Can the CA Intertest utility program IN25SYMD read in consolidated listings and create the PROTSYM file entry?

Environment

Z/OS

Resolution

The IN25SYMD utility program can process a dataset that contains the DB2 Precompile, CICS Translate, COBOL Compile and Link Edit  for a single program and load it into the PROTSYM File.  
If you run the JCL below to print out the member in the PROTSYM file you will see the entire listing file was loaded into the PROTSYM file. The development team has made an effort to make the post processing utility programs as flexible as possible when post processing program listings. But the post processing utility programs could not process a listing file that contains multiple programs in the same listing file. That is not supported.  

//UTILPRT JOB 
//* 
//REPORT EXEC PGM=IN25UTIL,REGION=2048K 
//STEPLIB DD DSN=INTERT10.GA.CAVHLOAD
,DISP=SHR 
//MESSAGE DD SYSOUT=* 
//PROTSYM DD DISP=SHR,DSN=INTERT10.PROTSYM 
//OUTPUT DD SYSOUT=A,DCB=(LRECL=133,BLKSIZE=3990) 
//CARDS DD * 
PASSWORD=12345678   
çDefault password
PRINT=PROGRAM Name 
REPORT 
/* 
//