Questions tagged [qbfc]

The QuickBooks Foundation Classes (qbfc) are a COM Library for interoping with QuickBooks products from Intuit Software

The QuickBooks Foundation Classes (qbfc) are a COM Library for interoping with QuickBooks products from Intuit Software.

The SDK page can be found here

188 questions
2
votes
1 answer

Code - 3140, Message - There is an invalid reference to QuickBooks Item Sales Tax "GST" in the Invoice

I am working on a Sync application for Quickbooks Desktop using QBFC so the problem is with Quickbooks Desktop Enterprise 16 CANADA EDITION. It is working perfectly for Quickbooks Desktop US editions. Severity - Error, Code - 3140, Message - There…
Hassan Akbar
  • 53
  • 1
  • 8
2
votes
0 answers

QuickBooks Desktop CustomerModRq ShipToAddress Unrecoverable Error

I am using accessing QuickBooks Desktop Enterprise 2016 with QBFC SDK version 12. I am using a qbXML file with the SDKTestPlust3 application. I modified the QBW.INI file with the following entries but it didn't seem to help any. I have run…
RJBreneman
  • 787
  • 7
  • 21
2
votes
0 answers

How do C# interfaces hide public properties (eg. QBFC's ICustomerRet)?

I am experimenting with the QuickBooks Foundation Classes (QBFC) but find that only some of its interfaces' properties are available. For example: Type myType = typeof(ICustomerRet); foreach( PropertyInfo info in…
mrslother
  • 21
  • 4
2
votes
1 answer

QuickBooks Enterprise 2016 using QBFC12 ICustomerMod ShipAddress causes huge performance hit

I am using QBFC12 to modify a customer in a QuickBooks Enterprise 2016 company file. I restored this client's company file from a backup, upgraded it to 2016 and have done a Rebuild Data on this file. An ICustomerMod request without the…
RJBreneman
  • 787
  • 7
  • 21
2
votes
1 answer

How to find the Employee deductions, Additions items from QuickBooks Desktop by c#?

For exporting employee timecard data into QuickBooks we can check the Earning items through the following c# code by using QBFC (Using 8.0) QBFC8Lib.IEarnings earnings40 = null; string ItemName =…
BOBIN JOSEPH
  • 1,012
  • 8
  • 25
2
votes
1 answer

How set value Rate for Items for new Estimate into my app

I use QBFC v13 and Delphi XE6. The goal is to create Estimate and set its parameters into QuickBooks from my app. I imported the type library from QBFC13 and added it to my project. My project was compiled without error. I created Estimate from my…
Andrew
  • 21
  • 3
2
votes
1 answer

Deleting Invoice and Bill

I could not figure out how to delete an Invoice or Bill using qbfc (using version 13). there is a method to delete a list item but could not find a similar transaction delete method.
hazimdikenli
  • 5,709
  • 8
  • 37
  • 67
2
votes
3 answers

How to add QBFC13_0.msm to Clickonce

There seems to be no step by step process documented anywhere on the web on how to do this. If it is mentioned, it's very poorly documented, and I cannot follow the complex path they suggest. I am a newbie to ClickOnce, I've been able to get my c#…
2
votes
2 answers

WinForms Application won't connect after QB 2014 upgrade

I support a legacy WinForms C# application that connects to 2 QuickBooks files. It has worked very well for years, both with QuickBooks 2008 and QuickBooks 2011. A few days ago, the client upgraded to QuickBooks 2014. The application has not…
bjthomps
  • 41
  • 4
2
votes
2 answers

A QuickBooks company data file is already open and it is different from the one requested

Using an application written in vb.net and using qbfc8 to connect into QB Enterprise 11. I am making a simple call to the company file to open and then close a connection. This should result in the QB application popping up a message asking if this…
Captain America
  • 1,802
  • 1
  • 19
  • 21
2
votes
1 answer

The "BeginSession" method has not been called or it did not succeed - QBFC SDK12 and ASP.NET WebSite

I have the following code QBSessionManager sessionManager = new QBSessionManager(); RequestProcessor2Class requestProcessor = new RequestProcessor2Class(); try { IMsgSetRequest msgSetRequest =…
2
votes
1 answer

Name on Check in QuickBooks SDK

I have a customer requirement to export the checks written in QuickBooks into a specific format because their bank allows fraud prevention by uploading a file and they verify the name on the check against what you give them before clearing it. I…
Yishai
  • 90,445
  • 31
  • 189
  • 263
2
votes
1 answer

How to use Refunds and Adjustments via SDK (QBFC)?

I have been integrating my application with QuickBooks using the SDK QBFC. I have invoices working successfully. The issue I have come across and am struggling to find recources for is with credits. When sending the request to create an invoice…
Gregjm79
  • 41
  • 2
2
votes
1 answer

Error adding InventorySite to Quickbooks invoices in QBSDK 12

I have a QBFC application written in C# that runs automatically from the scheduler and, among other things, inserts invoices from a remote client into QB. Recently, I upgraded it to add an "InventorySite" to invoice items for clients using QB's…
AndyL
  • 81
  • 1
  • 8
2
votes
2 answers

Add Sales Tax Item using QBFC

Is there any way to add Sales Tax Item using QBFC? Example: Sales Tax A 4% Sales Tax B 10% I can add it easily from Quickbooks, but I need a way to add from external application using QBFC. Any help will be greatly appreciated.
Sandip.Nascar
  • 335
  • 1
  • 7
1
2
3
12 13