Application Development 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: 

can anyone help me in displaying time in words mean if the time is 8:30

Former Member
0 Kudos

hi all ,

i want to display time in 8:30 it has to display eight thirty

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Vamsee,

Just concatenate hours and minutes in separate variable using offset.

Then use FM SPELL_AMOUNT to convert these into workds.

Finally concatenate them.

Hope this will help.

Regards,

Nitin.

5 REPLIES 5

Former Member
0 Kudos

Hi Vamsee,

Just concatenate hours and minutes in separate variable using offset.

Then use FM SPELL_AMOUNT to convert these into workds.

Finally concatenate them.

Hope this will help.

Regards,

Nitin.

Former Member
0 Kudos

use spell amount fm..

Regards

Anbu B

former_member203501
Active Contributor
0 Kudos

see this ..

Former Member
0 Kudos

Separate hour and minutes and pass it to FM HR_IN_CHG_INR_WRDS one by one.

Remove "Rupees" from it.

Flow

split time into hour min at ':'.

Call FM HR_IN_CHG_INR_WRDS with input as hour.

Replace "Rupees" with space in hour_output.

Call FM HR_IN_CHG_INR_WRDS with input as min.

Replace "Rupees" with space in min_output.

condense hour_output no-gaps.

condense min_output no-gaps.

concatenate hou_output min_output in final_output separated by space.

Regards,

Mohaiyuddin

Former Member
0 Kudos

Hi Krishna,

See this thread. Hope this will be helpful to you.

Thanks

Nitesh