‎2007 Aug 29 10:42 AM
Hi friends
i want to import some current time to one function module...(only time : the format is (HH:MM:SS)..
for this i want to declare a variable.. for this what type od data type can i use..
ex: DATA : ctime TYPE I or ?
regards
Babu
‎2007 Aug 29 10:45 AM
hi,
Make use of Char type with 10.
data: t_time(10) type char .
reward points if its useful
regards,
vijay
‎2007 Aug 29 10:45 AM
hi,
Make use of Char type with 10.
data: t_time(10) type char .
reward points if its useful
regards,
vijay
‎2007 Aug 29 11:21 AM
Hi,
Declare a variable
<b>DATA: curr_time(6) type c.</b>
Get current time into the variable by passing sy-uzeit to the variable i.e.
<b>curr_time = sy-uzeit.
</b>
For further processing of time in HRS,MIN $ Sec format, you can <b>use offset concept</b> with the variable <b>curr_time.</b>
*Always reward points for useful answers
Regards,
Amit
‎2007 Aug 29 11:25 AM