quickbooks

How to import Other Payroll Item data

倖福魔咒の 提交于 2019-12-11 13:56:41
问题 I am trying to find documentation that details how to import 'Other Payroll Items' data to Quickbooks Payroll. I would like to import quantities for non-taxable items such as mileage and lodging. So far, I have not been able to find any information on these processes. My target is Quickbooks Desktop with the Web Connector. Does anyone have experience with this and could give me a few pointers, maybe just a place in the SDK documentation I should be using to get started? Third party tools

quickbooks desktop web connector qbxml: add invoice with CLASS field

核能气质少年 提交于 2019-12-11 13:38:25
问题 I'm trying to add an invoice and populate its CLASS field with a value (I can't post a screenshot of the invoice "CLASS" field because I don't have the reputation, its the field just to the right of "PRICE EACH" field), I don't know how to add the CLASS value in the qbxml. Here is the xml I'm using and it works: $xml = '<?xml version="1.0" encoding="utf-8"?> <?qbxml version="2.0"?> <QBXML> <QBXMLMsgsRq onError="stopOnError"> <InvoiceAddRq requestID="xxxxxxxx"> <InvoiceAdd> <CustomerRef>

Can a single company really not use QB API?…Semi Rant

∥☆過路亽.° 提交于 2019-12-11 12:56:56
问题 We need to integrate our custom in house applications with quickbooks. When I saw the QB REST API and the IPP I was like "Yay!!! Finally Qb offered us something useful!". It was a happy moment..... Then I read this in the FAQ I want to integrate my custom (non-SaaS, single-tenant) solution with QuickBooks API. Can I do this? Not today, but we are considering it. What? Why? were paying customers, we have integration problems....largely caused by YOU intuit! You already built it...I assume it

Quickbooks SDK 13.0 ToDoAddRq C#

本秂侑毒 提交于 2019-12-11 11:43:22
问题 hey guys i'm new to this sdk i'm trying to add TODO every thing is fine till i'm trying to specify time or Priority or type it is giving me error "QuickBooks found an error when parsing the provided XML text stream" i'm using SDK 13 can any one help me please thank you using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using QBFC13Lib; using System.Globalization; using System.Windows.Forms; namespace testing { public partial class Form2

connect QuickBooks IPP to QuickBooks Online

醉酒当歌 提交于 2019-12-11 11:28:33
问题 My company uses QuickBooks Online, and I would like to write some php scripts that retrieve very basic information like a list of customers and list of invoices from the QuickBooks Online subscription. Therefore, I created a QuickBooks IPP account (at developer.intuit.com). Now, how do I connect/point my QuickBooks IPP account to my company's QuickBooks Online subscription? Thank you. 回答1: We use three-legged OAuth to authorize your application to make calls to your QBO account: https:/

Remote Connection to QuickBooks Data using RSSBus

空扰寡人 提交于 2019-12-11 07:55:21
问题 I'm using the RSSbus ADO.net library to access a QuickBooks file for import and exporting from an application I'm working on. I have had success connecting and getting data using the local file connection setting, but I cannot seem to get the URL connection setting to work. Reading the documentation has not been helpful. Has anyone else used the library to connection from a Web Application to a user's local QuickBooks file? Currently from what I have understood from the documentation I should

How can I use API to get quickbooks data without browser based OAUTH?

落爺英雄遲暮 提交于 2019-12-11 07:54:13
问题 This is in relation to the online version of Quickbooks, QBO (not the desktop). We need our serverside code to be able to log-in and query some data from quickbooks (just like your API provides) and supply this information to our billing system. This would not involved a browser and use something like curl but this means there is no browser and no human to 'log in' and 'request access' each time. I have not found a way to do this yet. Any ideas? 回答1: Your question was already answered over

QODBC SELECT taking > 15 minutes to return results

可紊 提交于 2019-12-11 07:21:08
问题 I'm pretty new to using QODBC for QuickBooks reporting. One of the first SELECT queries I prepared essentially flags customers with existing unused payments in the ReceivePayment table, querying against invoices with remaining balance for that same customer. The output is (or should be) a list of customers grouped by CustomerRefFullName, with a sum of unused payments in column #2, and sum of total balance remaining from open invoices. It's a fairly simple query. When I import the table to MS

Quick Book Error You and sam working on this at the same time

早过忘川 提交于 2019-12-11 05:59:11
问题 I am trying to update the data in quick book while updating i am getting exception as follows " You and sam were working on this at the same time. sam finished before you did, so your work was not saved. " I have attached the screenshot for your reference. Please let me know if you need any detailed explanation about this issue. Any help would be appreciated. Code oBillHeader.VendorId = new IdType() { idDomain = idDomainEnum.QBO, Value = vendorID }; oBillHeader.VendorName = vendorNameVal;

Authentication issue using QuickBooks Web Connector: Object reference not set to an instance of an object

百般思念 提交于 2019-12-11 05:29:56
问题 (Yes, I realize that this question is similar to another question posted; however, that question was never answered.) Objective I'm trying to use Clojure with Axis 2 to access QuickBooks data using the QuickBooks WebConnector (QBWC from now on). QBWC uses SOAP to communicate with external applications, so that's why my Clojure application uses Axis 2 as a SOAP interface. I use micha's clj-soap from GitHub to provide higher-level (abstracted) Clojure interop with the Java calls of Axis 2.