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

MiliSec FM

Former Member
0 Likes
604

Hi friends

I need to know the system time miliseconds or something like this.

In sy-uzeit contains time but in hh:mm:ss and but i need more precision.

Best Regards

Hi friends

I need to know the system time miliseconds or something like this.

In sy-uzeit contains time but in hh:mm:ss and but i need more precision.

Best Regards

4 REPLIES 4
Read only

sridhar_k1
Active Contributor
0 Likes
571

use get time stamp into a variable of type timestampl.

Regards

Sridhar

Read only

0 Likes
571

Use the Long version.



report zrich_0001.



data: ts type timestampl.
data: frac type p decimals 7.


do 50 times.

get time stamp field ts.
frac = frac( ts ).
write:/ frac.

enddo.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
571

Ah this is of much help. It's a shame the creator did not have the decency to mark this as Answered. But that is life..

Read only

Former Member
0 Likes
571

Glad to oblige

Rob

Did not mean to imply that I am either the creator or the Creator!

Edited by: Rob Burbank on Mar 27, 2009 6:30 PM