[QODBC-Desktop] How to access the QuickBooks Open Sales Order by Item report in QODBC
Posted by brad waddell on 12 March 2009 05:21 PM
|
|
Note: Actually, we don't have a sp_report for the QuickBooks "Open Sales Order by Item" report, which is not available via Intuit SDK. However, I've managed to extract similar data using QODBC. Typical Open Sales Order by Item Report in QuickBooksFor example, when using the Rock Castle Construction QuickBooks 2006 sample company file: sample_product-based business.qbw, the report looks like this:
Report Displayed in QODBCNormal QueryBy using the following select statement: SELECT SalesOrderLIneItemRefFullName as Type, TxnDate as Date, Display in QODBC What is shown in the above report appears using QODBC:
Query with Date Range This can also be made must faster by limiting the date range like this: SELECT SalesOrderLIneItemRefFullName as Type, TxnDate as Date, Normal Issues and SolutionsThe resulting Rows are Short of the QuickBooks Report's Rows, and the Total Amounts Don't MatchMake sure you are running QODBC v6.00.00.155 or later. And try the below instead: SELECT SalesOrderLIneItemRefFullName as Type, TxnDate as Date, How to add the aging field, the class field, and the memo field to the reportWell, this will work based on the actual current system date (not the QuickBooks date): SELECT SalesOrderLIneItemRefFullName as Type, TxnDate as Date, DueDate, RefNumber as Num, CustomerRefFullName as Name, SalesOrderLineQuantity as Qty, SalesOrderLineInvoiced as When the sp_report command for the "Open Sales Orders by Item" report could be addedI've not heard or seen anything about adding sp_report for Open Sales Orders by Customer or Open Sales Orders by Item. This is a limitation of Intuit SDK. But could see also: Open sales orders by Item as a reference. | |
|