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 use the BillToPay table?Search Forum

Forum Home > QODBC - ODBC Driver for QuickBooks > QODBC Frequently Asked Questions

 New Topic 
 
 Post Reply 
 How do use the BillToPay table? 
 Author   Message 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2007-02-14 09:47:01

The BillToPay table allows you to see the "Pay Bills" list as seen in QuickBooks:

Normally you used to have to run this SQL Statement using QODBC:

SELECT DueDate, VendorRefFullName as Vendor, RefNumber as Ref,
AmountDue as "Amt. Due" FROM Bill
where IsPaid = 0 and DueDate <= {d'2007-12-25'}
order by DueDate

but now you can go straight to the BillToPay table like this:

SELECT BillToPay.BillToPayDueDate as "Date Due", Bill.VendorRefFullName as Vendor,
BillToPay.BillToPayRefNumber as Ref, BillToPay.BillToPayAmountDue as "Amt. Due",
BillToPay.CreditToApplyCreditRemaining as "Credit Remaining"
FROM BillToPay, Bill where BillToPay.BillToPayTxnID = Bill.TxnID
and BillToPay.BillToPayDueDate <= {d'2007-12-25'} order by BillToPay.BillToPayDueDate

 

  Top 
 New Topic 
 
 Post Reply 

Jump to