quickbooks - QBXML : Can I get the balance sheet or do I have to calculate it? -
i creating overview page customer gets invoice , sales data quickbooks using qbxml via php app , web connector.
the customer me include balance sheet (for requested date(s)). possible retrieve directly, or have item , account data , calculate myself?
this possible do.
using qbxml , web connector, can send quickbooks qbxml request asking generate report, , return report data you. report data returned in nice parseable xml format.
if @ osr:
you'll find option for:
- generalsummaryreportquery
if use syntax send qbxml request like:
<?xml version="1.0" encoding="utf-8"?> <?qbxml version="13.0"?> <qbxml> <qbxmlmsgsrq onerror="stoponerror"> <generalsummaryreportqueryrq> <generalsummaryreporttype>balancesheetstandard</generalsummaryreporttype> <displayreport>false</displayreport> <reportperiod> <fromreportdate>2013-01-01</fromreportdate> <toreportdate>2014-01-01</toreportdate> </reportperiod> </generalsummaryreportqueryrq> </qbxmlmsgsrq> </qbxml>
you'll nicely formatted row/column xml document balance sheet details.
more details on quickbooks qbxml example site , quickbooks wiki.
Comments
Post a Comment