‎2007 Sep 07 6:27 PM
Hi all,
In my selection screen date field is mandatory. So by default it is picking up dates from today to 14 days from now. for example today is 09/07/2007.so 14 days from now will be 09/21/2007.
So in range it is taking as 09/07/2007 to 09/21/2007 by default. But i want only 7 days from now. That is 09/07/2007 to 09/14/2007 by default.
Please help me in this.
Regards,
vineel
Message was edited by:
vineel kumar
‎2007 Sep 07 6:36 PM
Hi,
In the INITIALIZATION event
s_date-low = sy-datum
s_date-high = sy-datum + 7.
s_date-sign = 'I'
s_date-option = 'EQ'.
append s_date.
, a®
‎2007 Sep 07 6:34 PM
Why dont you populate your date range accordingly in the INITIALIZE event of the report
‎2007 Sep 07 6:34 PM
‎2007 Sep 07 6:36 PM
Hi,
In the INITIALIZATION event
s_date-low = sy-datum
s_date-high = sy-datum + 7.
s_date-sign = 'I'
s_date-option = 'EQ'.
append s_date.
, a®