<?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 ISSUE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835288#M922273</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;Check this if  it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : so_date for sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so_date-sign = 'I' .&lt;/P&gt;&lt;P&gt;so_date-option = 'EQ' .&lt;/P&gt;&lt;P&gt;so_date-low  = sy-datum - 5 .&lt;/P&gt;&lt;P&gt;APPEND so_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 May 2008 02:42:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-19T02:42:13Z</dc:date>
    <item>
      <title>SELECTION SCREEN ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835285#M922270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In sedlction-screen I am displaying a date in select-options as i/p.I want to default the value for low and high when the input screen appears.&lt;/P&gt;&lt;P&gt;ie&lt;/P&gt;&lt;P&gt;creation date  1.5.2008  -low          17.5.2008 sy-datum-high (select options) in input screen.&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 May 2008 17:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835285#M922270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-18T17:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835286#M922271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi veera suganya  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;In the initialization event u can specify any default values.&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;Initialization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_Date-low  =  '20080501'.&lt;/P&gt;&lt;P&gt;s_date-high = '20080517'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These values will come as default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 May 2008 18:30:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835286#M922271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-18T18:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835287#M922272</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 do as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
tables : bsis.

select-options : so_budat for bsis-budat.

INITIALIZATION.

so_budat-sign = 'I'.
so_budat-option = 'BT'.
so_budat-low = '01.05.2008'.
so_budat-high = '17.05.2008'.
append so_budat.

OR

"You can use the same code as At selection-screen output event as below.

at selection-screen output.
so_budat-sign = 'I'.
so_budat-option = 'BT'.
so_budat-low = '01.05.2008'.
so_budat-high = '17.05.2008'.
append so_budat.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 May 2008 18:35:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835287#M922272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-18T18:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835288#M922273</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;Check this if  it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : so_date for sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so_date-sign = 'I' .&lt;/P&gt;&lt;P&gt;so_date-option = 'EQ' .&lt;/P&gt;&lt;P&gt;so_date-low  = sy-datum - 5 .&lt;/P&gt;&lt;P&gt;APPEND so_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 02:42:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835288#M922273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T02:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835289#M922274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Veera,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The most accurate solution came from Sriram Ponna. His/her formatting is not correct: The ...-LOW and ,,,-HIGH fields require a SYSTEM date format, i.e YYYYMMDD. Your statements in either INITIALIZATION or AT SELECTION-SCREEN OUTPUT have to look like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;wa_so_date-sign = 'I'.
wa_so_date-option= 'BT'.
wa_so_date-low = '20080501'.
wa_so_date-high = '20080517'.
append wa_so_date to so_date. "using a structure instead of a header line is better!!&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dates on the screen appear as you have configured your date-display (under System-&amp;gt;User Profile-&amp;gt;Own Data and Defaults-tab)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great success,&lt;/P&gt;&lt;P&gt;Heinz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 04:58:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835289#M922274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T04:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835290#M922275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi , &lt;/P&gt;&lt;P&gt;if u want low value default as a first date of current month , then try this ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : date like sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concanetate '01' date+3(10) into date-low  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date low gives u the first date of current months as a default .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 05:05:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835290#M922275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T05:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835291#M922276</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 decalre the values in th event &lt;STRONG&gt;INITIALIZATION&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;       This event is the one which is triggerd before showing the selection screen. here you cann declare the deault values or frequently used values.&lt;/P&gt;&lt;P&gt;&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;Rgds&lt;/P&gt;&lt;P&gt;Umakanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 05:53:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue/m-p/3835291#M922276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T05:53:27Z</dc:date>
    </item>
  </channel>
</rss>

