cancel
Showing results for 
Search instead for 
Did you mean: 

How to add new attribute in product catalog?

Former Member
0 Kudos

Hi All,

Can anyone tell me how to add new field/attribute in product catalog?

The requirement is to display product's new attribute on product catalog screen.

Do I need to create any custom java class?

Need suggestion!!

Thanks.

Regards,

Rupali

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello Rupali,

I am assuming a CRM E-Commerce scenario for my help here.

Can anyone tell me how to add new field/attribute in product catalog?

You must start from defining the new Attribute in an exisiting or new Set Type. Use transaction code COMM_ATTRSET. Once you have the attribute / attribute set defined, you can assign this to your catalog - in the header data as the Basic characteristic List.

to display product's new attribute on product catalog screen

See catalog/ProductDetailISA.jsp for tips - search for catalog.isa.attribute. The catalog item WebCatItem has all the details available already.

com.sapmarkets.isa.catalog.webcatalog.WebCatItem currentItem = webCatItem;

If you want to show the details of attributes in the catalog page - say - catalog/ProductsISA.jsp, the instance of WebCatItem is already available. In this page look for

  <isa:iterate id="item"
               name="itemPage"
               type="com.sapmarkets.isa.catalog.webcatalog.WebCatItem">

You can see that item is an instance of the WebCatItem and follow the code in the <isa:iterate> loop. Using the following code

Iterator itemAttribute = item.getCatalogItemAttributes();

will give you the attribute list. You can iterate over the list of attributes and do what you want.

Easwar Ram

http://www.parxlns.com

Former Member
0 Kudos

Hi

There is an excellent development and extensions guide for the e-sales application.

You can find it at the service market place.

https://websmp210.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000655585&_SCENARIO=011000358700000002...

Former Member
0 Kudos

Hi Jamal,

Thx for the reply.

But I am not able to access this site, it is asking for username/pwd.

Can you tell me the username & pwd?

Thanks.

Regards,

Rupali

Former Member
0 Kudos

You will need to have an account on the SAP service market place to access a hugh amount of documentaion.

If you work woth SAP technology I would strongly suggest getting an account.

Go to http://service.sap.com at the top of the page go to New User? Register here!

If your company or customer has an SAP install then they should be able to help you get an account.

Here you can access SAP notes and all the documentation you need.

Please award points if this information helps...