quickbooks

Add menu item to Quickbooks

一个人想着一个人 提交于 2019-12-12 13:01:05
问题 Is it possible to add a menu item to Quickbooks using the QBSDK? I have found a couple of old examples that I can't make work. I have created a custom application for my company and am trying to simplify it by making a menu item in Quickbooks. Any help would be greatly appreciated. Here is what I have tried so far, but I get an error message at the subAdd.SubscriberID.SetValue(Me.appGUID.ToString). The error is: * Invalid GUID format. Must use zero for Custom Fields, or a GUID generated with

“Internal Server Error” on QBO Api Update call

此生再无相见时 提交于 2019-12-12 05:22:24
问题 When I send an update request to the QBO V2 api, I get back an 'internal server error' response. These requests used to work; I even have an unchanged unit test from before specifically for this request that no longer works. All of my other request types seem to still be working. Normally QBO gives pretty decent error messages if it's something I messed up with the request. Has anyone else run into a similar issue recently, or have any ideas on what I could be doing that wouldn't result in a

quickbooks vendor credit error message

一世执手 提交于 2019-12-12 02:48:48
问题 When I sent the following XML to QuickBooks Desktop cloud, I received the following error which I don't understand. Googled but didn't find anything relating. Does anyone know what the source column is? error message received: p_validate_txn_ln - unable to find src_column_name_id per ref id acc_id = 39 idDomain = QB <Object xsi:type="VendorCredit"><Header> <DocNumber>8D1FC366607</DocNumber> <TxnDate>2013-09-11</TxnDate> <Note>Expense Report 09/11/2013 #2</Note> <VendorName>E100</VendorName>

Update payment in open-source QuickBooks PHP DevKit on GitHub

跟風遠走 提交于 2019-12-12 02:47:14
问题 I am using the open-source QuickBooks PHP DevKit on GitHub. I am trying to update a payment. But I am getting an error "ERROR!2030: [Invalid ID, Id should be a valid number. Supplied value:{-17}]" Code I had given is shown below First added code for update function in Quickbooks/IPP/Service/Payment.php like below: public function update($Context, $realm, $IDType, $Object) { return parent::_update($Context, $realm, QuickBooks_IPP_IDS::RESOURCE_PAYMENT, $Object, $IDType); } After that in the

How to add AccountID or ItemID when creating Checks in QuickBooks

≡放荡痞女 提交于 2019-12-12 02:29:13
问题 When I write checks through the Intuit .Net SDK, I'm getting the following error saying "Error validating Detail Line 1, Account ID or Item ID Field:Please specify an Item ID or an Account ID." API Documentation also saying that Line (CheckLine) should have Account ID or Item ID . But there aren't any Property for Account ID or Item Id in CheckLine Object. Could you please tell me how to assign account Id or Item ID for the CheckLine object. sample code: Dim line = New Qbo.CheckLine(1) {}

Unauthorized OAuth Token: signature_invalid when adding anything to the request body on POST

折月煮酒 提交于 2019-12-11 19:26:13
问题 When doing any filters or any other option allowed in the request body per documents like this: https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/v2/0400_quickbooks_online/in... (the quickbooks online API document) I always get the error "Unauthorized OAuth Token: signature_invalid" in my own application as well as the API tool located here: https://developer.intuit.com/apiexplorer Example of what I put in request body: PageNum=1&ResultsPerPage=20 or simply

Intuit Partner Platform - Can't add an invoice because Item ID is unknown

南笙酒味 提交于 2019-12-11 18:36:31
问题 I am trying to insert an invoice via IPP into a blank Quickbooks store. The insert will always fail because the Item's ID for the Invoice line item does not exist. I have been trying multiple paths to code around this with no success. I thought I could query for the Items and if it cannot find the one I am looking for It will create it. I cannot seem to get this to work. Can I just build an Invoice with a new Item I have created? I currently build the invoice like this: (the problem is the

Quickbooks Webconnector Delays 10+ minutes before each import

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-11 18:00:06
问题 I have a portal that we use to import invoices, customers and vendors into Quickbooks using web connector. The import is successful, however, after we submit each new entry their is a 10+ minute delay from the time we submit to the time the entry is imported into Quickbooks. Please find my QWC File Code, Que Table and Logs. QWClog File below is my controller i use to import data in quickbooks class QuickBooks extends CI_Controller { public function __construct() { parent::__construct(); //

QuickBooks Retrieve of Customers Fails

試著忘記壹切 提交于 2019-12-11 17:46:09
问题 I have this code: protected readonly IMsgSetRequest RequestMsgSet = null; protected IMsgSetResponse ResponseMsgSet = null; public string GetAllCustomer(bool IsActiveOnly = true) { RequestMsgSet.ClearRequests(); ICustomerQuery CustomerQueryRq = RequestMsgSet.AppendCustomerQueryRq(); if (IsActiveOnly) { if (CustomerQueryRq != null) CustomerQueryRq.ORCustomerListQuery.CustomerListFilter.ActiveStatus.SetValue( ENActiveStatus.asActiveOnly); } else { CustomerQueryRq.ORCustomerListQuery

Q&A: How to setup Quickbooks OAuth2 on Zapier

馋奶兔 提交于 2019-12-11 15:35:27
问题 Zapier has been a handy way to connect to API's like quickbooks. However there is very little documentation on how to set this up, which caused me to spend weeks figuring it out (hopefully for you this will help!). This is a Q&A post, however if anyone has input that will improve this information please feel free to share here. If you find yourself in a situation like mine and you are looking on how to also make an 'action' or 'trigger' for quickbooks just leave a comment and I can work on a