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 2005, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 28 Jun 2005 14:17:40 -0400
Reply-To:     "Fehd, Ronald J" <rjf2@CDC.GOV>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Fehd, Ronald J" <rjf2@CDC.GOV>
Subject:      SAS Add-In for MS ofc
Content-Type: text/plain; charset="us-ascii"

SAS Add-in for Microsoft Office -- Leveraging SAS Throughout the Organization from Microsoft Office http://www2.sas.com/proceedings/sugi29/223-29.pdf

The two wrapper macros for stored procedures are in C:\Program Files\SAS\SAS 9.1\inttech\sasmacro\stpbegin.sas 567 lines C:\Program Files\SAS\SAS 9.1\inttech\sasmacro\stpend.sas 221 lines

an example of a Stored Process (program)

%global gender; %stpbegin; /*initialize ODS processing of output */ proc print data = sashelp.class where (sex = "&gender"); run; %stpend; /* terminate ODS processing of output */

the global macro variable gender must be registered in the SAS metadata of the Stored Process Server.

very interesting concept: type-checking of macro variables. which is done by Java, (or .Net)

Ron Fehd the macro maven CDC Atlanta GA USA RJF2 at cdc dot gov

Your task is simple: remove the difference between how things should be and how they really are. -- Ashleigh Brilliant pot-shot #4247

Efficiency is intelligent laziness. -David Dunham


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