LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (June 2003, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 5 Jun 2003 20:35:32 +1200
Reply-To:     Laurie Fleming <laurief@PARADISE.NET.ENDZED>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Laurie Fleming <laurief@PARADISE.NET.ENDZED>
Organization: Messy
Subject:      Re: list of options

In article <91e0562d.0306050025.7fa2b14b@posting.google.com>, traffinot@yahoo.fr (Thomas_raffinot) wrote:

> Hello, > I'm looking for a list of options like options errors=1. They are > useful and I wanna know some of them, because I think it can help me. > Thanks > Thomas

They're under your nose:

proc options; run;

or

proc options short; run;

Possibly the most useful form is

proc options define; run;

which (from the online manual) "displays the short description of the option, as well as its type, and how to set and display its value."

These will dump all the available info into your log.


Back to: Top of message | Previous page | Main SAS-L page