Andre:
It would be like comparing apples and oranges. Apples are red or green outside. Oranges are mostly orange outside. They both have seeds (unless you have seedless oranges). Yes, they are both members of the fruit family, but they are COMPLETELY different.
So too, are ODS GRAPHICS in SAS 9.1.3 and ODS GRAPHICS in SAS 9.2 very different. It was my understanding that "turning on" Proc Univariate for ODS GRAPHICS was a 9.2 enhancement -- so it's possible that the QQPLOT graph object is NOT created at all in SAS 9.1.3. What you may be seeing are the results of asking for QQPLOT using Univariate -- that capability predated ODS GRAPHICS ON/OFF.
In addition, back to the apples vs oranges comparison -- you really cannot compare how graphs were/are created in SAS 9.1.3 and how graphs are created in SAS 9.2, especially with the ODS GRAPHICS Framework -- which includes (but is not limited to) the ODS GRAPHICS ON/OFF statements because the underlying infrastructure of SAS/Graph and ODS Graphics was entirely changed to use STYLE Templates for ALL graphics output and drivers. This was not true for SAS 9.1.3, only the ActiveX-based and Java-based drivers use style templates in SAS 9.1.3.
The documentation for SAS 9.2 and ODS Graphics is on-line and is too voluminous to quote here. These are some comparisons:
http://support.sas.com/documentation/cdl/en/grstatproc/60786/HTML/default/a003200193.htm
http://support.sas.com/documentation/cdl/en/graphref/59607/HTML/default/a003275276.htm
But, it is true that GOPTIONS do not have an impact on anything you create with ODS GRAPHICS ON/OFF or anything you create with the new "SG" procedures (SGPLOT, SGSCATTER, SGPANEL). GOPTIONS -can- impact SAS/Graph output and in some instances, a GOPTIONS setting could "clobber" a setting inside the style template.
If you have legacy SAS/Graph code that you want to run in SAS 9.2 and if the code has been heavily customized with COLOR, and FONT settings using SAS/Graph methods, then you will want to investigate the GSTYLE system option in order to make sure that your legacy programs continue to run, as originally programmed. Another change between SAS 9.1.3 and SAS 9.2 involves the fact that for ODS GRAPHICS, PNG files are usually created (instead of GRSEG catalog entries). For some destinations, like LISTING (in SAS 9.2) when you click on a graph, your default system picture viewer is used to display the graph output. On the other hand, if you continue to use SAS/Graph methods, then a GRSEG entry could be created that would use the SAS Style template information for colors and fonts, if the GSTYLE option is turned on.
There have been quite a few SAS Global Forum papers announcing the new infrastructure. Here are a few:
SG Procedures:
http://www.lexjansen.com/wuss/2008/how/how05.pdf
http://www.lexjansen.com/pharmasug/2008/tu/tu04.pdf
http://www.lexjansen.com/phuse/2008/tu/tu06.pdf
http://www.lexjansen.com/wuss/2008/pos/pos01.pdf
http://www2.sas.com/proceedings/forum2008/255-2008.pdf
http://www2.sas.com/proceedings/forum2007/088-2007.pdf
http://www.lexjansen.com/wuss/2007/DataPresentationsBusIntell/DPBI_Heath_SASGraphProcedures.pdf
http://www.lexjansen.com/wuss/2006/Analytics/ANL-Tobias.pdf
http://www.nesug.org/proceedings/nesug08/ff/ff15.pdf
http://www2.sas.com/proceedings/forum2008/077-2008.pdf
http://www2.sas.com/proceedings/forum2008/321-2008.pdf
Style Templates and Graph Templates:
http://www2.sas.com/proceedings/forum2008/077-2008.pdf
http://www2.sas.com/proceedings/sugi31/262-31.pdf
http://www.lexjansen.com/phuse/2008/cs/cs10.pdf
http://www.nesug.org/Proceedings/nesug05/dp/dp7.pdf
http://www.lexjansen.com/pharmasug/2007/ad/ad14.pdf
http://www2.sas.com/proceedings/forum2007/193-2007.pdf
http://analytics.ncsu.edu/sesug/2007/PO22.pdf
http://www2.sas.com/proceedings/sugi29/204-29.pdf
http://www2.sas.com/proceedings/sugi31/095-31.pdf
http://www2.sas.com/proceedings/forum2007/088-2007.pdf
http://www.lexjansen.com/pharmasug/2008/tu/tu04.pdf
http://www2.sas.com/proceedings/forum2007/092-2007.pdf
http://www.lexjansen.com/phuse/2008/tu/tu06.pdf
http://www2.sas.com/proceedings/forum2008/321-2008.pdf
Then, these papers were written specifically to highlight the way that Graph and Style templates worked experimentally with ODS Graphics ON/OFF in SAS 9.1.3 and with DATA Step in SAS 9.1.3. However, the methods highlighted in these papers have been replaced by the SGRENDER procedure in SAS 9.2 - -so if you want an introduction to how ODS Graphics worked in SAS 9.1.3 -ONLY-, then these are some resources:
SAS 9.1.3 Graph Templates and Data step (this method replaced by SGRENDER procedure in 9.2):
http://www2.sas.com/proceedings/sugi30/239-30.pdf
(download programs for above paper in 9.1.3 SAS:
http://support.sas.com/rnd/papers/sugi30/ods_graph.zip )
http://www.lexjansen.com/phuse/2006/cc/cc02.pdf
cynthia