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: 

Currency conversions on screens for HUF, JPY...

Former Member
0 Kudos

Hi,

I have noticed that when I use 2 fields for currencies that are defined with types NETWR (domain WERT8) and WAERS (domain WAERS) and properly linked on screen (referenced with DD) that conversion is not working properly. For example:

REPORT  zr_huf_test.



TABLES bkpf.



PARAMETERS:  p_waers LIKE bkpf-waers,

             p_wrbtr LIKE bseg-wrbtr.



PARAMETERS:  p_waers1 TYPE waers,

             p_wrbtr1 TYPE netwr.



INITIALIZATION.

  bkpf-waers = p_waers = p_waers1 = 'HUF'.



AT SELECTION-SCREEN OUTPUT.

  bkpf-waers = p_waers.



START-OF-SELECTION.



  WRITE: p_wrbtr,

         / p_wrbtr CURRENCY p_waers.



  SKIP 2.



  WRITE: p_wrbtr1,

       / p_wrbtr1 CURRENCY p_waers1.

As you may know, some currencies in SAP do not have decimal places (HUF, JPY...). This is happening for this currencies. Why, is the problem in WERT8 with sign or what? Also what is strange and I can not explain myself, my program in selects value from DB, i.e. 1,00 HUF. As HUF doesn't have decimal places, on screen it is displayed as 100 HUF, which is just fine.

But if I press ENTER, program goes to PAI module and variable that I use on screen contains 100,00HUF, which is completly WRONG and guess what, after each ENTER value is multiplied by 100?! What is the reason of that behavior?

kr

mario

2 REPLIES 2

former_member156446
Active Contributor
0 Kudos

SAP should be doing it ...

Check the BAPI: BAPI_CURRENCY_CONV_TO_EXTERNAL

BAPI_CURRENCY_GETDECIMALS >>> Gives you the decimal places of Currency

0 Kudos

Yes, I also think SAP should do it, but unfortunately....

Regarding BAPI, thx, there is a lot of FMs that handle this problem, but I would like to SAP handle it