Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

time conversion

Former Member
0 Likes
452

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
380

Hi,

Loop at itab.

if itab-ISMNE = 'M'.

itab-ISMNW = itab-ISMNW /60.

modify itab.

endif.

endloop.

Best regards,

Prashant

1 REPLY 1
Read only

Former Member
0 Likes
381

Hi,

Loop at itab.

if itab-ISMNE = 'M'.

itab-ISMNW = itab-ISMNW /60.

modify itab.

endif.

endloop.

Best regards,

Prashant