Date: Mon, 12 Mar 2001 09:26:35 -0600
Reply-To: aldi@wubios.wustl.edu
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Aldi Kraja <aldi@WUBIOS.WUSTL.EDU>
Organization: Washington University
Subject: libname: Command not found
Content-Type: text/plain; charset=us-ascii
Hi,
Here is what I obtain after I execute the following part of the program:
libname: Command not found
I am expecting by the help of %sysexec to have an execution of:
libname frq "/data/aldi";
which does not happen.
Thank you for any suggestion,
Aldi
/* frq */
%if %bquote(&freqdir) ne %then %do;
%if %bquote(%left(&freqdir))=2 %then %do;
/* nothing */
%end;
%else %do;
%sysexec %bquote(libname frq "&freqdir";) ;
%let genfrq4=frq.&genfrq4;
%end;
%end;
%else %do;
%let genfrq4=rptemp.&genfrq4;
%end;
--