‎2008 Jul 30 8:47 AM
Hai Friends,
I want a function module for the following requirement:
i have the current date: 30-07-2008
No of days in this year: 365
I want the date for the next year. 29-07-2009
I have function module to get the date for the previous year
"RM_GO_BACK_N_DAYS".
I want the date for the next year.
Thanks.
‎2008 Jul 30 8:55 AM
Hi!
Please try out the RE_ADD_MONTH_TO_DATE fm.
Add 12 months to the given old date.
Regards
Tamá
‎2008 Jul 30 8:55 AM
Hi!
Please try out the RE_ADD_MONTH_TO_DATE fm.
Add 12 months to the given old date.
Regards
Tamá
‎2008 Jul 30 8:57 AM
T,
HR_JP_ADD_MONTH_TO_DATE
call function 'HR_JP_ADD_MONTH_TO_DATE'
exporting
iv_monthcount = 12
iv_date = sy-datum
importing
ev_date = result.Amit.
‎2008 Jul 30 3:49 PM