Question:
I know the current date which is sy-datum and I
want to find the current date minus 4.
Please can you share the code to find the date
from current day minus 4
Thanks
Charlotte
Answer:
Buy a book and learn ABAP. This is trivial and mostly explained in the first 2 Chapters.
_________________
--
Joe Ambush
Answer:
I know the current date which is sy-datum and I
want to find the current date minus 4.
Please can you share the code to find the date
from current day minus 4
Thanks
Charlotte
data: minus4 type d.
minus4 = sy-datum - 4.
There!