开发者

How to open new Estimate created by QBXML

Hello

I am a web developer

On my web page there is an IRequestProcessor2 object and few JavaScript functions to work with him.

I can create new Estimate in QuickBooks by QBXML query.

Now I need to activate QuickBooks window automatically and open that Est开发者_运维技巧imate

Is there possible by QBXML (or QBFC)?

And how?

Thank you.


You can use the TxnDisplayMod command to open the Edit Estimate window within QuickBooks. The qbXML syntax looks like this:

<?xml version="1.0" encoding="utf-8"?>
<?qbxml version="8.0"?>
<QBXML>
  <QBXMLMsgsRq onError="stopOnError">
    <TxnDisplayModRq>
      <!-- TxnDisplayModType may have one of the following values: Bill, BillPaymentCheck, BillPaymentCreditCard, BuildAssembly, Charge, Check, CreditCardCharge, CreditCardCredit, CreditMemo, Deposit, Estimate, InventoryAdjustment, Invoice, ItemReceipt, JournalEntry, PurchaseOrder, ReceivePayment, SalesOrder, SalesReceipt, SalesTaxPaymentCheck, VendorCredit -->
      <TxnDisplayModType >ENUMTYPE</TxnDisplayModType> <!-- required -->
      <TxnID >IDTYPE</TxnID> <!-- required -->
    </TxnDisplayModRq>
  </QBXMLMsgsRq>
</QBXML>

From the QuickBooks SDK documentation:

A TxnDisplayMod request opens a QuickBooks transaction within the QuickBooks UI for modification.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜