‎2008 Jul 04 3:49 PM
Hi Guys!
Plz give me the call function used to calculate the date after (n) days.
I find FM "HR_NO_DATE_AFTER_TRYGDEDAYS",which serves same as i ask for but the thing is,it takes saturday and sunday into consideration.
Your reply will be appreciated.
Warm Regards,
Mohandoss P.
‎2008 Jul 04 3:53 PM
simply add the number of days to the date you want.
v_date = sy-datum + 10.
or
data v_number_of_days type i.
v_date = sy-datum + v_number_of_days
‎2008 Jul 04 3:53 PM
simply add the number of days to the date you want.
v_date = sy-datum + 10.
or
data v_number_of_days type i.
v_date = sy-datum + v_number_of_days
‎2008 Jul 04 3:55 PM
I think this is the one you are looking for
WDKAL_DATE_ADD_FKDAYS