<?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: Editing HTML in SMC in Developers</title>
    <link>https://communities.sas.com/t5/Developers/Editing-HTML-in-SMC/m-p/127142#M3946</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So your stored proces uses %stpbegin / %stpend to stream results to web browser, using Stored Process Web App?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, it is possible to have a stored process write the html results to a file instead of sending the results to _webout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you add:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let _odsoptions=&amp;amp;_odsoptions file="/mydir/myfile.htm " ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before you call %stpbegin, the results will be written to myfile.htm instead of going to _webout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to then "manually" edit the html, I suppose you could do that with a data _null_ step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then could stream the edited html back to _webout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure this is a great path to go down (there are a lot of ways to produce custom html without manually editing the html), but should be possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH,&lt;/P&gt;&lt;P&gt;--Q.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Mar 2013 17:29:21 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2013-03-05T17:29:21Z</dc:date>
    <item>
      <title>Editing HTML in SMC</title>
      <link>https://communities.sas.com/t5/Developers/Editing-HTML-in-SMC/m-p/127139#M3943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I edit the HTML associated with a SP using the SMC?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 20:46:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Editing-HTML-in-SMC/m-p/127139#M3943</guid>
      <dc:creator>Bluedog</dc:creator>
      <dc:date>2013-03-04T20:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Editing HTML in SMC</title>
      <link>https://communities.sas.com/t5/Developers/Editing-HTML-in-SMC/m-p/127140#M3944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In what way "associated"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 15:06:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Editing-HTML-in-SMC/m-p/127140#M3944</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2013-03-05T15:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Editing HTML in SMC</title>
      <link>https://communities.sas.com/t5/Developers/Editing-HTML-in-SMC/m-p/127141#M3945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I create stored procedures that I execute as web apps.&amp;nbsp; I use the SMC to define metadata, prompts, location of source code, etc.&amp;nbsp; Just want to know how to edit the HTML.&amp;nbsp; I've seen some documentation that writes to webout programatically.&amp;nbsp; Can the HTML be edited and saved?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 15:38:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Editing-HTML-in-SMC/m-p/127141#M3945</guid>
      <dc:creator>Bluedog</dc:creator>
      <dc:date>2013-03-05T15:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Editing HTML in SMC</title>
      <link>https://communities.sas.com/t5/Developers/Editing-HTML-in-SMC/m-p/127142#M3946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So your stored proces uses %stpbegin / %stpend to stream results to web browser, using Stored Process Web App?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, it is possible to have a stored process write the html results to a file instead of sending the results to _webout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you add:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let _odsoptions=&amp;amp;_odsoptions file="/mydir/myfile.htm " ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before you call %stpbegin, the results will be written to myfile.htm instead of going to _webout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to then "manually" edit the html, I suppose you could do that with a data _null_ step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then could stream the edited html back to _webout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure this is a great path to go down (there are a lot of ways to produce custom html without manually editing the html), but should be possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH,&lt;/P&gt;&lt;P&gt;--Q.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 17:29:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Editing-HTML-in-SMC/m-p/127142#M3946</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2013-03-05T17:29:21Z</dc:date>
    </item>
  </channel>
</rss>

