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

Float to currency convertion

Former Member
0 Likes
620

Dear all,

My requirement is to convert float to currency.

Can you pls....help me in sending code or advise any function module for this convertion.Awaiting for replay

-Regards,

HSREDDY.

Dear all,

My requirement is to convert float to currency.

Can you pls....help me in sending code or advise any function module for this convertion.Awaiting for replay

-Regards,

HSREDDY.

2 REPLIES 2
Read only

anversha_s
Active Contributor
0 Likes
457

Hi,

chk this.

  • Convert Internal SAP value to Currency value

data: p_intval like wmto_s-amount. "Internal Amount

data: gd_disval like wmto_s-amount. "Display Amount

call function 'CURRENCY_AMOUNT_SAP_TO_DISPLAY'

exporting

currency = po_tab-waers

amount_internal = p_intval

importing

amount_display = gd_disval

exceptions

internal_error = 1

others = 2.

rgds

anver

if hlped pls mark points

Read only

0 Likes
457

closed