‎2007 Aug 09 6:03 AM
Hi all,
In select-options .
How to set the how to set the default date duration is last 30 days ???
eg.
Upper Date : 09/08/2007 ( Current Date ---> SY-DATUM ) ????????
Lover date : 09/07/2007 ( Date b4 30 days of current date )
Thanks in advance..
Raj
‎2007 Aug 09 6:06 AM
‎2007 Aug 09 6:08 AM
Hi Raj
Good Morning!
in initialization event
s_date-low = sy-datum - 30.
s_date-high = sy-datum.
reward points to all helpful answers
kiran.M
‎2007 Aug 09 6:10 AM
hi,
AT SELECTION-SCREEN OUTPUT.
s_date-low = '09-07-2007'.
s_date-high = '09-08-2007'.
s_date-sign = 'I'.
s_date-option = 'BT'.
append s_date.
if helpful reward some points.
with regards,
Suresh Aluri.
‎2007 Aug 09 6:12 AM
hi.try like this
s_date-low = sy-datum - 30.
s_date-high = sy-datum.
‎2007 Aug 09 6:12 AM
Hi..
<b>select-options:</b>
s_date for sy-datum.
<b>initialization.</b>
s_date-high = sy-datum.
s_date-low = sy-datum - 30.
append s_date.