| 
	            Group: Forum MembersLast Active: Tue 14 Oct 2014
 Posts: 11, 
                Visits: 96
 
 | 
			    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
 | 
				
		
					| 
	            Group: AdministratorsLast Active: Fri 12 Sep 2025
 Posts: 807, 
                Visits: 2,753
 
 | 
			    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						
			    				
			    --
 If my post solves your issue, can you 'Mark as Answer' so it's easier for other users to find in future.
 
 If you would like to be informed of new features, new releases, developments and occasional special bonuses, please sign up to our mailing list: http://bit.ly/19sKMZb
 | 
				
		
					| 
	            Group: Forum MembersLast Active: Tue 14 Oct 2014
 Posts: 11, 
                Visits: 96
 
 | 
			    hi paul,
 thank you for replying. Yes you are right. I my case it was this on spKartrisProducts_GetAttributesbyProductID
 
 thanks again.
 malte
 
 |