Change the EOS processing subroutine so that:
Note: The levels of severity codes are assigned as follows:
I = 0, W = 4, E = 8, S = 12.
This adheres to normal CA JCLCheck error severity.
/********************************************************************/
/* Step End processing Subroutine */
/********************************************************************/
END_STEP_PROCESSING:
If (cart_count > 4) then
Do
Call $CAJCL_ERROR,
'W','Step 'step_name' is using 'cart_count' cartridge drives, please
reduce utilization'
End
If (dd_count > 10) then
Do
Call $CAJCL_ERROR,
'E','Step 'step_name' has specified 'dd_count' DD names, this exceeds site
standards'
error_count = (error_count + 1)
End
dd_count = 0
cart_count = 0
Return
|
Copyright © 2013 CA.
All rights reserved.
|
|