%let year=2002; title "Sports & Outdoors Sales &year"; proc print data=sashelp.orsales; where year=&year; run;to become a stored process, change the code to look like this:
%global year; *processbody; %stpbegin; title "Sports & Outdoors Sales &year"; proc print data=sashelp.orsales; where year=&year; /* &year is a parameter from a user prompt */ run; %stpend;
The default is an ActiveX
device.1 ActiveX also
uses the default style such as Seaside.
|
||
1By default, the ACTIVEX device driver is used for graphs in stored process output. This format requires users to install a graph control on their local system in order to render the graph. However, to maintain a zero footprint on the client, SAS Web Report Studio does not require this installation. Therefore, when the stored process is run in SAS Web Report Studio, the ACTXIMG device driver is substituted so that a static image is created. Similarly, if the JAVA device driver is specified, then the JAVAIMG device driver is substituted automatically. |
Any report can include
a banner image in the header and footer of the report. Banner images
make it easier for report consumers to identify the report and to
distinguish the report from other reports. Banner images are stored
in
SAS Folders/System/Applications/SAS Web Report Studio/Common/BannerImages. 1 |
|
A report that includes
tables can use images to draw attention to items that might be of
particular interest to report consumers. A report creator can define
conditions and, for each condition, select an image that is displayed
in every table cell where the condition is met. Conditional highlighting
images are stored in
SAS Folders/System/Applications/SAS
Web Report Studio/Common/ConditionalHighlightingImages .1 |
|
1In SAS Web Report Studio
4.2, this folder is located in SAS Folders/System/Applications/SAS
Web Report Studio/Web Report Studio 4.2 . When you upgrade to
SAS Web Report Studio 4.31, existing images remain in the old folder
(so that referencing reports continue to work) and are also copied
to the new folder.
|
LocalServerFonts.xml.sample
and LocalClientFonts.xml.sample
files
that reside in the SAS-configuration-directory \Lev1\Web\Applications\SASWebReportStudio4.3\customer
folder.
To create the files:
<?xml version="1.0" encoding="UTF-8"?> <fonts> <font actualfont="Arial" displayfont="Arial" /> <!-- more fonts --> </fonts>
actualfont
attribute is
the font name that is stored in the report. The value for this attribute
should match the name of the font on the system. If they differ,
a font substitution can occur. The displayfont
attribute
is the font name that is displayed to users.
jre.../lib/fonts
directory.
See your UNIX or z/OS documentation for commands that apply to font
installations.
LocalServerFonts.xml
and LocalClientFonts.xml
file
for SAS Web Report Viewer in a similar way. Make a copy of each respective
sample file in the SAS-configuration-directory\Lev1\Web\Applications\SASWebReportViewer4.3\customer
directory
and add your fonts to the copy.
rootlocations
property.
If you list multiple locations, separate the entries with commas.
With these settings, a relational information map is eligible for
use in SAS Web Report Studio only if it is located in the folder path
(or its subdirectories).
ReportStudio
storage
structure. SAS Web Report Studio treats the ODS output as a report,
allowing a user to display, move, rename, and delete the output as
with any other report. However, this type of report cannot be edited
from SAS Web Report Studio.
filename dest sasxprrp "SBIP://METASERVER/Department1/2008/Users/xyz/Reports" userid="xyz" password="bip2004" domain="thisDomain" OMRHost="bipsvrxyz.na.sas.com" OMRPort="9999" OMRUser="xyz" OMRPassword="bip2004" OMRReposName="FOUNDATION" ; option noovp; ods sasreport file="myreport.xml" path=dest; proc print data=sashelp.class; run; ods sasreport close;
SBIP://METASERVER/Department1/2008/Reports/MyReport.srx
specifies
the location of a report named MyReport within
a repository named Foundation. [return]