on ‎2019 Apr 26 10:38 PM
Which interface do you re-implement to select different PriceRows for cart calculation?
Request clarification before answering.
I think method filterPriceRows(List priceRows) from Europe1PriceFactory. Should cater to your requirement. Hence you should extend/ re-implement Europe1PriceFactory.
Javadoc Reference: https://help.sap.com/doc/2bc718be6d1e46169d58d38ad055025d/6.2.0.0/en-US/index.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Implementation of interface PriceFactory should help. ( I do agree with Subhash, as Europe1PriceFactory is default implementation of interface-PriceFactory)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I understood your question correctly, you need a different strategy for selecting price rows. Usually
price rows are selected and filtered by Europe1PriceFactory class. You can customize the getPriceInformations(...) method in that class which would get called from DefaultPriceService class whenever price information is retrieved.
For reference : https://help.sap.com/viewer/d0224eca81e249cb821f2cdf45a82ace/6.6.0.0/en-US/961b19dfdcd34eff8c6659e0f...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should override DefaultPriceService which implements PriceService
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.