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
2 answers

QBFC: How do I query the customners by accountnumber?

Since Intuit has broken the QBFC reference today, I have to ask a question that I could normally look up. (I do not know who to complain to). I normally query by list_id like so: ICustomerQuery CustomerQueryRq =…
0
votes
1 answer

ICustomerRet.IsSet, IsEmpty

QBFC12. I am querying for a Customer list in the desktop version of QB. From this I get an ICustomerRet object. In the case where MiddleName has not been set these fail because the object is nothing: if ICustomerRetObj.MiddleName.IsSet then ...…
Rick
  • 87
  • 1
  • 8
0
votes
1 answer

QBFC: processing a credit card return (using the ARCreditCardRefund request)

I'm trying to figure this out with Intuit's somewhat lacking documentation. Here is what I have: Customer purchases something (I create an Invoice) [Adds an amount to AR] We charge their credit card through an outside process (Not Intuit) (I create…
0
votes
1 answer

Does QBFC work with QuickBooks Server Database Manager

I've tried looking all over intuit's site and have not managed to find an answer to this question. I need to know if and how you can use the QBSDM with QBFC. As currently, it does not seem to work for me like it does if I'm just pointing at a…
jblaske
  • 691
  • 1
  • 5
  • 19
0
votes
1 answer

QBFC: Customer Mobile Number is nothing?

I am looking te retreive the Mobile Number for a customer. QBFC has a .mobile property on the ICustomerRet interface. This property however, does not get set, and returns nothing...? Inspecting the OSR, I don't see the mobile property in the…
Louis van Tonder
  • 3,664
  • 3
  • 31
  • 62
0
votes
1 answer

QBFC , QBXML, Get Amount due on Invoice?

Using the QBFC SDK, I cant seem to locate anything in the OSR that would give me the amount due on an invoice, as the Quickbooks UI keeps track of it. The Invoice object in QBFC does not have any applied payment(s) details, not can I find reference…
Louis van Tonder
  • 3,664
  • 3
  • 31
  • 62
0
votes
1 answer

Add Custom Field to QuickBooks Estimate from Customer using VB.NET and QBFC Library

For the life of me, I just cannot seem to get this to work. Here is the situation: I am trying to add the already existing customer custom field (already had a definition, but no value) to an estimate that I am currently creating via QBSDK 12. So…
0
votes
1 answer

Trying to Add itemSubtotalAddRq, but getting error for it

I have been making an app for a friend, but recently got stuck. For some reason, when I try to test "itemSubtotalAddRq" I get the following error: Request[3]: ItemSubtotalAddRq ItemSubtotalAdd Name: required fiels is missing End of…
Alex Moreno
  • 138
  • 1
  • 13
0
votes
1 answer

How to get customers details using Quickbooks QBXML

I used QuickBooks API. Through this API i try to get all customer details like FullName, Addresses(Addr1,Addr2....), City, State, PostalCode etc. Below is my code: RequestProcessor2Class rp = new RequestProcessor2Class(); public void…
Jeet Bhatt
  • 744
  • 1
  • 7
  • 22
0
votes
1 answer

QBSDK - UK 2013 Ignoring TaxRegistrationNumber on CustomerAdd Request

QuickBooks UK 2013 - SDK is ignoring TaxRegistrationNumber field. If you look at the request below we are setting TaxRegistrationNumber however it is being ignored as shown in the response. Here is outgoing XML `
Ocean
  • 1
0
votes
1 answer

QBFC - How do you handle Complex Taxes?

When we import an invoice with multiple taxes, the Tax Liability Report in QuickBooks is reporting all of the Revenue under the first tax. It seems the report is using the Subtotal value and then reports the taxes collected individually. The Taxes…
0
votes
1 answer

QuickBooks SDK cannot add contact to customer

I am getting an error when adding a customer with contacts. The CustomerAdd method has the following lines to add additional contact: IContacts Contacts4965=CustomerAddRq.ContactsList.Append(); Contacts4965.Salutation.SetValue("ab"); //Set field…
user1253073
  • 374
  • 2
  • 6
  • 26
0
votes
1 answer

QBXML, QGFC - How do I retrieve Service Item Descriptions

I am attempting to retrieve Service Items from Quickbooks. When retrieving ItemInventoryRetList, I get some properties to work with, including SalesDescription. ItemInventoryRetList does however not return Service Items. When running an…
Louis van Tonder
  • 3,664
  • 3
  • 31
  • 62
0
votes
1 answer

InventoryAdd will not add to QB inventory

Before, I had this program working. However, im not sure if I either deleted something, or i forgot to add something, but the more I look at it, the less wrong it looks. Maybe all I need is a fresh pair of eyes to look at it, but from what I can…
Alex Moreno
  • 138
  • 1
  • 13
0
votes
1 answer

How do I get VAT rates out of QuickBooks

I can use the SalesTaxCodeQuery in the SDK to get a list of the different tax codes that are configured in Quickbooks. But I need to determine the actual % VAT Rate that applies to these tax codes. What query do I need to use to get that information…
1 2 3
12
13