cancel
Showing results for 
Search instead for 
Did you mean: 

Only Display USD currency in the Shopping cart

Former Member
0 Kudos

Dear SRMers,

System Info: SRM 5.0 and ECC 6.0

We have a business requirement to display only the USD currency for user selection in the SRM shopping cart. Currently we are displaying a number of international currencies for user selection during shopping cart creation.

Please let me know how to make it happen.

Points will be rewarded for answers.

Thanks in advance,

Bobby

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Maintain the entries you want to allow in table V_CURC. SAP delivers all currencies. Also, If you delete all the entries other than USD and In future if your client wants this functionality then you need to enter all these cuurencies.

Regards, Satya

Former Member
0 Kudos

Hi,

As an alternative simple solution. in search help BBP_CURRENCY_VALUE, write your custom exit copying search exit BBP_F4IF_SHLP_EXIT_CURRENCY

In your exit, After the following call.

call function 'BBP_GET_CURRENCIES_F4'

tables

et_currencies = lt_currency.

***delete all currency other than 'USD' in the "Internal table".

Pros: This is custom exit and during upgrade this custom exit will not be erased since it lies on customer namespace.

Cons: During upgrade you need to update the BBP_CURRENCY_VALUE exit with your z..exit(no need recreate z..exit one more time) , same applied during support pack update if there is any specific support pack for this search help.

This will solve the issue.

Cheers, Renga

**Award points for usefull answers**