<?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: change default ods style for stored processes called through stored process web application in Developers</title>
    <link>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102882#M3763</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i was hoping there would be a general option, looks like there is not.&lt;/P&gt;&lt;P&gt;your work-around may be the best option, thanks Don.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Apr 2013 14:08:31 GMT</pubDate>
    <dc:creator>bheinsius</dc:creator>
    <dc:date>2013-04-17T14:08:31Z</dc:date>
    <item>
      <title>change default ods style for stored processes called through stored process web application</title>
      <link>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102879#M3760</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;is it possible to set a default ods style for all stored processes that i execute through the SAS Stored Process Web Application?&lt;/P&gt;&lt;P&gt;currently, if I don't specify one I get the gray default style and have to specify a hidden prompt for _odsstyle on every stored process to change it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks Bart&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2012 16:37:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102879#M3760</guid>
      <dc:creator>bheinsius</dc:creator>
      <dc:date>2012-12-18T16:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: change default ods style for stored processes called through stored process web application</title>
      <link>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102880#M3761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;bump&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Apr 2013 20:00:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102880#M3761</guid>
      <dc:creator>bheinsius</dc:creator>
      <dc:date>2013-04-15T20:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: change default ods style for stored processes called through stored process web application</title>
      <link>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102881#M3762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the request init facility that runs the code in the specified file before every stored process and just add something like this to the program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%global _odsStyle;&lt;/P&gt;&lt;P&gt;%let _odsStyle = %sysfunc(&amp;amp;_odsStyle,sasweb);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which will leave any provided value alone, but if none is provided it will set it to (in this case) sasweb. Just change sasweb to whatever your desired style is.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 13:56:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102881#M3762</guid>
      <dc:creator>DonH</dc:creator>
      <dc:date>2013-04-17T13:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: change default ods style for stored processes called through stored process web application</title>
      <link>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102882#M3763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i was hoping there would be a general option, looks like there is not.&lt;/P&gt;&lt;P&gt;your work-around may be the best option, thanks Don.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 14:08:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102882#M3763</guid>
      <dc:creator>bheinsius</dc:creator>
      <dc:date>2013-04-17T14:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: change default ods style for stored processes called through stored process web application</title>
      <link>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102883#M3764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;btw your code is syntactically incorrect:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;15&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %global _odsstyle;&lt;/P&gt;&lt;P&gt;16&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let _odsStyle = %sysfunc(&amp;amp;_odsStyle,sasweb);&lt;/P&gt;&lt;P&gt;ERROR: Function name missing in %SYSFUNC or %QSYSFUNC macro function reference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 14:16:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102883#M3764</guid>
      <dc:creator>bheinsius</dc:creator>
      <dc:date>2013-04-17T14:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: change default ods style for stored processes called through stored process web application</title>
      <link>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102884#M3765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, left out the coalescec function (which returns the first non-blank/non-missing argument):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%global _odsStyle;&lt;/P&gt;&lt;P&gt;%let _odsStyle = %sysfunc(coalescec(&amp;amp;_odsStyle,sasweb));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 14:51:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102884#M3765</guid>
      <dc:creator>DonH</dc:creator>
      <dc:date>2013-04-17T14:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: change default ods style for stored processes called through stored process web application</title>
      <link>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102885#M3766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Information on the request init/term program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Usage Note &lt;EM&gt;39250: &lt;/EM&gt;SAS® 9.2 Stored Process Server enhancements: Request Init and Term programs, Session Init and Term programs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/kb/39/250.html"&gt;http://support.sas.com/kb/39/250.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vince DelGobbo&lt;/P&gt;&lt;P&gt;SAS R&amp;amp;D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 17:21:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/change-default-ods-style-for-stored-processes-called-through/m-p/102885#M3766</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2013-04-18T17:21:33Z</dc:date>
    </item>
  </channel>
</rss>

