2008 Jan 10 9:55 AM
My OutPut should be like 12:2900 = hh:mmss
i want : column to be inserted between hh and mm in sy-uzeit
can any solve this.
2008 Jan 10 9:58 AM
Use SPLIT and CONCATENATE command and you can get any format of your wish.
2008 Jan 10 9:58 AM
Hi
Use this statement
Write SY-UZEIT using edit-mask '__:____'.
~ Ranganath
2008 Jan 10 10:00 AM
Hi Vijay,
Try this.
WRITE:/ sy-uzeit USING EDIT MASK '__:____'.
awrd points if helpful
Bhupal
2008 Jan 10 10:02 AM
DATA : v_time(8).
concatenate sy-uzeit0(2) ':' sy-uzeit2(2)
sy-uzeit+4(2) into v_time.
Pls. reward if useful...
2008 Jan 10 10:08 AM
Hi Vijay,
just observe the following code.
write:/ sy-uzeit using edit mask '__:__:__'.
reward points,if it is helpful.
thanks
chandu
2008 Jan 10 10:35 AM
Hi Vijay,
You can use the following code to get the ouptut time in the format hh:mmss
write:/ sy-uzeit using edit mask '__:____'.
The number of underscore characters in the edit mask depend on the number of digits you want to be displayed.For your requirement you will have 2 underscores before the colon and 4 after the colon.
Reward points if helpfull.
Thanks,
Kashyap Ivaturi