Application Development 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: 

time stamp

Former Member
0 Kudos

Hello,

how can I create time stamp with abap ?

Regards

sas

4 REPLIES 4

Former Member
0 Kudos

hi

DATA x type sy-uzeit.

x = sy-uzeit.

write x.

you wil get time

if not please b clear in ur query

Regards

Former Member
0 Kudos

hi,

check this thread

hope it may help you.

thanks

Sachin

GauthamV
Active Contributor
0 Kudos

hi,

check this.

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

Former Member
0 Kudos

Hi,

simple one.

DATA:SERIAL(20)          TYPE C.

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

Rhea.