I am new to SAS and I cannot find a solution to this error.
37 ods graphics on;
38 ods rtf path="c:/Users/Josh/Downloads/"
39 file = "c:/Users/Josh/Downloads/cigarettes.rtf";
ERROR: Physical file does not exist, /pbr/biconfig/930/Lev1/SASApp/c:/Users/Josh/Downloads/c:/Users/Josh/Downloads/cigarettes.rtf.
ERROR: Fatal ODS error has occurred. Unable to continue processing this output destination.
It seems the path is being amended to the server location instead of replacing the server location.
Please advise on this error, as well as how to properly post the code to this
Thanks
Hi, drj
Your problem is happening because you're Enterprise Guide job is running a SAS instance on a Unix server, which uses a different file naming syntax. You'll have to use a style that starts with a "/", and hopefully you can write to a directory on the server that you can access from your PC.
Asking your SAS administrator for some help would be a good first step.
Tom
Also when you specify Path= then you only want to specify the actual file name without any path, otherwise the path portion gets appended to the original path hence getting:
/c:/Users/Josh/Downloads/c:/Users/Josh/Downloads/cigarettes.rtf
which fails in a Windows environment.
Hello,
I'm having the same problem with a course I'm taking where I need to use SAS Enterprise Guide.
I saw a suggestion in another forum about adding the following to the code preceding the code:
options user='';
However, this isn't working...has anyone else found a work-around or solution?
Many thanks,
Karen
Karen,
Rather than picking up on an old thread with a variation, you should start a new one. You need to be more specific about the symptoms. What is the code that is failing? What is in the log? The version of EGuide is also helpful.
Doc
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.