cancel
Showing results for 
Search instead for 
Did you mean: 

Gross Value

former_member248975
Participant
0 Kudos

HI

I have ISA B2B (with IPC) and a requirement is to show gross value in the catalog overview

How can we do this?

Thanks

Lidisaid

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Are you speaking about the price shown for a product in catalog view?

If so just enable force IPC pricing in shop admin for you shop.

This makes all the prices are calculate by IPC and shown in Catalog.

To enable a gross value just check the particular jsp(ex. Products.jsp or ProductDetails.jsp) where you want to display the Gross value and replace for the item.getNetValue() by .getGrossValue().

If the requirement is different please be specific.

Regards,

Sateesh Chandra

former_member248975
Participant
0 Kudos

Hi, Sateesh

Yes I speaking about the catalog view, in B2B

We need to show only the Gross Value, not Net value, can I do that?

Do you know if I can Show in catalog view, only 1 condition type, for example PR00?

Thanks for help

Regards,

Lidisaid

nelson_raj2
Active Participant
0 Kudos

Hi Lidsaid,

In order to customize the display of the prices on the Check out page, which displays the break up of the prices, (Shipping, Taxes etc.,) you will need to customize the jsp (code in Java).

This cannot be changed from the CRM ABAP backend through customizing.

At the most, you can display the Net Price as 0, by customizing your Pricing Procedure, however this is not a good solution, and hence it is recommended you may customize the jsp page.

Further, the customer will be able to see only the gross price, say, PR00 as per your pricing procedure, up until he moves to the check out page where he is shown all the values, Net Value etc.,

Thanks & Regards,

Nelson.

Former Member
0 Kudos

Hello Lidisaid,

To get price details in the Catalog and show the pricing condition you want (such as PR00 or any other), you may have to turn on "Price Analysis" feature.

If you are not faint hearted, you can leverage the IPCItem, WebCatItem, PriceCalculator.See this sample code.


#import com.sapmarkets.isa.catalog.webcatalog.WebCatItem;
#import com.sapmarkets.isa.backend.boi.webcatalog.pricing.Prices;
CatalogBusinessObjectManager bom = (CatalogBusinessObjectManager)userData.getBOM("CATALOG-BOM");
PriceCalculator priceCalc = bom.getPriceCalculator();
priceCalc.getInitData();
WebCatItem item = (WebCatItem)request.getAttribute("webCatItem");
Prices priceList[] = priceCalc.getPrices(item);

Caution: The code is not complete - I have given only hints to speedup your thought process.

For more details, see the ProductsISA.jsp

Easwar Ram

http://www.parxlns.com

Answers (0)