‎2007 Jun 01 11:03 AM
Hi all,
I need to convert time from AFRU-ISMNW which contains time and AFRU-ISMNE which contains unit (min or H) into hours.
like this.
+0072.75 = 72 hrs 45 mins into +007275.
Thanks,
Mungala.
‎2007 Jun 02 8:05 AM
Hi,
Loop at itab.
if itab-ISMNE = 'M'.
itab-ISMNW = itab-ISMNW /60.
modify itab.
endif.
endloop.
Best regards,
Prashant
‎2007 Jun 02 8:05 AM
Hi,
Loop at itab.
if itab-ISMNE = 'M'.
itab-ISMNW = itab-ISMNW /60.
modify itab.
endif.
endloop.
Best regards,
Prashant