Note that there are some explanatory texts on larger screens.

plurals
  1. POIs there a way to identify tax row which is added on QuickBooks Canada QBResponse, QB SDK
    primarykey
    data
    text
    <p>We have QuickBooks Canada version. When we fetch records for Purchase Order it does returns all the records and along with that returns Tax row which is being added by QuickBooks CA.</p> <pre><code>&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt; &lt;?qbxml version="12.0"?&gt; &lt;QBXML&gt; &lt;QBXMLMsgsRq onError="continueOnError"&gt; &lt;PurchaseOrderQueryRq requestID="1"&gt; &lt;TxnID&gt;2304-1229340744&lt;/TxnID&gt; &lt;IncludeLineItems&gt;1&lt;/IncludeLineItems&gt; &lt;IncludeLinkedTxns&gt;0&lt;/IncludeLinkedTxns&gt; &lt;IncludeRetElement&gt;TxnID&lt;/IncludeRetElement&gt; &lt;IncludeRetElement&gt;EditSequence&lt;/IncludeRetElement&gt; &lt;IncludeRetElement&gt;PurchaseOrderLineGroupRet&lt;/IncludeRetElement&gt; &lt;IncludeRetElement&gt;PurchaseOrderLineRet&lt;/IncludeRetElement&gt; &lt;OwnerID&gt;0&lt;/OwnerID&gt; &lt;/PurchaseOrderQueryRq&gt; &lt;/QBXMLMsgsRq&gt; &lt;/QBXML&gt; </code></pre> <p>The extra row response has is</p> <pre><code>&lt;PurchaseOrderLineRet&gt; &lt;TxnLineID&gt;2311-1229340744&lt;/TxnLineID&gt; &lt;ItemRef&gt; &lt;ListID&gt;490000-1195038595&lt;/ListID&gt; &lt;FullName&gt;Summary GST for purchases&lt;/FullName&gt; &lt;/ItemRef&gt; &lt;Desc&gt;Total GST&lt;/Desc&gt; &lt;Rate&gt;5.0%&lt;/Rate&gt; &lt;ClassRef&gt; &lt;ListID&gt;40001-1199213409&lt;/ListID&gt; &lt;FullName&gt;Pro Shop:Special orders&lt;/FullName&gt; &lt;/ClassRef&gt; &lt;Amount&gt;798.00&lt;/Amount&gt; &lt;CustomerRef&gt; &lt;ListID&gt;10000-1193777303&lt;/ListID&gt; &lt;FullName&gt;Receiver General&lt;/FullName&gt; &lt;/CustomerRef&gt; &lt;ReceivedQuantity&gt;0&lt;/ReceivedQuantity&gt; &lt;IsBilled&gt;false&lt;/IsBilled&gt; &lt;IsManuallyClosed&gt;false&lt;/IsManuallyClosed&gt; &lt;/PurchaseOrderLineRet&gt; </code></pre> <p>Is there a way to identify this row. Issue is, if we want to update this order we need to send all the Order line. And if we send the last line which is of Tax (generated by QB) , QuickBooks SDK throws error. MLMsgsRs></p> <pre><code> &lt;PurchaseOrderModRs requestID="1" statusCode="3120" statusSeverity="Error" statusMessage="Object &amp;quot;2311-1229340744&amp;quot; specified in the request cannot be found. " /&gt; </code></pre> <p>So we need to exclude this line on the PurchaseOrderModRq </p> <p>Note : Not all Purchase Order's Last line has this tax row.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload