<?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: SAS BI Inormation Delivery Portal (Prompt Display Customization) in Developers</title>
    <link>https://communities.sas.com/t5/Developers/SAS-BI-Inormation-Delivery-Portal-Prompt-Display-Customization/m-p/274104#M4983</link>
    <description>I'm in the same boat as you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/87578"&gt;@dhudson73&lt;/a&gt;, but unfortunately I don't think SAS is likely to invest in generating prettier front ends for IDP / Stored Process Web App.   (I had hoped for a radio button prompt type, but that hope has gone away.)Basically they generate a minimum viable front-end for people who don't want to roll their own HTML.  But for people who want something pretty, I think SAS views that as out of their Scope.  That is, there are plenty of other places to learn how to make pretty front ends, and plenty of companies with web development solutions.  And once you know enough HTML/javascript to roll your own UI, it's mostly trivial to call SAS stored processes in the background.  But as a "SAS Developer", the challenge then becomes how much to become a web developer to support your SAS work.</description>
    <pubDate>Tue, 31 May 2016 14:28:41 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2016-05-31T14:28:41Z</dc:date>
    <item>
      <title>SAS BI Inormation Delivery Portal (Prompt Display Customization)</title>
      <link>https://communities.sas.com/t5/Developers/SAS-BI-Inormation-Delivery-Portal-Prompt-Display-Customization/m-p/273587#M4980</link>
      <description>&lt;P&gt;I have a project that requires more input parameters than can fit on the screen. The stored process was created in SAS EG and is linked to a collection portal in SAS BI. The paramteres are displayed vertically and users have to scroll down to input all of the parms. Is there a way to wrap the or customize the parms&amp;nbsp;layout&amp;nbsp;so they will all display on the initial screen?&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2016 14:26:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-BI-Inormation-Delivery-Portal-Prompt-Display-Customization/m-p/273587#M4980</guid>
      <dc:creator>dhudson73</dc:creator>
      <dc:date>2016-05-27T14:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS BI Inormation Delivery Portal (Prompt Display Customization)</title>
      <link>https://communities.sas.com/t5/Developers/SAS-BI-Inormation-Delivery-Portal-Prompt-Display-Customization/m-p/273816#M4981</link>
      <description>&lt;P&gt;There are a couple of ways, but neither of them are simple. One, is you can create a JSP based&amp;nbsp;&lt;A href="http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/stpwebapp.html#defaultform" target="_self"&gt;custom input form&lt;/A&gt;&amp;nbsp;for your Stored Process. This is how you would do it traditionally, but it involves redeployment of the whole stp webapp&amp;nbsp;war file, so is not something I would recommend.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alternatively, you could create a HTML form that submits the form values to a target stored process. This will give you complete control over the layout. SAS have&amp;nbsp;&lt;A href="http://support.sas.com/kb/37/050.html" target="_self"&gt;a very simple example here&lt;/A&gt;. You can&amp;nbsp;use a parameter value to decide whether this is the first time the STP was called (in which case output form html) or if it is a subsequent call (the STP calling itself, in which case process inputs).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How much experience do you have with HTML?&lt;/P&gt;</description>
      <pubDate>Sun, 29 May 2016 18:36:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-BI-Inormation-Delivery-Portal-Prompt-Display-Customization/m-p/273816#M4981</guid>
      <dc:creator>boemskats</dc:creator>
      <dc:date>2016-05-29T18:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS BI Inormation Delivery Portal (Prompt Display Customization)</title>
      <link>https://communities.sas.com/t5/Developers/SAS-BI-Inormation-Delivery-Portal-Prompt-Display-Customization/m-p/274078#M4982</link>
      <description>&lt;P&gt;Thanks, this is helpful. It pretty much confirms what I was thinking. I had hoped there was a more simplified solution.&amp;nbsp;For now, I'm just going to leave it as is. Hopefully, SAS will provide more customization capability around the front end that can be controlled in the BI environment in future releases.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 12:48:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-BI-Inormation-Delivery-Portal-Prompt-Display-Customization/m-p/274078#M4982</guid>
      <dc:creator>dhudson73</dc:creator>
      <dc:date>2016-05-31T12:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS BI Inormation Delivery Portal (Prompt Display Customization)</title>
      <link>https://communities.sas.com/t5/Developers/SAS-BI-Inormation-Delivery-Portal-Prompt-Display-Customization/m-p/274104#M4983</link>
      <description>I'm in the same boat as you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/87578"&gt;@dhudson73&lt;/a&gt;, but unfortunately I don't think SAS is likely to invest in generating prettier front ends for IDP / Stored Process Web App.   (I had hoped for a radio button prompt type, but that hope has gone away.)Basically they generate a minimum viable front-end for people who don't want to roll their own HTML.  But for people who want something pretty, I think SAS views that as out of their Scope.  That is, there are plenty of other places to learn how to make pretty front ends, and plenty of companies with web development solutions.  And once you know enough HTML/javascript to roll your own UI, it's mostly trivial to call SAS stored processes in the background.  But as a "SAS Developer", the challenge then becomes how much to become a web developer to support your SAS work.</description>
      <pubDate>Tue, 31 May 2016 14:28:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-BI-Inormation-Delivery-Portal-Prompt-Display-Customization/m-p/274104#M4983</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2016-05-31T14:28:41Z</dc:date>
    </item>
  </channel>
</rss>

