Member Login

Username
Password
Forget Password
New Sign Up
Search Forum

Buy Support
Incidents

If you can't find your answer in the FREE PUBLIC QDeveloper Forum, require URGENT Priority Support, or you need to send us private or confidential information:

Click Here
If you can't login and post questions or you are having trouble viewing forum posts:
Click Here
Callback
Support

If you live in USA, UK, Canada, Australia or New Zealand, you can leave us details on your question and request us to call you back and discuss them with you personally  (charges apply).

Click Here
 
Buy Support
Incidents
If you can't find your answer in the FREE PUBLIC QDeveloper Forum, require URGENT Priority Support, or you need to send us private or confidential information:
Click Here

Forum : How do I run a Customer Balance Detail Report?Search Forum

Forum Home > QODBC - ODBC Driver for QuickBooks > QODBC Reporting Forum

 New Topic 
 
 Post Reply 
[1]  
 How do I run a Customer Balance Detail Report? 
 Author   Message 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2007-03-22 10:48:58

A typical Customer Balance Detail Report looks like this:

With QODBC the same report can be generated using stored procedure reports like this:

sp_report CustomerBalanceDetail show Text, Blank, TxnType as Type, Date, RefNumber as Num, Account,
Amount, RunningBalance as Balance parameters DateMacro = 'All'

All the predefined DateMacro options available to you are:
|All|Today|ThisWeek|ThisWeekToDate|ThisMonth|ThisMonthToDate|ThisQuarter|ThisQuarterToDate
|ThisYear|ThisYearToDate|Yesterday|LastWeek|LastWeekToDate|LastMonth|LastMonthToDate|LastQuarter
|LastQuarterToDate|LastYear|LastYearToDate|NextWeek|NextFourWeeks|NextMonth|NextQuarter|NextYear|

Most QuickBooks users prefer to see only the accounts that haven't been paid (and if they have any unapplied credits):

With QODBC the same report can be generated using stored procedure reports using the PaidStatus filter like this:

sp_report CustomerBalanceDetail show RowData, TxnType as Type, Date, RefNumber as Num, Account, Amount
parameters DateMacro = 'All' where PaidStatus = 'Unpaid'

You can also access unpaid INVOICEs directly from the Sales view read only table. First do a full resync of your Sales table by running:

sp_optimizefullsync Sales

Use the NOSYNC tag to allow you to access all your sales with great speed:

SELECT CustomerRefFullName as RowData, Type, TxnDate as Date, RefNumber as Num,
ARAccountRefFullName as Account, Remaining as Amount FROM Sales NOSYNC where IsPaid = 0
Order by CustomerRefFullName, TxnDate, RefNumber

or to include the Credit Memos use:

SELECT CustomerRefFullName as RowData, Type, TxnDate as Date, RefNumber as Num,
ARAccountRefFullName as Account, Remaining as Amount FROM Sales NOSYNC
where IsPaid = 0 or Type = 'CreditMemo' Order by CustomerRefFullName, TxnDate, RefNumber

 

  Top 
  jrademan 
  
 Group: Members 
 Posts: 29 
 Joined: 2007-01-27 
 Profile
 Posted : 2008-05-13 22:10:08
Hi Tom,

Am I missing something or what about unapplied payments?



Johan 

  Top 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2008-05-14 06:59:20
The same goes with General Journals?  The CustomerBalanceDetail report is the best approach.

Try running:

sp_report CustomerBalanceDetail show Text, Blank, TxnType as Type, Date, RefNumber as Num, Account,
Amount, RunningBalance as Balance
parameters EntityFilterFullNameWithChildren = 'Lamb, Brad' , DateMacro = 'All'

using the full name of one of your customers instead.

 

  Top 
 New Topic 
 
 Post Reply 
[1]  

Jump to