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

Function module to get the currency descriptions

Former Member
0 Likes
919

Hi All,

Is there any Function module to get the currency descriptions?

Here i need to populate the values like if the 1 dollar is there i have to display the amount as 1 dollar , if it is 12 dollars then i have to display the amount as 12 dollar(s).

Example: 1 Dollar (singular)

1000 Dollars (plural)

Thanks,

Vijay

Hi All,

Is there any Function module to get the currency descriptions?

Here i need to populate the values like if the 1 dollar is there i have to display the amount as 1 dollar , if it is 12 dollars then i have to display the amount as 12 dollar(s).

Example: 1 Dollar (singular)

1000 Dollars (plural)

Thanks,

Vijay

2 REPLIES 2
Read only

Former Member
0 Likes
628

Hi,

use the table TCURC for getting the currency description.

if it is more than append 'S' to that description.

rgds,

bharat.

Read only

Former Member
0 Likes
628

to get descriptions use FM :

WB2_READ_CURRENCY_TEXT

if v_amount_value is > 1.

concatenate v_text 's' into v_text.

endif.