Modify this DD processing subroutine to increment the DD statement counter. If the DD statement UNIT parameter is CART (cartridge), have the cart count statement increment the count by 1 to keep track of the number of cartridges used per step.
/********************************************************************/
/* Data Definition Processing Subroutine */
/********************************************************************/
DD_PROCESSING:
dd_count = (dd_count + 1)
If (DD.UNIT = 'CART') then
Do
cart_count = (cart_count + 1)
End
Return
|
Copyright © 2013 CA.
All rights reserved.
|
|