BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
pietinma
Fluorite | Level 6

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?

1 ACCEPTED SOLUTION

Accepted Solutions
CaseySmith
SAS Employee

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

View solution in original post

4 REPLIES 4
andreas_lds
Jade | Level 19

You will have to share the code you are using, without it, it is hardly possible to suggest something useful.

pietinma
Fluorite | Level 6
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;
CaseySmith
SAS Employee

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

pietinma
Fluorite | Level 6

Reset all solved the problem, thank you.

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

Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 4 replies
  • 4938 views
  • 0 likes
  • 3 in conversation