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

Adding values to custom (DataExt) fields when adding line items to existing quickbooks Estimates

I'm trying to find the best way to add a value to a DataExt field when adding a line item to an existing Quickbooks transaction (in this particular case an Estimate). I can add a value for a DataExt field when adding line items to a NEW Estimate…
stuartho
  • 13
  • 3
0
votes
1 answer

How to query customer list detailed with sales rep and price level in Quickbook SDK

My goal is very basic: try to get all customers details, including sales rep and price level. I create a new customer class like this. public class Customer { public string Name { get; set; } public string FullName { get; set; } public…
uniz
  • 67
  • 7
0
votes
2 answers

Quickbooks Desktop BillPaymentCheckAdd error object not found

I am trying to add a $20 payment to a bill. This is from the sample Quickbooks file. However i am getting the error Object \"3E42-1071498278\" specified in the request cannot be found. " Any ideas. I have tried multiple things. I have indeed checked…
user1999086
  • 61
  • 1
  • 2
0
votes
1 answer

Invoke a COM Method using InvokeMember

I am wrapping a COM API Ultimately I am trying to push more code down into Generics and the inheritance pattern in the api is not helping. I have a generic of IBase, THere are ~80 classes that represent result sets. They are very similar, but they…
greg
  • 1,673
  • 1
  • 17
  • 30
0
votes
1 answer

How to list all Sales Receipts using the QuickBooks API

Context I'm importing sales data into QuickBooks using a C# desktop application and the QuickBooks QBFC API. I need to build a list of the Memo values for all Sales Receipts in the company file. This is because the Memo contains a sales reference…
ifinlay
  • 621
  • 1
  • 7
  • 24
0
votes
1 answer

How to void an invoice using InvoiceModRq in QBFC xml?

I can add new invoices, edit previously added ones, add/edit/delete line items, etc. But I can't find any info on how exactly to void an invoice using InvoiceModRq. Thanks!
Alex
  • 566
  • 1
  • 6
  • 14
0
votes
1 answer

How to modify a record with a Specific ListID in Quickbooks Using c#

I am new to QuickBooks development. I have successfully managed to call add records and query but I am having problems figuring out how to modify records. I have quick books ListIds stored in a separate system, I would like modify the specific…
earnshae
  • 169
  • 13
0
votes
0 answers

QBFC InvoiceAddReq update custom fields like Contract, B-Day and Spouse's Name using C#

I am developing one invoice inserting C# application for QuickBooks Pro 2013 with QBFC 10 using C#. In that I want to update few custom fields for each invoice with different values, the fields are 'Contract #', 'B-Day' and 'Spouse's Name' these are…
Partha
  • 11
  • 4
0
votes
1 answer

Quickbooks QBFC and Inventory Turnover

Is there a way to get the average inventory stock status in a specific timespan using Quickbooks QBFC? I've yet to find a way and no forums seem to tough the subject... I'm asking this because I need to create an app that calculates the inventory…
JDAguilar
  • 3
  • 3
0
votes
0 answers

Quickbooks Webservice Connector not connecting to python web service

I am trying to connect Quickbooks Webservice Connector to a python webservice but the connection is not being established. I think the problem is with my .qwc file. Below is the code for the .qwc file.
Hassan Zaheer
  • 1,361
  • 2
  • 20
  • 34
0
votes
1 answer

quickbooks sdk add payment

Hi i've been trying to add payments using the quickbooks sdk, so far so good I'm able to do everything but when I send the request to quickbooks I got a message that the transaction is empty here is my sample code: the code is using one of the…
0
votes
1 answer

How can I tell if a purchase order line is closed in VB.Net using QBFC?

I am trying to parse out a PURCHASE ORDER in QBFC 13. There are 2 line items, in this particular purchase order One lineitem has an ItemReceipt against it. One lineitem does not. There is a column to the right of the LineItem that has a column…
greg
  • 1,673
  • 1
  • 17
  • 30
0
votes
1 answer

How to get the Sales Orders search by date or SO number using QBFC

This is the code I have: ISalesOrderQuery salesOrdersQueryRq = requestMsgSet.AppendSalesOrderQueryRq(); salesOrdersQueryRq.IncludeLineItems.SetValue(true); IMsgSetResponse responseMsgSet = sessionManager.DoRequests(requestMsgSet); IResponse…
0
votes
1 answer

I want to integrate my ASP.Net application with quickbooks enterprise, is the integration similar for desktop enterprise as it is for online with IPP?

I want to integrate my asp.net application with quickbooks enterprise. I have done integration with quickbooks-online using IPPV3 ASP.net; I can send HTTP calls with JSON objects to get response, but now my requirement is to connect my asp.net…
0
votes
2 answers

QBSDK: Access all transactions of all clients (date period)

I need to look at the "audit" log for quickbooks using the SDK. I am basically looking to sync quickbooks transactions to a 3rd party platform (for reference purposes) I cant find a reference to the audit log in the OSR, but I do see…
Louis van Tonder
  • 3,664
  • 3
  • 31
  • 62