| Date: | Sun, 5 Feb 2006 18:57:20 -0500 |
| Reply-To: | J S Huang <jiann-shiun.huang@AMERUS.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | J S Huang <jiann-shiun.huang@AMERUS.COM> |
| Subject: | ERROR: Requested function is not supported. |
|---|
SAS-L:
Codes from "Examples Using %SUPERQ" in online hlep "SAS Macro Reference"
were copied and executed. The following was copied from LOG window. Can
someone tell why the error came up in the execution? It seems that SAS is
complaining about the "%input" macro statement.
TIA
J S Huang
NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) 9.1 (TS1M2)
Licensed to AMERUS GROUP, Site 0037592002.
NOTE: This session is executing on the XP_PRO platform.
NOTE: SAS initialization used:
real time 1.25 seconds
cpu time 0.86 seconds
1 %macro a;
2 %put *** This is a. ***;
3 %mend a;
4
5 %macro test;
6 %put *** Enter two values: ***;
7 %input;
8 %put *** %superq(sysbuffr) ***; /* Note absence of ampersand */
9 %mend test;
10 %test;
*** Enter two values: ***
ERROR: Requested function is not supported.
|