Hi,
I'm a new sas's user. I'm trying to make a pdf document with ods after doing DATA _NULL_ but i get the bug "Insufficient authorization to access /opt/sasinside/SASConfig/Lev1/SASApp/_1Facture."
I'm in Sas university edition, and i have just installed too SAS v9.4.
I set this for the file destination :
FILENAME ODSOUT "/folders/myfolders" ;
ODS PDF BODY="/folders/myfolders/factures1.pdf" ;
The file destination is already configurated in the virtual machine (usually i get files from "/folders/myfolders").
Tank you very much!
Lucia
You have two ODS PDF statements. The first is specified correctly, but the second is not and overwrites the first. You also have an extraneous RUN statement at the end.
ODS PDF FILE='/folders/myfolders/delete.pdf' ;
PUT statements won't go to the ODS destination in this method, I'm not sure how you're expecting your final output but I don't think that this approach will work. You may need ODS TEXT or FOOTNOTE/TITLE or PROC ODSTEXT instead.
PS. Please post your code directly into the forum in the future and only include the problematic portion. You have about 100 lines of code before the relevant sections.
Please include your full code (or subset of code) that generates the error as well as the full log.
@luciacossaro wrote:
Hi,
I'm a new sas's user. I'm trying to make a pdf document with ods after doing DATA _NULL_ but i get the bug "Insufficient authorization to access /opt/sasinside/SASConfig/Lev1/SASApp/_1Facture."
I'm in Sas university edition, and i have just installed too SAS v9.4.
I set this for the file destination :
FILENAME ODSOUT "/folders/myfolders" ;
ODS PDF BODY="/folders/myfolders/factures1.pdf" ;
The file destination is already configurated in the virtual machine (usually i get files from "/folders/myfolders").
Tank you very much!
Lucia
Thanks for your quick response.
I attach the sas programm and log.
You have two ODS PDF statements. The first is specified correctly, but the second is not and overwrites the first. You also have an extraneous RUN statement at the end.
ODS PDF FILE='/folders/myfolders/delete.pdf' ;
PUT statements won't go to the ODS destination in this method, I'm not sure how you're expecting your final output but I don't think that this approach will work. You may need ODS TEXT or FOOTNOTE/TITLE or PROC ODSTEXT instead.
PS. Please post your code directly into the forum in the future and only include the problematic portion. You have about 100 lines of code before the relevant sections.
Tkans you again for the response. I've reached to export the pdf file! I'll try now how to delete the cells in the pdf file.
Best regards
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.