Is there a way to search for 'Product Ref' numbers within Actinic Business? I'm getting a clash of ref numbers between Business and EPOS but I'm having trouble locating the ref number in Business
Cheers
Cheers
SELECT Product.[Product Reference], [Catalog section].[Section text] FROM Product INNER JOIN [Catalog section] ON Product.nParentSectionID = [Catalog section].nSectionID WHERE (((Product.[Product Reference])="0064"));
SELECT Product.[Product Reference], [Catalog section].[Section text] FROM Product INNER JOIN [Catalog section] ON Product.nParentSectionID = [Catalog section].nSectionID WHERE (((Product.[Product Reference])="0064"));
Comment