by =?Utf-8?B?QW50aG9ueSBHcmFlbWU=?= <AnthonyGraeme@[EMAIL PROTECTED]
Aug 1, 2007 at 08:28 AM
I am having the same issue as phjasper. See below.
I am trying to change the list price for a product then update the
back-end
catalog.
My code is as follows:
ProductCatalog catalog;
Product prd;
catalog =
CommerceContext.Current.CatalogSystem.GetCatalog(sBaseCatalog);
prd = catalog.GetProduct(sProductID);
prd.ListPrice = 0.99M;
prd.Save();
When I execute prd.Save i get an exception
The stored procedure 'dbo.ctlg_CheckAndUpdateTimestamp' doesnt exist
Can someone help?
Thanks