|
Yes, if the value is the same the system does not re-resolve.
Barbara's talked about this before. (check the archives)
But one solution is to create a dummy program that just returns, call
it using the same variable between the calls you want re-resolved.
d MyPgm pr extpgm(wPgmName)
d parm1 10a
/free
wPgmName = 'FOO';
callp MyPgm(bar);
wPgmName = 'FOO';
callp MyPgm(bar); //***NOTE: FOO is not re-resolved
here!
wPgmName = 'DUMMYPGM'
callp MyPgm(bar);
wPgmName = 'FOO'; //***NOTE: FOO is re-resoved here
callp MyPgm(bar);
/end-free
HTH,
Charles
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.