‎2007 Sep 14 6:40 AM
hi........
do we have any system variable for current year.........
‎2007 Sep 14 6:41 AM
Hello Deepthi
No, but you can use
gd_current_year = syst-datum+0(4).Regards
Uwe
‎2007 Sep 14 6:42 AM
‎2007 Sep 14 7:11 AM
Hi,
I think there is no system variable for getting current year. You can try like this:
data: zyyyy(4), v_date like sy-datum.
v_date = sy-datum.
zyyyy = v_date+0(4).
write zyyyy.
Regards,
Bhaskar