Hi in my driver program for smartform i am using following function module
CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
EXPORTING
CURRENCY = 'YTL'
AMOUNT_INTERNAL = IT_FINAL_DATA-NETPR
IMPORTING
AMOUNT_EXTERNAL = IT_FINAL_DATA-NETPR1
.
ENDLOOP.
its giving output like :
IT_FINAL_DATA-NETPR 100.00
IT_FINAL_DATA-NETPR1 100.0000
wherein if i execute the same function module with se37
its giving output 100,0000
what can be the problem..pls help..
Add a comment