Reputation: 165
We are getting an error when we try and add notes to a customer in Quickbooks.
This feature is not supported in the specified version of qbXML.
We tried getting the latest SDK from here: https://developer.intuit.com/docs/0200_quickbooks_desktop/0400_tools/quickbooks_desktop/download_the_sdk
DLL version we are using: 13.0.0.23 Interop.QBFC13.dll
Dim custAdd As ICustomerAdd = msgSetRq.AppendCustomerAddRq
custAdd.Notes.SetValue("Test Note")
Upvotes: 1
Views: 418
Reputation: 165
We found the bug. We had to set the version to 13. It was on 2. LOL.
msgSetRequest = qbSessionManager.CreateMsgSetRequest("US", 13, 0)
Upvotes: 2