Trying to get or set sales tax country in Quickbooks SDK - quickbooks

I'm using Quickbooks SDK v11 to integrate with a C# application. Almost everything works fine, but I have a problem with the sales tax country. I want to add customer records to Quickbooks, and I can't figure out how to do it.
To see what's in Quickbooks already, I'm using the following code snippet:
ICustomerRet ret = [My code to retrieve a customer];
ENSalesTaxCountry stc = (ENSalesTaxCountry)ret.SalesTaxCountry.GetValue();
This works fine for a UK customer, but if the customer has a sales tax country of France, the GetValue() call throws an Exception.
A poke around with Intellisense reveals that my ENSalesTaxCountry type only has three options: stcAustralia, stcCanada and stcUK - clearly excluding France.
It seems that the SDK enum supports only these three countries, while Quickbooks itself supports a whole bunch of others.
Any ideas for how to patch the SDK or otherwise get round the problem?

There's no need to rely on intellisense for documentation - you can use the IDN Onscreen Reference for a complete description of SDK queries and responses. You are obviously either using the Canadian or UK edition of QuickBooks, so be sure to check Allow CA or UK 2008+, then either CA or UK to indicate the edition you are using.
However, once you do this you will see that the only sales tax countries supported by the SDK are the Australia, the UK and Canada. In order to find out whether qbXML is returning France or other values that are undocumented, you can call the ToXmlString() method on you ICustomerRet interface. This will give you the raw qbXML. If the value "France" is there, you should be able to see it.
If you find that the qbXML is supporting undocumented countries, you can try including them in customer add requests, but you have to build the qbXML yourself and use the request processor component instead of QBFC to send the message.
You might be able to get more information about this by posting on in the Intuit Developer forums, where you will find dedicated forums for both UK and Canadian QuickBooks development. In fact there is an active discussion on sales tax countries in the UK forum right now, but you won't find it to be encouraging.

Related

How to get country specific result (only for UK) in HERE MAP iOS SDK?

HEREDeveloperSupport
Is there any method for AutoSuggestionRequest to get country specific result?
I am using the Native IOS SDK premium edition version 3.15,i need to show UK results only.
I am following the below code
let autoSuggestionRequest = NMAPlaces.sharedInstance()!.createAutoSuggestionRequest(location:geo,
partialTerm:text, resultType:getResultType())
autoSuggestionRequest?.languagePreference = languageLabel.text
I can't find this option in the 3.x Premium SDK (though I might also be missing it). As a workaround you can directly call the Autosuggest endpoint of the Search & Geocoding API. Using the "in" parameter and country code you can limit your results to a specific country.
Alternatively you can filter the results based on their country afterwards, though I understand that is less than convenient.
As per my R&D (posting date) and discuss with the HERE MAP support team on slack, there is no any method to find the Specific country address search result for example show UK results only. ( 3.x Premium SDK)
Now, I have created custom auto search bar using the POST API and it's working fine but it's showing the search address in your current location.

Microsoft Graph API Road Map

I can't seem to find anything more than the changelog, does anyone know if there's a roadmap for planned functionality?
Notably, we're looking to have our employees enroll in MFA through a custom app calling the Graph API and add their mobile number, other email, and authenticator. I found a confirmation that this would be available from here but there hasn't been any update for nearly two years.
Thanks in advance!
There is no roadmap for Microsoft Graph currently. We announce new features into preview throughout the year with two major moments at Build and Ignite conferences. You can keep up with those announcements at https://developer.microsoft.com/en-us/graph/blogs/.
We do have a Microsoft Graph UserVoice https://microsoftgraph.uservoice.com/ where you can request and see others requests. Our PMs will actually change the status of features that are in development. This will give you a subset of the things we're working on that relate to public requests.
As you mention , our Change log will be the way to track new things on the API https://learn.microsoft.com/en-us/graph/changelog.
We also have a monthly Community Call online that we announce things that is the first tuesday of every month. https://developer.microsoft.com/en-us/graph/events . Existing events are blogged about and also available here https://developer.microsoft.com/en-us/graph/gallery/?filterBy=Podcasts,Videos

How can I possibly get Sales and Order info from Merch by Amazon

I am relatively new in using Amazon's APIs. I am trying to get Sales and Orders information for Merch by Amazon in Ruby on Rails. How can I possibly do that .I have researched a lot but unable to find any answers as Merch is a new platform, they do give developer api but for advertisement of my current products apparently. Is there any third party api or any way so I can get the sales and order's data of my Merch account in RoR. Thanks in Advance.
It is very simple what you have to do. First you must sign up for Merch via Amazon then you must list what type of business you are, i.e. education etc. Then you will have to wait for a confirmation via email as far as I can tell it should be smooth sailing from there!

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 out of Quickbooks ?
Unfortunately, QuickBooks does not support returning this information to you.

what POIs (Point of Interests) DB can I use for a commercial app

I need a POI database for a startup project I am working on - it will be a free basic version and a premium paid for version in the sense that user will pay a monthly subscription.
I would like to use foursquare type checkin to places and plancast type functionality to search for places (one-line search). Ie I need to:
perform a search for POIs around a location
associate users to that POI, with a time stamp
allow users to add own POIs
provide free-text search for POIs (a la google one-line search)
Google API allows great search, but I understand there are limits in number of requests that can be done? This would prevent scaling, and may result in application breaking when too many users. Also what does google T&C say about using this in a paid for service?
Openstreetmap I understand does not have these contstraints, but do they also provide a good one-line search type API? Or how could I solve this?
have a look at http://eventful.com/ or http://qype.com - they both have APIs you can call to get find out whats happening near you. You can convert these events into POIs in your application. The APIs are free to use (your app just need to credit Eventful or Qype).
Take a look at the API at http://compass.webservius.com - may not have everything you need, but has very rich data on 16+ million business locations in the USA.

Resources