[QODBC-Desktop] How to convert an Estimate to a Sales Order using QODBC
Posted by brad waddell on 12 March 2009 05:21 PM
|
|
An Example of Converting an Estimate to a Sales OrderNote: VB Demo is deprecated.Please refer to How to use the QODBC Test Tool for testing CREATE AN ESTIMATE WITH ONE LINEQuery in QODBC The following SQL statement will create a new estimate: INSERT INTO "EstimateLine" ("CustomerRefListID", "RefNumber", "EstimateLineItemRefListID",
Result in QuickBooks The query above results in the following estimate in the QuickBooks 2006 Premier USA Edition - Sample Rock Castle Construction company file:
See: How to create Estimates using QODBC for more about Estimates Creating. CREATE A SALES ORDER FROM AN ESTIMATEQuery in QODBC When we're ready to create the Sales Order, we can read the EstimateLine table and insert it into the SalesOrderLine table like this: INSERT INTO "SalesOrderLine" ("CustomerRefListID", "RefNumber", "Memo", "SalesOrderLineItemRefListID", Note: This is one complete SQL statement. For multiple estimate lines, you would set FQSaveToCache to 1 instead (using:1 as "FQSaveToCache") and loop the EstimateLineSeqNos until the last one setting FQSaveToCache to 0.
Result in QuickBooks The estimate now appears as a Sales Order in QuickBooks with "Estimate 201" in the memo field, the same way QuickBooks creates a Sales Order from an Estimate.
| |
|