<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Streaming Stored Process HTML in WRS in SAS Web Report Studio</title>
    <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Streaming-Stored-Process-HTML-in-WRS/m-p/131649#M1841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAS Web Report Studio can only render stored processes that conform to a specific set of rules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For details, see:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/47/839.html" title="http://support.sas.com/kb/47/839.html"&gt;47839 - SAS® Web Report Studio can only render stored processes that conform to a specific set of rules&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Nov 2013 14:56:48 GMT</pubDate>
    <dc:creator>Madelyn_SAS</dc:creator>
    <dc:date>2013-11-14T14:56:48Z</dc:date>
    <item>
      <title>Streaming Stored Process HTML in WRS</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Streaming-Stored-Process-HTML-in-WRS/m-p/131646#M1838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a question while i am developing a Stored Process.&lt;/P&gt;&lt;P&gt;I wanna build a Stored Process which generates HTML Output and include this in a WRS Report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if i include a Stored Process into WRS with code like this :&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_1378554044928343" jivemacro_uid="_1378554044928343"&gt;
&lt;P&gt;%global wantreg _odsoptions _odsdest _odsstyle _odsstylesheet;&lt;/P&gt;
&lt;P&gt;%let _odsstyle=plateau;&lt;/P&gt;
&lt;P&gt;%let _odsstylesheet=;&lt;/P&gt;
&lt;P&gt;%let _odsoptions=;&lt;/P&gt;
&lt;P&gt;options nodate nonumber missing='0' orientation=landscape;&lt;/P&gt;
&lt;P&gt;%stpbegin;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;select * from sashelp.class;&lt;/P&gt;
&lt;P&gt;quit;&lt;/P&gt;
&lt;P&gt;%stpend;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;everything is fine and i get a simple table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i wanna add some html output, i can not use %stpbegin .&lt;/P&gt;&lt;P&gt;So i use something like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13785543469519339" jivemacro_uid="_13785543469519339"&gt;
&lt;P&gt;%global wantreg _odsoptions _odsdest _odsstyle _odsstylesheet _result;&lt;/P&gt;
&lt;P&gt;%let _odsstyle=plateau;&lt;/P&gt;
&lt;P&gt;%let _odsstylesheet=;&lt;/P&gt;
&lt;P&gt;%let _odsoptions=;&lt;/P&gt;
&lt;P&gt;%let _result = stream;&lt;/P&gt;
&lt;P&gt;options nodate nonumber missing='0' orientation=landscape;&lt;/P&gt;
&lt;P&gt;data _null_;&lt;/P&gt;
&lt;P&gt;file _webout;&lt;/P&gt;
&lt;P&gt;put "&amp;lt;h1&amp;gt;Test&amp;lt;/h1&amp;gt;";&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know a solution to put html code into a Stored Process and use this STP in a WRS Report?&lt;/P&gt;&lt;P&gt;It works fine with data _null_ ; file _webout .... within a normal STP from the SAS Portal but not within a simple WRS Report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think WRS needs the %stpbegin ... ; &lt;/P&gt;&lt;P&gt;Is there a solution to define Html Code between %stpbegin and %stpend?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for help,&lt;/P&gt;&lt;P&gt;Marius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Sep 2013 11:54:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/Streaming-Stored-Process-HTML-in-WRS/m-p/131646#M1838</guid>
      <dc:creator>mariusg</dc:creator>
      <dc:date>2013-09-07T11:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: Streaming Stored Process HTML in WRS</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Streaming-Stored-Process-HTML-in-WRS/m-p/131647#M1839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not really my area of expertise - but I'm a reasonably good "Googler". I believe below link will explain to you what's going on and also give you the idea of how to approach this.&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/inet2stp.html" title="http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/inet2stp.html"&gt;SAS Stored Processes: Converting SAS/IntrNet Programs to Stored Processes&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Sep 2013 11:48:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/Streaming-Stored-Process-HTML-in-WRS/m-p/131647#M1839</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-09-08T11:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Streaming Stored Process HTML in WRS</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Streaming-Stored-Process-HTML-in-WRS/m-p/131648#M1840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Patrick, &lt;/P&gt;&lt;P&gt;thanks for your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your link is a Note :&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #333333; font-family: Arial, Helvetica, Verdana, sans-serif;"&gt;Note:&lt;/STRONG&gt;&lt;SPAN style="color: #333333; font-family: Arial, Helvetica, Verdana, sans-serif;"&gt; SAS/IntrNet programs converted to stored processes using the techniques described here are intended to run in the SAS Stored Process Web Application. These stored processes &lt;STRONG&gt;might not run in other stored process clients (such as SAS Web Report Studio&lt;/STRONG&gt; or SAS Add-In for Microsoft Office.) Each client application has its own requirements for stored process behavior."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I am guessing, there is a different way to implement the above mentioned problem in SAS WRS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody knows the requirements for a Stored Process + Html Output in WRS or has more information for me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Marius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Sep 2013 15:01:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/Streaming-Stored-Process-HTML-in-WRS/m-p/131648#M1840</guid>
      <dc:creator>mariusg</dc:creator>
      <dc:date>2013-09-08T15:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Streaming Stored Process HTML in WRS</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Streaming-Stored-Process-HTML-in-WRS/m-p/131649#M1841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAS Web Report Studio can only render stored processes that conform to a specific set of rules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For details, see:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/47/839.html" title="http://support.sas.com/kb/47/839.html"&gt;47839 - SAS® Web Report Studio can only render stored processes that conform to a specific set of rules&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 14:56:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/Streaming-Stored-Process-HTML-in-WRS/m-p/131649#M1841</guid>
      <dc:creator>Madelyn_SAS</dc:creator>
      <dc:date>2013-11-14T14:56:48Z</dc:date>
    </item>
  </channel>
</rss>

