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 : Is the note field in the address details for the customer bill to & ship to accessible?Search Forum

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

 New Topic 
 
 Post Reply 
 Is the note field in the address details for the customer bill to & ship to accessible? 
 Author   Message 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2006-02-21 20:02:01

Sorry, no, that is not a field exposed by Intuit in their qbXML SDK unless you are using QuickBooks 2007 (the USA version take uses SDK v6) and QODBC v7 or higher.

The following is an example address in QuickBooks 2007:

Because the state of VIC failed validation by QuickBooks, it is moved to City and State is empty. Using QODBC the same address information can be extracted using:

SELECT FullName, BillAddressAddr1, BillAddressAddr2, BillAddressAddr3, BillAddressAddr4,
BillAddressAddr5, BillAddressCity, BillAddressState, BillAddressPostalCode, BillAddressCountry,
BillAddressNote, BillAddressBlockAddr1, BillAddressBlockAddr2, BillAddressBlockAddr3,
BillAddressBlockAddr4, BillAddressBlockAddr5
FROM Customer where FullName='Data Access Worldwide'

To see how all the fields/columns are mapped, I've expanded the query results into the table below:

Column Name Value
FullName   Data Access Worldwide
BillAddressAddr1   Data Access Worldwide
BillAddressAddr2   PO Box 873
BillAddressAddr3   Shop 9 - 246 Dorset Road
BillAddressAddr4    
BillAddressAddr5    
BillAddressCity   Boronia VIC
BillAddressState    
BillAddressPostalCode   3156
BillAddressCountry   Australia
BillAddressNote   QuickBooks 2007 Only
BillAddressBlockAddr1   Data Access Worldwide
BillAddressBlockAddr2   PO Box 873
BillAddressBlockAddr3   Shop 9 - 246 Dorset Road
BillAddressBlockAddr4   Boronia VIC 3156 Australia
BillAddressBlockAddr5   QuickBooks 2007 Only

Note: The BillAddressBlockAddr block fields/columns are read-only and cannot be inserted or updated directly.

 

  Top 
 New Topic 
 
 Post Reply 

Jump to