Sunday 15 March 2015

Get company name that is opened in Quickbooks using QBFC -


I can get companyfilm using QBFC but could not get the proper class in the name of the open company in the QuickBook.

Any thoughts will be highly appreciated.

I know that this is an old question after searching for other answers related to QBFC, I thought I would post an answer. It can help anyone starting this.

There is an excellent resource for this type of question, it is a bit cumbersome to use, but it will give you a sample code for either test in VB.NET or C #. You need to know what you want to know about the request. In this situation, you are searching for CompanyQuery \ ICompanyQuery . The generated sample code shows how to make a request and parse the response. In the sample code named BuildCompanyQueryRq , the function has some invalid code that you will need to change for your solution.

CompanyQueryRq.IncludeRetElementList.Add ("ab");

Change it to:

Add CompanyQueryRq.IncludeRetElementList ("Company Name");

He will only request the property of the company name if you wanted to add more assets, then you will use the property name to add it to the list. If you delete the line completely, you will retrieve all the fields. Only recommended what you need

Note: I have read that according to the documentation, this matter is sensitive.

Then you need to look at the WalkCompanyQueryRs function to see how to get the value. The sample will retrieve as much data as possible from the response. You will need to trim the code back in the requested areas.

FYI: The OSR has the ability to change the version of the SDK specification, as well as used when generating references.

No comments:

Post a Comment