In SAS 9.2 I have a stored procedure that I am displaying in a URL display portlet. What is the best location to store images such that I can call them in the stored processes.
I wasn’t sure if this should be in the stored processes section or SAS / Graph and ODS Graphics.
The display code is:
<IMG SRC="/SASStoredProcess/do?_program=
/WebApps/Utilities/Sales+by+Product&XPIXELS=
400&YPIXELS=300">
If you want to have, for example, a SAS procedure (GPLOT, SGPLOT, PROC TABULATE, etc) create a little html page that incorporates an image, I would put the image file somewhere that the SAS server can see. Then use the style template or proc syntax or whatever to display the image.
This paper for example describes how PROC REPORT can insert images into output.
http://www2.sas.com/proceedings/sugi27/p187-27.pdf
This paper has examples of inserting logos with SGPLOT
https://support.sas.com/resources/papers/proceedings11/277-2011.pdf
HTH.
What do you mean by call them [images] in the stored process?
I want to display a logo.
If you want to have, for example, a SAS procedure (GPLOT, SGPLOT, PROC TABULATE, etc) create a little html page that incorporates an image, I would put the image file somewhere that the SAS server can see. Then use the style template or proc syntax or whatever to display the image.
This paper for example describes how PROC REPORT can insert images into output.
http://www2.sas.com/proceedings/sugi27/p187-27.pdf
This paper has examples of inserting logos with SGPLOT
https://support.sas.com/resources/papers/proceedings11/277-2011.pdf
HTH.
On the same server that the stored procedure is being called from.
PUT "<tr><td><IMG SRC='https://myserver/banner.jpg'><td><tr>";
This link http://support.sas.com/kb/34/138.html did not work for me but might be useful for someone else.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.