<?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: help in SELECTION-SCREEN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353401#M519684</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 default the select-options values at INITIALIZATION event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
select-options: so_day for vtbbewe-atage default '1' to '2',
                so_time for sy-uzeit default sy-uzeit to sy-uzeit.  
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jun 2007 14:00:42 GMT</pubDate>
    <dc:creator>ferry_lianto</dc:creator>
    <dc:date>2007-06-05T14:00:42Z</dc:date>
    <item>
      <title>help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353400#M519683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hallow&lt;/P&gt;&lt;P&gt;i wont in my selection screen hours and days.&lt;/P&gt;&lt;P&gt;how i declare it&lt;/P&gt;&lt;P&gt; example&lt;/P&gt;&lt;P&gt;from hour     to  hour&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;same with day.&lt;/P&gt;&lt;P&gt;and in which field i catch the hour-low and high.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 13:58:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353400#M519683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T13:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353401#M519684</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 default the select-options values at INITIALIZATION event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
select-options: so_day for vtbbewe-atage default '1' to '2',
                so_time for sy-uzeit default sy-uzeit to sy-uzeit.  
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:00:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353401#M519684</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-06-05T14:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353402#M519685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antonio,&lt;/P&gt;&lt;P&gt;I haven't clearly understood your requirement. But I guess, you need to display the the current date and time in the selection screen, whenever your program is executed. If that is the case, you can go for SY-UZEIT and SY-DATUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, specify your requirement a little more clearly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anil Madhavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:01:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353402#M519685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353403#M519686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0003 .

data: d_hour type i,
      d_days type i.

select-options: s_hour for d_hour.
select-options: s_days for d_days.


start-of-selection.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich HEilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353403#M519686</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-06-05T14:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353404#M519687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try something like the following..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;selection-screen begin of line.
selection-screen comment 2(20) 'From Date &amp;amp; Time'(t01).
selection-screen position 40.
parameters:
              p_frdat like sy-datum.
selection-screen position 55.
parameters:
             p_frtim like sy-uzeit.
selection-screen end of line.
selection-screen begin of line.
selection-screen comment 2(20) 'To Date &amp;amp; Time'(t02).
selection-screen position 40.
parameters:
              p_todat like sy-datum.
selection-screen position 55.
parameters:
             p_totim like sy-uzeit.
selection-screen end of line.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353404#M519687</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-06-05T14:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353405#M519688</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;  create structure which contains days and hours,&lt;/P&gt;&lt;P&gt;  than use it in selct-options&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;regards,&lt;/P&gt;&lt;P&gt;Imran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:06:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353405#M519688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353406#M519689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes somthing like that but &lt;/P&gt;&lt;P&gt;if user wont to see report from 14:00 until 15:00.&lt;/P&gt;&lt;P&gt;where i find this fields&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:07:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353406#M519689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353407#M519690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For that you should be using SY-UZEIT as your field describer,  It is not a good idea to only try to use hours.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select-options: s_uzeit for sy-uzeit.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the user can enter,  14:00:00   to  15:00:00&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;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:10:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353407#M519690</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-06-05T14:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353408#M519691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ferry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if user wont to see report from 14:00 until 15:00.&lt;/P&gt;&lt;P&gt;where i find this fields becouse i use functin in my report and the function&lt;/P&gt;&lt;P&gt;wont date that the user put&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:10:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353408#M519691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353409#M519692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the System field SY-UZEIT , This will have the current time.&lt;/P&gt;&lt;P&gt;use the INITIALIZATION event to set the required values to teh Select options based on Current time &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;guarav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:12:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353409#M519692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353410#M519693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this hours i have to move to function that i use in my report  same is the day&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like s_uzeit-low and high &lt;/P&gt;&lt;P&gt;where i find them&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:13:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353410#M519693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353411#M519694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Within the Program an internal table will be created with the Name of the select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the following&lt;/P&gt;&lt;P&gt;data : v_time1 type SYUZEIT,&lt;/P&gt;&lt;P&gt;         v_time2 type SYUZEIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at S_TIME.&lt;/P&gt;&lt;P&gt; move s_time-low to v_time1.&lt;/P&gt;&lt;P&gt; move s_time-HIGH to v_time2.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the Variable V_TIME1 &amp;amp; V_TIME2 in the FM to pass these vaules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly be generous with points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:17:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353411#M519694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: help in SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353412#M519695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can read the select-option to get the values of low and high.  Of course this will only work if the user enters a from and to range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;read table s_uzeit index 1.
if sy-subrc  = 0.
 write:/  s_uzeit-low, 'to', s_uzeit-high.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:17:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-selection-screen/m-p/2353412#M519695</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-06-05T14:17:32Z</dc:date>
    </item>
  </channel>
</rss>

