6.17 I have a job that runs daily that creates several files for transfer. It blows up about every 6 months or so due to file size increases. I want to replace the DISC= statements with DISC= a calculated setvar based on the size of the some file, say

sizeof afile = sizeof somefile * 1.1 (an extra 10% for margin of error)

Is this possible?

You can do something like this:

:build afile;...;disc=![finfo("somefile","eof")*110]...