Hi all,
I have created a macro variable in the pre-processing of a job.
[...]
%let jobname = %substr(&etls_jobname,1,5);
[...]
Now I would like to access it in the post-processing via a PROC SQL but it cant be resolved there.
[...]
WHERE jobname LIKE "&jobname"
[...]
I can't use &etls_jobname here, because it gets overwritten while some other jobs run via %include.
Any idea how I can resolve this?
Thanks a lot in advance and best regards,
Thomas