<?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: selection screen design in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711758#M893554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;1.define the parameters. let us say P1, P2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. No need to write any code under the event "At selection     screen output" as we are not changing any screen attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Under the event Start of selection&lt;/P&gt;&lt;P&gt;     if  P1 is not initial&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;select query&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;     if P2 is not initial.&lt;/P&gt;&lt;P&gt;          &lt;STRONG&gt;select query&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Umakanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 May 2008 05:14:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-06T05:14:46Z</dc:date>
    <item>
      <title>selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711754#M893550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear all,&lt;/P&gt;&lt;P&gt;i need to design a selection screen with two parameter fields,&lt;/P&gt;&lt;P&gt;sales oredr and nitification&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i give a input to any one of the entries,the report has to display the output,it should be as parameters option but not the radiobuttons.&lt;/P&gt;&lt;P&gt;let me know the code for this..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 04:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711754#M893550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T04:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711755#M893551</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;&lt;/P&gt;&lt;P&gt;User action should be there after giving the input to the parameter. with out that it will work? i don't think so....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;madan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 04:47:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711755#M893551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T04:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711756#M893552</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;    U try this code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_BUKRS LIKE YFIIN_TRSY_GAIN-BUKRS OBLIGATORY,&lt;/P&gt;&lt;P&gt;            P_ANNEE LIKE YFIIN_TRSY_GAIN-ANNEE OBLIGATORY,&lt;/P&gt;&lt;P&gt;            SELECTION-SCREEN: END OF BLOCK B2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF P_BUKRS  IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM EKKO INTO TABLE I_TAB WHERE BUKRS EQ P_BUKRS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSEIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM EKKO INTO TABLE I_TAB WHERE BUKRS EQ P_ANNEE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 04:50:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711756#M893552</guid>
      <dc:creator>saranwin</dc:creator>
      <dc:date>2008-05-06T04:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711757#M893553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters : P_VBELN like vbak-vbeln,&lt;/P&gt;&lt;P&gt;                    P_qmnum like vbak-qmnum.    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declre like that and use in u r select statement in where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Narasimha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 04:57:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711757#M893553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T04:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711758#M893554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;1.define the parameters. let us say P1, P2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. No need to write any code under the event "At selection     screen output" as we are not changing any screen attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Under the event Start of selection&lt;/P&gt;&lt;P&gt;     if  P1 is not initial&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;select query&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;     if P2 is not initial.&lt;/P&gt;&lt;P&gt;          &lt;STRONG&gt;select query&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Umakanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 05:14:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/3711758#M893554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T05:14:46Z</dc:date>
    </item>
  </channel>
</rss>

