[QODBC-Desktop] How to run an Open Invoices Report in QODBC
Posted by brad waddell on 12 March 2009 05:21 PM
|
|
Typical Open Invoices Report in QuickBooks
Report Displayed in QODBCStored Procedure CommandWith QODBC, the same report can be generated using stored procedure reports like this: sp_report OpenInvoices show Text, Row data as Type, Blank, TxnType, Date, RefNumber as Num, PONumber, Predefined DateMacro Options All the predefined DateMacro options available to you are: |All|Today|ThisWeek|ThisWeekToDate|ThisMonth|ThisMonthToDate|ThisQuarter|ThisQuarterToDate Display in QODBC
Access Unpaid INVOICEs DirectlyYou can also access unpaid INVOICEs directly using the Invoice table and the IsPaid filter like this: select CustomerRefFullName, TxnDate as Date, RefNumber as Num, PONumber, TermsRefFullName as Terms,
Optimizer Related Depending on your QODBC optimizer settings, you might need to do the below instead to see the proper open balance in real-time: select CustomerRefFullName, TxnDate as Date, RefNumber as Num, PONumber, TermsRefFullName as Terms, See also: How to run a Customer Balance Detail Report in QODBC | |
|
Is there a way to pull in the description for the invoice in the 'Open Invoice Report'? Or would you know the table that the description line is stored?
I am trying to create an A/R Aging Detail that includes the description of the invoice to the right of Name and left of Memo.
I would like to inform you that QODBC can only show those columns and fields which are available in QuickBooks Report Screen and available via SDK.
For any additional data, you may query other tables additionally and merge the result (cannot link or have relationship on the result of sp_report and a table/function/report).
Also, I would like to share you that the QuickBooks SDK does provides output of the report but does not provide information on how those data are derived or which tables are used in those reports.
QuickBooks SDK does not expose information regarding how the report is built, what are the tables used or logic part and thus it is not available in QODBC.
All QODBC do is request for the Report information from QuickBooks SDK and QuickBooks is the one processing it and sending the output. QODBC formats that output to data table format.