Hi everyone,
I am currently having issues writing to a PDF when running a program for the second time (after, say, some minor edits) because SAS starts an instance of AcroRD32.exe (acrobat reader) the first time that I have to kill using ctrl-alt-delete. If I dont, I get "ERROR: file is in use".
Below is a minimal working example under SAS 9.2 2M3. It will work fine once, but I get "ERROR: file is in use" when trying to run it the second time. Any idea what I can do? Thanks,
Simon
-------------
title;
data test;
do i=1 to 10;
output;
end;
run;
ods pdf file="c:\test.pdf";
proc print data=test; run;
ods pdf close;
-------------
You likely have the PDF open in a viewer. Make sure it is not in a viewer before running the code.
This also happens with RTF output and is basically the result of the VIEWER locking the file while open.
Hi Ballard,
It is open,but in SAS's result viewer. I didnt actually open the file myself.
Opening a fresh copy of SAS, then clicking the running man twice will get me an error the second time.
I've added a routine of ctrl-alt-del + killing every AcroRD32.exe process started by SAS before running my program, but it's a pain that I wish I could programatically get rid of.
The ODS results viewer is a viewer and has this behavior except for HTML output.
ods noresults?
My intention is to stop the popping up of the results after the process has run.
In Eguide there also an option of the same kind
No automatic open, no lock, no problem
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.