quickbooks - Creating an Invoice with LineItemRef does not automatically fill the line item description -


when try create invoice line item ref without providing line item description, qbo doesn't prefill product description line item description. have checked same via apiexplorer , confirmed behaviour.

here's sample create request xml:

<invoice xmlns="http://schema.intuit.com/finance/v3">   <line>     <amount>15</amount>     <detailtype>salesitemlinedetail</detailtype>     <salesitemlinedetail>       <itemref>36</itemref>     </salesitemlinedetail>   </line>   <customerref>378</customerref> </invoice> 

is there anyway can ask qbo prefill description line item if no description field specified part of create request?

thanks, ravi

no, not possible. need explicitly set description value.

thanks


Comments