Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Date function today.

Former Member
0 Likes
622

Hello,

Does exist any function to get the current date? For example, today: 24.04.2008

Thanks in advance,

Ricard.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
575

SY-DATUM gives you today's date.

write:/ sy-datum.

4 REPLIES 4
Read only

Former Member
0 Likes
576

SY-DATUM gives you today's date.

write:/ sy-datum.

Read only

S0025444845
Active Participant
0 Likes
575

Hi,

SY_DATUM gives the current date.

regards,

sudha

Edited by: sudha yadav on Apr 24, 2008 11:24 AM

Read only

former_member188829
Active Contributor
0 Likes
575

Hi,

DATA:DATE(10).

concatenate sy-datum6(2) '.' sy-datum4(2) '.' sy-datum+0(4) into date.

write:date.

Read only

Former Member
0 Likes
575

Use Sy-datum system field.

It gives current data.

Warm Regards

Kulvendra Kumar