2006 Nov 01 1:40 PM
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.
2006 Nov 01 1:44 PM
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
2011 Jul 09 6:39 AM