Use image in a SAS Stored Process's HTML Stream

后端 未结 3 931
自闭症患者
自闭症患者 2021-01-20 11:05

I am creating a report with SAS STP and I want to display a image(a logo) on the report. Okay here is what is happening:

data _null_;
    file _webout;
             


        
3条回答
  •  醉酒成梦
    2021-01-20 11:31

    I had a similar problem to you once. I have added the image to our intranet which happens to be SharePoint at the time. I defined that image to have public access level and then references in all my reports.

    The idea that since the report is only for internal audience, they all will have access to intranet, but not necessarily to the Content Server so it circumvents the problem that Bagin mentioned.

    If you don't have a suitable intranet, you could always reference a logo from your public website which is probably available to all of your audience even if they are external, but then you don't have control over that logo file and one day it might change in some undesirable way.

    Regards, Vasilij

提交回复
热议问题