‎2007 Sep 06 3:17 AM
Im trying to find a function module that allows me to add dates to a current date. I would like the user to insert the number of days for shipping and have the program automatically calculate the delivery date based on SY-datum. Any help is appreciated. Thanks you for your time.
‎2007 Sep 06 3:21 AM
‎2007 Sep 06 3:22 AM
Check this
DATA: datum TYPE sy-datum.
datum = sy-datum + 45.
WRITE : datum.Regards
Gopi
‎2007 Sep 06 7:23 AM
Hello Cullen
Since you are posting your question in the OO forum I can recommend class <b>CL_RECA_DATE</b>.
Have a look at its several useful methods.
Regards
Uwe