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: 

Problem with JPY currency

Former Member
0 Kudos

Hi All,

I am passing currency and amount related data from one program to Ztable. For other currencies its working perfectly. But for JPY, its showing different values in SE16 and SM30. For eg. if the actual value in SAP transaction is 431, it is showing 431.00 in SE16 screen and 43,100 in SM30. I think it should show either 431.00 or 431 in SM30 but not sure. Can you please help me out?

Thanks in advance,

Archana

2 REPLIES 2

Former Member
0 Kudos

Hi,

I think currecy conversion issue.

Check the data element for that particular field.

Can you use this FM for convserion and see what result are you getting.


CALL FUNCTION 'CURRENCY_CODE_SAP_TO_ISO'
    EXPORTING
      sap_code  v_sap_code
    IMPORTING
      iso_code  = v_iso_code
    EXCEPTIONS
      not_found = 1
      OTHERS    = 2.

Edited by: pravin s. on May 28, 2010 10:39 AM

jj
Active Contributor
0 Kudos

Are you taking the content with internal table and updating into z table.

May be the currency key refernce in not taken into consideration while saving into the table.