NOTE: A PROC is currently executing. All subsequently submitted statements will not begin executing until its completion.
Can anyone please tell me if there is an option in SAS to suppress the pop-up note above?
Thanks
If you're using RSUBMIT you haven't specified the WAIT=no option.
Check the documenation and see the example below.
rsubmit wait=no macvar=check_test;
proc freq data=table.large_table;
table variable_levels/out=check;
run;
endrsubmit;
%put &check_test;
rget;
Suppressing the note, even if it were possible (and I don't think it is), won't make the problem go away. The procedure that is running to cause the note will still stop any further statements executing. What are you doing to cause the note in the first place?
If you're using RSUBMIT you haven't specified the WAIT=no option.
Check the documenation and see the example below.
rsubmit wait=no macvar=check_test;
proc freq data=table.large_table;
table variable_levels/out=check;
run;
endrsubmit;
%put &check_test;
rget;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.