BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Xianhua
Calcite | Level 5
 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


clipboard.png
1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

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;

http://support.sas.com/documentation/cdl/en/connref/67933/HTML/default/viewer.htm#p1eyablk3vvdlkn1h5...

View solution in original post

2 REPLIES 2
SASKiwi
PROC Star

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?

Reeza
Super User

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;

http://support.sas.com/documentation/cdl/en/connref/67933/HTML/default/viewer.htm#p1eyablk3vvdlkn1h5...

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1720 views
  • 2 likes
  • 3 in conversation