Quantcast
Channel: FLEXquarters.com Limited
Viewing all articles
Browse latest Browse all 313

Troubleshooting - How to give refund to existing CreditMemo using...

$
0
0

Troubleshooting - How to give refund to existing CreditMemo using QODBC

Problem Description:

How can I apply a refund check to an existing credit memo using QODBC?

In QuickBooks, I can refund by opening the Create Credit Memos/Refunds dialogue box using the QuickBooks UI and find the credit memo for that customer. In the dialogue box icon bar, click on the "Use credit to give a refund".



Solutions:

You can use CheckApplyCheckToTxn table which is Insert Only table to create a check to pay off a credit memo. You can give refunds to an existing credit memo by using below queries:

INSERT INTO CheckExpenseLine (AccountRefListID,ExpenseLineAccountRefListID,ExpenseLineAmount, ExpenseLineMemo,ExpenseLineCustomerRefListID, ExpenseLineBillableStatus, FQSaveToCache) Values ('20000-933270541','40000-933270541',80,'Test Memo','800000E2-1513333899',null,1)



Insert into CheckApplyCheckToTxn ( AccountRefListID,PayeeEntityRefListID,TxnDate,ApplyCheckToTxnTxnID,ApplyCheckToTxnAmount) values ('20000-933270541','800000E2-1513333899',{d'2017-12-18'},'1B3C0-1513338090',80)



After executing above queries, you can see CreditMemo as Refunded in QuickBooks.



You can get ApplyCheckToTxnTxnID from TxnID field of CreditMemo table for that particular Transaction by using below query.

SELECT TxnID,RefNumber FROM CreditMemo where RefNumber='1268'




Viewing all articles
Browse latest Browse all 313

Trending Articles