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
0
votes
1 answer

Is there a way to find the deleted transactions by list Id?

My goal is to find the deleted transactions during a period of the time for a list of jobs. The period of the time can be different from job to job. I am currently using TxnDeletedQueryRq but the request only provides filter on date range. I tried…
0
votes
2 answers

cannot open session with QuickBooks

I am trying to open session and add some records to QB, but it does not seem to do anything and does not open session. Code: QBFC13Lib.QBSessionManager sessionManager = new QBFC13Lib.QBSessionManager(); //or QBSessionManager sessionManager = new…
DevSrb
  • 17
  • 4
0
votes
1 answer

QBFC "Invalid Ticket Parameter"

Getting a strange error from QBFC. This code fails: var qbRequest = sessionManager.CreateMsgSetRequest("US", 7, 0); qbRequest.Attributes.OnError = ENRqOnError.roeStop; var qbQuery = qbRequest.AppendCustomerQueryRq(); …
William Madonna Jr.
  • 242
  • 1
  • 3
  • 12
0
votes
1 answer

Error adding the invoice in QuickBooks. Invalid reference to QB customer

There is an invalid reference to QuickBooks Customer "ABS, JLMN" in the Invoice. QuickBooks error message: Invalid argument. The specified record does not exist in the list.
Hulk
  • 97
  • 3
  • 16
0
votes
1 answer

QuickBooks POS SDK Add Customer Custom Field Data: DataExtAdd

can anyone help with adding data to a UI defined Custom Field in QuickBooks POS 2013? I am trying to add data to a UI defined custom field (the field was made and visible in the POS user interface, not by programing; so the OnwerID is “0”) when…
0
votes
1 answer

qbfc passing additional data when creating an invoice

When creating a new invoice how can I pass additional data for the invoice. invoiceAdditionalData.DataExtName.SetValue("PO/SA#"); invoiceAdditionalData.DataExtValue.SetValue("a unique number for this invoice"); …
hazimdikenli
  • 5,709
  • 8
  • 37
  • 67
0
votes
1 answer

Quickbooks QBFC Error when adding bill

I am trying to add a vendor bill to quickbooks using QBFC in C#. My issue is that if I want to define a custom address for this particular vendor (for just this particular bill), it throws an error saying QuickBooks found an error when parsing the…
Giardino
  • 1,367
  • 3
  • 10
  • 30
0
votes
2 answers

Is there a maximum number of request you can put into one request message set using QBFC?

I tried to use QBFC v13 to construct a request message set that contains 46 customers pending to be created in QuickBooks. The program throws string too long exception. I'm wondering if there a maximum number of request you can put into one request…
0
votes
1 answer

Unable to add duplicate customers to Quickbooks using QBFC

I have the following code: public void addCustomer() { bool sessionBegun = false; bool connectionOpen = false; QBSessionManager sessionManager = null; try { …
Giardino
  • 1,367
  • 3
  • 10
  • 30
0
votes
1 answer

Why QBFC is throwing exception with message "String too long" instead of response containing error code?

I have a C# program that is using QBFCv13 to create 46 customers in QuickBooks Pro 2014. When the program runs, I get an exception with message "String too long.". I am guessing it's probably caused by one of the customer name is too long so I test…
0
votes
1 answer

QBFC interface failing to read Terms

I am writing an interface from my program that will write invoices to QB. One of the clients has the Contractor version of QB and my interface is failing. Before posting a new invoice I read values from the client QB and to make sure I can post…
Rick
  • 87
  • 1
  • 8
0
votes
1 answer

Excel decimal rounding to QuickBooks

I'm importing an excel sheet into Quickbooks using VBA and the Intuit API. the numbers are off by a few cents. One number I cannot figure out. -89.5049784337071 Quickbooks rounds it to 89.51. I'm guessing because its a negative number. any formula…
monsey11
  • 243
  • 4
  • 18
0
votes
1 answer

Why ExpenseLineRetList return null

I saw this link and I notice we have the same problem, and his question still didn't answer yet. Here is the question. public class ServiceSel { public void GetCheqe() { bool sessionBegun = false; bool…
user2530833
  • 1,008
  • 1
  • 10
  • 25
0
votes
1 answer

Quickbooks integration failing with new Office 2013

having trouble with getting my new Windows 7 laptop with 64 bit Office 2013, to integrate with Quickbooks 2013 from MSAccess 2013, using QBFC 11. Previous version that worked was Windows XP 32 bit, Access 2010 and QB 2013, with same QBFC11. …
0
votes
1 answer

QBFC sales order query, are filters ORED or anded?

Wondering if using QBFC 13 the filters can be combined and run at once? For instance, I have a SO query, and I need to run and say "return all orders created or modified within the last week". It looks like there are two areas for this in the OSR.…
Davery
  • 317
  • 1
  • 10