Slide 76 of 80
Notes:
- Note: inside the SUM UDC the parameters A and B cannot be changed. For example, if :setvar a,a+1 appeared inside SUM, it would try to create a CI variable named A, but would fail since a job/session global variable named A does not exist and thus cannot be referenced. If instead, :setvar a,!a+1 appeared inside the SUM UDC, this would create a new CI variable named A with a value equal to the value of the parameter A+1. Neither example alters the parameter’s value.