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: 

FM to convert currency to char or string

Former Member
0 Kudos

is there any function module which converts currency fld to char or string fld?

i wanted to use this converted fld for my output in a file.

thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

check out the FM

/BEV3/CHCONVERT_CURR_INPUT

Hope it helps

regards

4 REPLIES 4

Former Member
0 Kudos

check out the FM

/BEV3/CHCONVERT_CURR_INPUT

Hope it helps

regards

former_member195383
Active Contributor
0 Kudos

no need to use any FM for this...

simply declare acharacter variable...say wf_char.

assign the currency field to the character variable.

if ur currency field is wf_curr.

then assign like..

wf_char = wf_curr.

this will work...

reward points if helpful...

Former Member
0 Kudos

Hi

Function Module Name : 'SPELL_AMOUNT'

Rewards Points if useful.

Regards

Nikunj Shah

Former Member
0 Kudos

helpful