‎2007 May 04 9:36 AM
hi to all,
how can i get date field like in parameters like
the following way
date from -
to -
thanks in advance
reddy
‎2007 May 04 9:39 AM
Hi
Declare selection screen like
select-options: v_date for sy-datum.
it will give the date from.........to...........
Reward points if useful
Regards
Anji
‎2007 May 04 9:39 AM
Hi
Declare selection screen like
select-options: v_date for sy-datum.
it will give the date from.........to...........
Reward points if useful
Regards
Anji
‎2007 May 04 9:39 AM
U can simply have the same date field as parameter for the report and then use it accordingly in ur program or u can also use select-options for ranges at selection screen.
‎2007 May 04 9:41 AM
thanks for your answers
but i need in the following way in parameters only
out put screen
date from -
to -
thanks & Regards
reddy
‎2007 May 04 9:45 AM
very awkward way to do it. simply declare parameters as follows
PARAMETERS: p_begda LIKE sy-datum,
p_endda LIKE sy-datum.
name the fields accordingly. this will give you date from on one line and to on the next.
‎2007 May 04 9:41 AM
why do you want to use parameters ? just use select-options
select-options: s_date for sy-datum.
hope this helps.