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

time stamp

Former Member
0 Likes
498

Hello,

how can I create time stamp with abap ?

Regards

sas

4 REPLIES 4
Read only

Former Member
0 Likes
470

hi

DATA x type sy-uzeit.

x = sy-uzeit.

write x.

you wil get time

if not please b clear in ur query

Regards

Read only

Former Member
0 Likes
470

hi,

check this thread

hope it may help you.

thanks

Sachin

Read only

GauthamV
Active Contributor
0 Likes
470

hi,

check this.

[https://forums.sdn.sap.com/click.jspa?searchID=19390282&messageID=844658]

Read only

Former Member
0 Likes
470

Hi,

simple one.

DATA:SERIAL(20)          TYPE C.

CONCATENATE SY-DATUM '_' SY-UZEIT  INTO SERIAL.

Rhea.