CCS Point of Sale

This is an old revision of the document!


A PCRE internal error occured. This might be caused by a faulty plugin

Custom Reports To run these reports: - From Office - (Main Toolbar) - Reporting - Pivot Reporting - \\ - Go to the Advanced Tab.\\ - Copy from the report selection below. You may need to adjust the 'Where' Sections. There is criteria that can be input such as names, dates and numbers. These should be properly formatted. The Report Statement include example criteria. - Paste the statement into the advanced text area. - Press the button 'Open Report From Statement' **Sales by Vendor/Supplier** SELECT tblClients.CompanyName as Vendor,\\ Details.ProductName,SUM(Quantity),SUM(Quantity*UnitPrice)\\ FROM tblProductOrderDetails as Details\\ INNER JOIN tblProducts as Products \\ ON Products.ProductID=Details.ProductID\\ INNER JOIN tblClients \\ ON tblClients.ClientID=Products.SupplierID\\ WHERE CompletionDate BETWEEN '01/01/2012' AND '01/01/2013'\\ GROUP BY tblClients.CompanyName ,Details.ProductName\\ ORDER BY tblClients.CompanyName ,Details.ProductName\\ **Sales of Products By Employee - Grouped by Employee - Sorted by Employee.** SELECT ServerName as Employee,ProductName,SUM(Quantity) as QTYSold,\\ SUM(round(UnitPrice * Quantity - ((UnitPrice * Quantity) * (tblProductOrderDetails.Discount / 100) * 100),2)) as TotalSales FROM tblProductOrderDetails\\ INNER JOIN tblServiceType\\ ON tblProductOrderDetails.ServiceTypeID=tblServiceType.ServiceTypeID\\ WHERE CompletionDate Between '01/01/2012' And '01/31/2012'\\ AND FilterType=0\\ GROUP BY ServerName,ProductName\\ ORDER BY ServerName,ProductName\\ **Sales of Products By Employee - Grouped by Employee - Sorted by Product.**\\ SELECT ServerName as Employee,ProductName,SUM(Quantity) as QTYSold,\\ SUM(round(UnitPrice * Quantity - ((UnitPrice * Quantity) * (tblProductOrderDetails.Discount / 100) * 100),2)) as TotalSales\\ FROM tblProductOrderDetails\\ INNER JOIN tblServiceType\\ ON tblProductOrderDetails.ServiceTypeID=tblServiceType.ServiceTypeID\\ WHERE CompletionDate Between '01/01/2012' And '01/31/2012'\\ AND FilterType=0\\ GROUP BY ServerName,ProductName\\ ORDER BY ServerName,ProductName\\


Navigation

^From the Ground Up!| |[[Getting Started:]]| |[[Installation Guide:]]| |[[Pre Installation:]]| |[[Install CCS:]]| |[[Install New Database:]]| ^Guides| |[[Guides:]]| |[[FAQ:]]| |[[Trouble Shooting:]]| ^Credit Card Setup| |[[Data Cap Epay:]]| ^CCS Administration| |[[ Office:Office - General Management]]| ^CCS Terminal| |[[Office:Terminal]]| ^Hand Held Setup| |[[Hand Held:|Tablet]]| ^Kitchen Display| |[[KDS Software Setup:]]|