Date: Wed, 28 Oct 2009 09:07:34 -0500
Reply-To: "Data _null_;" <iebupdte@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Data _null_;" <iebupdte@GMAIL.COM>
Subject: Re: system option GENERIC/NOGENERIC
In-Reply-To: <71a28ee9-75ea-40f1-85d1-2522a4f57387@x37g2000yqj.googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1
On 10/2/09, Tom Abernathy <tom.abernathy@gmail.com> wrote:
> I wonder if it will impact of things besides these warning messages.
I have noticed that it also effects the messages displayed by FILENAME
and LIBNAME statements regarding the path for example. And I suppose
any other place where anything system specific would be displayed.
NOTE: Libref FT62F001 was successfully assigned as follows:
Engine: XPORT
Physical Name: (system-specific file/path name)
This also effects the PATHAME function, try this...
options generic=0;
libname here '.';
libname here list;
%put NOTE: %sysfunc(pathname(here,L));
options generic=1;
%put NOTE: %sysfunc(pathname(here,L));
libname here list;
options generic=0;
%put NOTE: %sysfunc(pathname(here,L));
libname here list;
options generic=0;
filename here '.';
filename here list;
%put NOTE: %sysfunc(pathname(here,F));
options generic=1;
%put NOTE: %sysfunc(pathname(here,F));
filename here list;
options generic=0;
%put NOTE: %sysfunc(pathname(here,F));
filename here list;