Retrieving Price-to-Earnings Data by Using ISON/ISONParams
/*----------------------------------------------------------------
SAS SAMPLE LIBRARY
Name: fsdex10.sas
Description: Example program from SAS/ETS User's Guide,
The SASEXFSD Interface Engine
Title: Retrieving Price-to-Earnings Data by Using ISON/ISONParams
Product: SAS/ETS Software
Keys: FactSet data extraction
Procs: SASEXFSD
Notes: Read this before you run this sample.
The sample data provided resides in the ets/sasmisc folder.
If you are using automap=READONLY, then you must copy the
map of your incoming XML data to a writeable folder before
using it. So, define a Windows system environment variable
,FACTSET, to the path of your writeable folder containing
the fsdex10.map file and FSDEX10.xml.
To assign a fileref to the external file to be processed,
use the following form of the libname statement:
libname xfsd sasexfsd "%sysget(FACTSET)"
factlet=ExtractDataSnapshot
ison='sp500'
isonparams='0,1'
item='pe'
date='20120401'
period=QTR
format=sml
outXml=fsdex10
automap=replace
mapref=MyMap
xmlmap="%sysget(FACTSET)fsdex10.map"
orientation=eti
user='<your FactSet username for internet FASTfetch access>'
pass='<your FactSet password for internet FASTfetch access>';
----------------------------------------------------------------*/
title 'Retrieve Price-to-Earnings Data by Using ISON/ISONPARAMS';
libname _all_ clear;
libname xfsd sasexfsd "%sysget(FACTSET)"
factlet=ExtractDataSnapshot
ison='sp500'
isonparams='0,1'
items='ff_pe'
dates='20110401'
period=QTR
format=sml
outXml=fsdex10
automap=replace
mapref=MyMap
xmlmap="%sysget(FACTSET)fsdex10.map"
orientation=eti
user='XXXXXXXXXXXXXXXX'
pass='XXXXXXXXXXXXXXXX';
data snapIson; set xfsd.fsdex10; run;
proc print data=snapIson(firstobs=1 obs=10); run;