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

Need Functional Module for Converting Hours to time and second

Former Member
0 Likes
580

Hi Experts,

I need Function module through which i can pass source and target for Time such as Hours, Minute, Second any of the above and can convert it in to any of the above Combination.

H->M

H->S

M->S

M->H

S->H

S->M

S: Second

M: minute

H: Hour

Thanks

Hi Experts,

I need Function module through which i can pass source and target for Time such as Hours, Minute, Second any of the above and can convert it in to any of the above Combination.

H->M

H->S

M->S

M->H

S->H

S->M

S: Second

M: minute

H: Hour

Thanks

2 REPLIES 2
Read only

Former Member
0 Likes
554

Hi

But why u don't do it by yourself?

H-> M = H * 60

H-> S = H * 3600

M-> S = M * 60

M-> H = M / 60

S-> H = S / 3600

S-> M = S / 60

Max

Read only

former_member156446
Active Contributor
0 Likes
554

/SDF/CMO_TIME_DIFF_GET should serve some of the requirement..