Use image in a SAS Stored Process's HTML Stream

后端 未结 3 920
自闭症患者
自闭症患者 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:10

    When you define pictures in SAS metadata, it can be accessed via SAS Content server. To get picture URL log into: 'https://severhost/SASContentServer/repository/default/sasfolders' and search for your picture.

    If you defined your picture in catalog /Products/SAS Enterprise GRC/PictureName.gif, it should be accessible from adres 'https://severhost/SASContentServer/repository/default/sasfolders/Products/SAS Enterprise GRC/PictureName.gif(Report)'

    Of course you have to remember, that customer user need to have access permission in SAS Metadata to read picture object.

    If this won't solve your problem, please type which version of SAS software you are using.

提交回复
热议问题