‎2005 Nov 17 11:17 AM
Hi,
Iam implementing exits. I am reading using
dynpvaluesread fm one date field from screen. but is coming in this form 12:00:00. So i want to convert this time format to sy-uzeit format. Is there any fmodule to do this.
rgds
p.kp
‎2005 Nov 17 11:20 AM
‎2005 Nov 17 11:20 AM
‎2005 Nov 17 11:21 AM
Hi Prasad,
Check these function modules may be it will help you.
<b>IB_CONVERT_INTO_TIMESTAMP</b>
<b>RKE_TIMESTAMP_CONVERT_INPUT</b>
Thanks & Regards,
Siri.
‎2005 Nov 17 11:21 AM
‎2005 Nov 17 11:23 AM
Hi,
You can do the following...
DATA: V_TIME(8), V_TIME1(8).
DATA: V_UZEIT LIKE SY-UZEIT.
CONCATENATE V_TIME5(2) V_TIME2(2) V_TIME+0(2)
INTO V_TIME1.
V_UZEIT = V_TIME1.
You can use v_uzeit.
12:00:00
Thanks,
Ramakrishna
‎2005 Nov 17 11:26 AM
hi
chek this
CONVERT_TIME_INPUT Convert a time from external to internal format
function group SCON Conversion to internal/external format
cheers