LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (February 2006, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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.


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