ESP Workload Automation

 View Only

NEW ESP TESTING UTILITY TO WAIT AND/OR RETURN CC OR ABEND

  • 1.  NEW ESP TESTING UTILITY TO WAIT AND/OR RETURN CC OR ABEND

    Broadcom Employee
    Posted Mar 26, 2021 09:33 AM

    PTF LU00416 has introduced a test utility CYBCCPGM, it can help you to set up a test JOB which will simulate a PROD JOB, as it can perform a wait, or pass any CC, user or system type failure.

    Here is the download link from support portal, it's for ESP version 12.0

    Broadcom Support Portal

    And here is the sample JCL to use it:

    //CYBCCPGM JOB 1,'Wait, return cc or abend',CLASS=A,MSGCLASS=A
    //*
    //* REF: Sample CYBCCPGM
    //* DOC: Testing utility to wait and/or return cc or abend.
    //*
    //* COPYRIGHT (C) 2021 CA. ALL RIGHTS RESERVED.
    //*
    //* Note: 1. Change the job statement as required.
    //* 2. Change <ESP> to the prefix of your ESP load library.
    //* 3. Change PARM with the following parameters:
    //* T=nnnn    number of seconds to wait before ending    
    //*    default = 0          
    //* C=nnnn    completion code to terminate with          
    //*        default = 0     range = 0 - 4095    
    //* A=nnnn    user abend code to terminate with          
    //*        default = N/A   range = 0 - 4095        
    //* A=Snnn    system abend code to terminate with        
    //* default = N/A   range = S000 - SFFF
    //*
    //CYBCCPGM EXEC PGM=CYBCCPGM,PARM='T=5,C=16'
    //STEPLIB DD DISP=SHR,DSN=<ESP>.CD7YLOAD
    //SYSPRINT DD SYSOUT=*