(IMAGE LINNK at bottom of body for reference of the field I'm talking about)
Trying to Add a Class into the top bill section and not just the expense line add section.
This code works fine but the class doesn't show in the main bill.
I tried just putting a class ref outside the expense lines with the vendor ref but didn't work.
Ive also looked at all versions of the xml from this site.
https://developer-static.intuit.com/qbsdk-current/common/newosr/index.html
So just looking to see if anyone has any advice or if there's something I'm missing.
not an accountant so a little confused.
this is the enterprise solutions 19.0 version of quickbooks.
Thanks
<?xml version="1.0"?>
<?qbxml version="10.0"?>
<QBXML>
<QBXMLMsgsRq onError="stopOnError">
<BillAddRq requestID=" ">
<BillAdd>
<VendorRef>
<FullName>
Vendor
</FullName>
</VendorRef>
<TxnDate>
2020-02-18
</TxnDate>
<RefNumber />
<Memo>
memo
</Memo>
<ExpenseLineAdd>
<AccountRef>
<FullName>
Inventory Asset
</FullName>
</AccountRef>
<Amount>
334.00
</Amount>
<Memo>
memo
</Memo>
<ClassRef>
<FullName>
admin
</FullName>
</ClassRef>
</ExpenseLineAdd>
<ExpenseLineAdd>
<AccountRef>
<FullName>
Freight and Shipping Costs
</FullName>
</AccountRef>
<Amount>
20.00
</Amount>
<Memo>
fees
</Memo>
<ClassRef>
<FullName>
memo[enter image description here][1]
</FullName>
</ClassRef>
</ExpenseLineAdd>
</BillAdd>
</BillAddRq>
</QBXMLMsgsRq>
</QBXML>