BookmarkSubscribeRSS Feed
ArtC
Rhodochrosite | Level 12
Can anyone tell me why sashelp.vgopt and PROC GOPTIONS do not necessarily yield the same result? (SAS9.2 under Windows)

[pre]goptions reset=all dev=win;
proc goptions option=hpos;
run;
proc print data=sashelp.vgopt(where=(optname='HPOS'));
var optname setting;
run;
[/pre]
This is just one option that is different. There are others. The SASHELP.VGOPT view seems to have the correct values.
3 REPLIES 3
Ksharp
Super User
Hi.Art Carpenter.
Perhaps you need to talk to Technical Group.
I also think these both are identical.

Regards.

Ksharp
data_null__
Jade | Level 19
Not WHY but it appears the dictionary or view is looking at the driver info LROWS and LCOLS.

[pre]
GDEVICE procedure
Listing from SASHELP.DEVICES - Entry WIN

Orig Driver: WIN Module: SASGDDMX Model: 26001
Description: Microsoft Windows Display Type: CRT
*** Institute-supplied ***
Lrows: 10 Xmax: 15.000 IN Hsize: 0.000 IN Xpixels: 1280
Lcols: 35 Ymax: 12.000 IN Vsize: 0.000 IN Ypixels: 1024
Prows: 0 Horigin: 0.000 IN
Pcols: 0 Vorigin: 0.000 IN

[/pre]
Andre
Obsidian | Level 7
Art

With the old manner
[pre]
proc gdevice catalog=sashelp.devices browse nofs;
list win ;
quit;
[/pre]

or with this
[pre]
proc goptions short;run;
[/pre]



you have it , but not alone !

Andre 😉

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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