‎2007 May 17 6:51 AM
Hi all,
I have a problem in displaying time field in the out put. I am getting the output of the time field as 145337 . But i want this to be 14:53:37 . Is there any function module to convert it to this format. if yes please let me know. My data is in one internal table.
‎2007 May 17 7:00 AM
Hi,
Check these function modules:
1. CONVERT_TIME_INPUT
2. TIME_CHECK_PLAUSIBILITY
Hope this helps.
Regards,
Parvez
‎2007 May 17 6:55 AM
‎2007 May 17 7:00 AM
Hi,
Check these function modules:
1. CONVERT_TIME_INPUT
2. TIME_CHECK_PLAUSIBILITY
Hope this helps.
Regards,
Parvez
‎2007 May 17 7:00 AM
Hi,
pls check with dis code
DATA time TYPE sy-uzeit.
DATA time4(4).
DATA txt(10).
txt = '9::57'.
WHILE txt CA ':'.
REPLACE ':' WITH space INTO txt.
ENDWHILE.
CONDENSE txt NO-GAPS.
UNPACK txt TO time4.
MOVE time4 TO time.
Reward if it helpful
Thanks
Vana