SAS GRAPH produces an error message "ERROR: Insufficient authorization to access C:\WINDOWS\system32\" in SAS Enterprise Guide. The same code does not produce error message in Base SAS and it prints graphic. How to get Base SAS code to work in EG?
That code runs fine for me in EG 7.15 HF7. (No errors and produces graph. Note: I'm using all default options in EG -- I reset all before running to make sure.)
Please also post the SAS log you get from running that exact code in EG.
Casey
Register today and join us virtually on June 16!
sasglobalforum.com | #SASGF
View now: on-demand content for SAS users
You will have to share the code you are using, without it, it is hardly possible to suggest something useful.
data tmp;
input F1;
datalines;
8
5
9
7
6
2
2
5
3
2
5
3
2
2
7
3
;
run;
Axis1
STYLE=1
WIDTH=1
MINOR=NONE
;
Axis2
STYLE=1
WIDTH=1
;
TITLE;
TITLE1;FOOTNOTE;
FOOTNOTE1;
PROC GCHART DATA=tmp
;
VBAR
F1
/
CLIPREF
FRAME TYPE=FREQ
NOLEGEND
COUTLINE=BLACK
RAXIS=AXIS1
MAXIS=AXIS2
PATTERNID=MIDPOINT
Discrete
;
RUN; QUIT;
TITLE; FOOTNOTE;
That code runs fine for me in EG 7.15 HF7. (No errors and produces graph. Note: I'm using all default options in EG -- I reset all before running to make sure.)
Please also post the SAS log you get from running that exact code in EG.
Casey
Register today and join us virtually on June 16!
sasglobalforum.com | #SASGF
View now: on-demand content for SAS users
Reset all solved the problem, thank you.
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!
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.