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.