<?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 selection screen with 4 input in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511291#M1260211</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently i am worlking with aging report where in the selection screen i should give &lt;/P&gt;&lt;P&gt;4 input fields where i cant do with parameters or select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the any way i can do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date :   | first input box |    | second input box |   | third input box |   | fourth input box |&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advanced&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Apr 2009 02:53:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-24T02:53:05Z</dc:date>
    <item>
      <title>selection screen with 4 input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511291#M1260211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently i am worlking with aging report where in the selection screen i should give &lt;/P&gt;&lt;P&gt;4 input fields where i cant do with parameters or select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the any way i can do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date :   | first input box |    | second input box |   | third input box |   | fourth input box |&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advanced&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 02:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511291#M1260211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T02:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen with 4 input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511292#M1260212</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;Declare the parameters using SELECTION-SCREEN BEGIN OF LINE &amp;amp; END OF LINE.&lt;/P&gt;&lt;P&gt;text-s02  holds value 'Date :'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-s01.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(10) text-s02 for FIELD field1.
PARAMETER field1 type char10.
PARAMETER field2 type char10.
PARAMETER field3 type char10.
PARAMETER field4 type char10.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK b1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 03:19:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511292#M1260212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T03:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen with 4 input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511293#M1260213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt; You can use SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;try this out &lt;/P&gt;&lt;P&gt;REPORT  ZSAYC_TEST2.&lt;/P&gt;&lt;P&gt;TABLES: mara.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;     PARAMETERS: p_matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;                 p_matnr1 like mara-matnr,&lt;/P&gt;&lt;P&gt;                 p_matnr2 like mara-matnr,&lt;/P&gt;&lt;P&gt;                 p_matnr3 like mara-matnr.&lt;/P&gt;&lt;P&gt;   SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF BLOCK blk1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sayan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 03:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511293#M1260213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T03:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen with 4 input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511294#M1260214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot and i solved..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 03:58:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511294#M1260214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T03:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen with 4 input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511295#M1260215</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;   You can achieve with the screen painter se51. Goto se51 and give your program name and screen no as 1000 and goto the layout editor where you can do what ever modifications you want to do for that report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 04:04:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-4-input/m-p/5511295#M1260215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T04:04:11Z</dc:date>
    </item>
  </channel>
</rss>

