By ulrich-lab - Mon 18 Feb 2013
|
Dear all,
I have a small question about the item (e.g. stored procedure) which is in charge for displaying the values of attributes in the front end. In the back end everything is fine but in the front end when you click on a product and go to product information the correct attributes are listed but the attributes of all different products are the same. I cannot remember on which stored procedure I was working on.
So if somebody can quckly support the stored procedure I d be happy.
Thanks in advance
Malte
|
By Paul - Fri 22 Feb 2013
|
Stored procedures (sprocs) whose name begins with an underscore ('_') are back end ones, those without are front end ones. So would need to look within the ones that don't have an underscore at the beginning of their name.
After the spKartris part, the next part typically specifies the table or feature that the sproc is used for. In this case it's probably one of these you need:
spKartrisAttributes_Get spKartrisProducts_GetAttributesbyProductID spKartrisProducts_GetAttributeValue
|
By ulrich-lab - Sat 23 Feb 2013
|
hi paul,
thank you for replying. Yes you are right. I my case it was this on spKartrisProducts_GetAttributesbyProductID
thanks again. malte
|