During an operation to delete thousands of files, archives etc., the VANTAGE STC generated more than 50,000 sysouts resulting in JES2 resource shortages. In addition, the purges of these sysouts (intercepted by TWS) have resulted in the filling of the event dataset of TWS, and in the loss of events as jobs end.
Is there a way to prevent VANTAGE from creating so many sysouts?
Vantage
The following link explains the Model JCL feature which should be used in such case:
Configure the JCL Model List Feature
In summary, define in the Vantage User PARMLIB a new member named JCLMLIST.
Here is how to proceed:
Refer to the sample provided in the *.CCTUSAMP(JCLMLIST) data set and keep only the column definition. Be sure to not have numbering on the right side of the member from column 72 to 80.
Here a sample of what it looks like:
DMSIXUPDIXUPDATE DELETE .YOUR.VANTR14.JCLLIB DMSINDEX
The member name starts in column 1 and is 8 characters long. The description starts in column 9 and is 19 characters long. The data set name starts in column 28 and is 44 characters long. The pattern starts in column 72 and is 8 characters long. A fully qualified object name or pattern should be listed in column 72 - Vantage pattern matching characters can be used. Then create in your Vantage JCLLIB a CA DISK member (member DMSIXUPD, for example) containing such JCL:
%%INCLUDE MEMBER=DMSJCARD
//*-------------------------------------------------------------------*
//* THIS MEMBER CONTAINS THE SKELETON JCL FOR THE CA DISK ACTION *
//* CUSTOMIZE IT FOR YOUR INSTALLATION NEEDS *
//* DO NOT DELETE *
//*-------------------------------------------------------------------*
//IXUPDATE EXEC IXUPDATE
//SYSIN DD *
//*REPEAT*
DELETE DSN=%%DMSDSNAM%%
//*REPEATEND*
Then verify that into that library the job card member DMSJCARD exists. If not, create a job card for using CA DISK. Notice that a JCCLIB ORDER could be required and defined. Once done, right click on the object tree entry for CA DISK Dsnindex and select Model JCL. Once open execute the view on the top left section to get the CA DISK JCL member entry name from JCLMLIST. Double click on the line displayed with the CA DISK member name to expand the JCL on the right side. Then still on the left side, but on the second section, select the entries to delete from the DSNINDEX and perform a drag and drop on the right side above the JCL DELETE command to get all delete data set commands created.
Select the submit icon when the substitution satisfies your needs and select immediate or deferred execution.
Review the job output on the host side.