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

Former Member
0 Likes
496

Hi all,

Is there any Function Module which converts numerical data into currency data.

Thanks in advance.

Prince

3 REPLIES 3
Read only

Former Member
0 Likes
359

Hi Prince,

you can use this <b>HRCM_STRING_TO_AMOUNT_CONVERT</b>

pass the string, with decimal separator, thousand separator . it will convert it to amount.

U can also try these

<b>CONVERT_TO_FOREIGN_CURRENCY</b> (Convert local currency to foreign currency).

<b>CONVERT_TO_LOCAL_CURRENCY</b> ( Convert from foreign currency to local currency )

Reward with points if it is helpful

Regards

Alfred

Read only

Former Member
0 Likes
359

hi

good

try with these function modules

CONVERT_TO_FOREIGN_CURRENCY Convert local currency to foreign currency.

CONVERT_TO_LOCAL_CURRENCY Convert from foreign currency to local currency

thanks

mrutyun^

Read only

anversha_s
Active Contributor
0 Likes
359

hi,

no need for any FM.

try this.

data: curr type i.

data curency type netpr.

curr = 100.

move curr to curency.

write CURENCY currency 'USD'.

rgds

anver

pls mark points if helped