cancel
Showing results for 
Search instead for 
Did you mean: 

Set display currency when starting /SAPAPO/DP94 depending of Users Country

Former Member
0 Kudos

Hello Demand Planning Experts,

is it possible to set the display currency for the Demand Planning in Transaction /SAPAPO/DP94 in a BAdI depending of the users country?

Best regards

Gregor Wolf

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

dont know about the badi ...but there is a way using the macros

you need to have an extra KF. use the macro CURR_CONV_FAC() to get the converted numbers

If you add some more conditions to choose the cuurency to convert to and hide the original KF then you should get what you want

CURR_CONV_FAC( 'source currency' ; 'target currency' ; 'exchange rate type' ; DATE ) returns the currency conversion factor for the specified source currency, target currency and exchange rate type on the specified date. This date can be TODAY (that is, the system date) or another (see the functions DATE() and TODAY). TODAY is a function, so you do not need to put it in inverted commas. Example: CURR_CONV_FAC( 'USD' ; 'EUR' ; 'M' ; TODAY ).