<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<title><![CDATA[FLEXquarters.com Limited]]></title>
<link><![CDATA[https://support.flexquarters.com/esupport/]]></link>
<description />
<generator><![CDATA[Kayako case v4.66.2]]></generator>
<item>
<title><![CDATA[[QODBC-Desktop] Troubleshooting - How to connect to QuickBooks using PDO]]></title>
<link><![CDATA[https://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2982]]></link>
<guid isPermaLink="false"><![CDATA[a11ce019e96a4c60832eadd755a17a58]]></guid>
<pubDate><![CDATA[Tue, 26 Dec 2017 09:45:48 +0000]]></pubDate>
<dc:creator />
<description><![CDATA[ Troubleshooting - How to connect to QuickBooks using PDO 
Problem Description:
We have a setup connecting a PHP application to QuickBooks with QODBC. This works correctly using odbc_connect.
However, if we try to connect using PDO instead, we get 500 ...]]></description>
<content:encoded><![CDATA[<h2><span style="color: #6633cc; font-family: Arial,Helvetica,sans-serif;"> Troubleshooting - How to connect to QuickBooks using PDO </span></h2>
<h3><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Problem Description:</span></span></h3>
<p>We have a setup connecting a PHP application to QuickBooks with QODBC. This works correctly using odbc_connect.</p>
<p>However, if we try to connect using PDO instead, we get 500 Internal Errors. See the code below:</p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;">try{
$conn = new PDO ("odbc:QuickBooks Data QRemote", "", "");
$conn-&gt;setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$query = "SELECT * FROM Customer";
#Perform the query

$conn-&gt;beginTransaction();
$stmt = $conn-&gt;prepare($query);
$stmt-&gt;execute();
$conn-&gt;commit();
$res = $stmt-&gt;fetchAll(PDO::FETCH_ASSOC);

print_r($res);

die(json_encode(array('outcome' =&gt; true)));
}
catch(PDOException $ex){
die(json_encode(array('outcome' =&gt; false, 'message' =&gt; 'Unable to connect')));
}
</pre>
</div>
<p>&nbsp;</p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/PDO/step1.png" alt="" /></p>
<h3><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Solution:</span></span></h3>
<p>To resolve this issue, Please download &amp; install QODBC's latest version, V323 or above, by clicking <a href="http://www.qodbc.com/qodbcDownload.htm" target="_blank">here</a>.</p>
<p>There is a known issue with the PDO connection when connecting to QRemote using PDO; it does not return the result if you have a lot of records on the table or are fetching all columns (i.e., Select * from TableName).</p>
<p>So instead of selecting all columns using wildcard character *, you need to specify a limited column name &amp; execute the query.</p>
<p>For Example:</p>
<p>Select ListID, FullName, CompanyName, Email, and Balance from the Customer</p>
<p>Select TxnID, CustomerRefFullName, TxnDate, RefNumber, TermsRefFullName, Subtotal, InvoiceLineItemRefFullName, InvoiceLineDesc, InvoiceLineQuantity, InvoiceLineRate, InvoiceLineAmount FROM InvoiceLine</p>
<p>If your table contains a lot of data, please use the date filter in your query below.</p>
<p>For Example:</p>
<p>Select TxnID, CustomerRefFullName, TxnDate, RefNumber, TermsRefFullName, Subtotal, InvoiceLineItemRefFullName, InvoiceLineDesc, InvoiceLineQuantity, InvoiceLineRate, InvoiceLineAmount FROM InvoiceLine TxnDate &gt;= {d'2017-06-01'} and TxnDate &lt;= {d'2017-06-30'}</p>
<p>After installing the latest QODBC version, you should able to run the PDO script.</p>
<p>Please use below sample script.</p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #557799;">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;</span>
<span style="color: #007700;">&lt;html&gt;</span>
<span style="color: #007700;">&lt;head&gt;</span>
<span style="color: #007700;">&lt;title&gt;</span>QODBC PHP Script To Display SQL Results<span style="color: #007700;">&lt;/title&gt;</span>
<span style="color: #007700;">&lt;/head&gt;</span>
<span style="color: #007700;">&lt;body</span> <span style="color: #0000cc;">topmargin=</span><span style="background-color: #fff0f0;">"3"</span> <span style="color: #0000cc;">leftmargin=</span><span style="background-color: #fff0f0;">"3"</span> <span style="color: #0000cc;">marginheight=</span><span style="background-color: #fff0f0;">"0"</span> <span style="color: #0000cc;">marginwidth=</span><span style="background-color: #fff0f0;">"0"</span> <span style="color: #0000cc;">bgcolor=</span><span style="background-color: #fff0f0;">"#ffffff"</span> <span style="color: #0000cc;">link=</span><span style="background-color: #fff0f0;">"#000066"</span> <span style="color: #0000cc;">vlink=</span><span style="background-color: #fff0f0;">"#000000"</span> <span style="color: #0000cc;">alink=</span><span style="background-color: #fff0f0;">"#0000ff"</span> <span style="color: #0000cc;">text=</span><span style="background-color: #fff0f0;">"#000000"</span><span style="color: #007700;">&gt;</span>
<span style="color: #007700;">&lt;table</span> <span style="color: #0000cc;">border=</span><span style="background-color: #fff0f0;">"0"</span> <span style="color: #0000cc;">border=</span><span style="background-color: #fff0f0;">"0"</span> <span style="color: #0000cc;">bgcolor=</span><span style="background-color: #fff0f0;">"lightgreen"</span> <span style="color: #0000cc;">bordercolor=</span><span style="background-color: #fff0f0;">"black"</span> <span style="color: #0000cc;">cellpadding=</span><span style="background-color: #fff0f0;">"0"</span> <span style="color: #0000cc;">cellspacing=</span><span style="background-color: #fff0f0;">"0"</span><span style="color: #007700;">&gt;</span>
<span style="color: #007700;">&lt;tr&gt;</span>
<span style="color: #007700;">&lt;td&gt;</span>
<span style="color: #007700;">&lt;table</span> <span style="color: #0000cc;">border=</span><span style="background-color: #fff0f0;">"2"</span> <span style="color: #0000cc;">bordercolor=</span><span style="background-color: #fff0f0;">"black"</span> <span style="color: #0000cc;">bgcolor=</span><span style="background-color: #fff0f0;">"white"</span> <span style="color: #0000cc;">cellpadding=</span><span style="background-color: #fff0f0;">"5"</span> <span style="color: #0000cc;">cellspacing=</span><span style="background-color: #fff0f0;">"0"</span><span style="color: #007700;">&gt;</span>
<span style="color: #007700;">&lt;caption</span> <span style="color: #0000cc;">align=</span><span style="background-color: #fff0f0;">"top"</span><span style="color: #007700;">&gt;</span>QODBC PHP Script To Display SQL Results<span style="color: #007700;">&lt;/caption&gt;</span>
<span style="color: #557799;">&lt;?php</span>
<span style="color: #996633;">$conn</span> <span style="color: #333333;">=</span> <span style="color: #008800; font-weight: bold;">new</span> PDO (<span style="background-color: #fff0f0;">"odbc:QuickBooks Data QRemote"</span>, <span style="background-color: #fff0f0;">""</span>, <span style="background-color: #fff0f0;">""</span>);
<span style="color: #996633;">$conn</span><span style="color: #333333;">-&gt;</span><span style="color: #0000cc;">setAttribute</span>(PDO<span style="color: #333333;">::</span><span style="color: #0000cc;">ATTR_ERRMODE</span>, PDO<span style="color: #333333;">::</span><span style="color: #0000cc;">ERRMODE_EXCEPTION</span>);
<span style="color: #996633;">$conn</span><span style="color: #333333;">-&gt;</span><span style="color: #0000cc;">setAttribute</span>( PDO<span style="color: #333333;">::</span><span style="color: #0000cc;">ATTR_ERRMODE</span>, PDO<span style="color: #333333;">::</span><span style="color: #0000cc;">ERRMODE_WARNING</span> );
<span style="color: #996633;">$query</span> <span style="color: #333333;">=</span> <span style="background-color: #fff0f0;">"SELECT TxnID,CustomerRefFullName,TxnDate,RefNumber,BillAddressAddr1,BillAddressAddr2,BillAddressCity,BillAddressState,BillAddressPostalCode,TermsRefFullName,DueDate,Subtotal,InvoiceLineItemRefFullName,InvoiceLineDesc,InvoiceLineQuantity,InvoiceLineRate,InvoiceLineAmount FROM InvoiceLine"</span>;
<span style="color: #996633;">$stmt</span> <span style="color: #333333;">=</span> <span style="color: #996633;">$conn</span><span style="color: #333333;">-&gt;</span><span style="color: #0000cc;">prepare</span>(<span style="color: #996633;">$query</span>);
<span style="color: #996633;">$stmt</span><span style="color: #333333;">-&gt;</span><span style="color: #0000cc;">execute</span>();
<span style="color: #996633;">$colcount</span> <span style="color: #333333;">=</span> <span style="color: #996633;">$stmt</span><span style="color: #333333;">-&gt;</span><span style="color: #0000cc;">columnCount</span>();
<span style="color: #008800; font-weight: bold;">foreach</span> (<span style="color: #996633;">$stmt</span><span style="color: #333333;">-&gt;</span><span style="color: #0000cc;">fetchall</span>(PDO<span style="color: #333333;">::</span><span style="color: #0000cc;">FETCH_BOTH</span>) <span style="color: #008800; font-weight: bold;">as</span> <span style="color: #996633;">$row</span>)
{
  <span style="color: #008800; font-weight: bold;">echo</span> <span style="background-color: #fff0f0;">'&lt;tr&gt;'</span>;
  <span style="color: #008800; font-weight: bold;">for</span>(<span style="color: #996633;">$i</span> <span style="color: #333333;">=</span> <span style="color: #0000dd; font-weight: bold;">0</span>; <span style="color: #996633;">$i</span> <span style="color: #333333;">&lt;</span> <span style="color: #996633;">$colcount</span>;  <span style="color: #996633;">$i</span><span style="color: #333333;">++</span> ) {
		<span style="color: #008800; font-weight: bold;">echo</span> <span style="background-color: #fff0f0;">'&lt;td&gt;'</span>;
		<span style="color: #007020;">print_r</span>(<span style="color: #996633;">$row</span>[<span style="background-color: #fff0f0;">"</span><span style="background-color: #eeeeee;">$i</span><span style="background-color: #fff0f0;">"</span>]);
		<span style="color: #008800; font-weight: bold;">echo</span> <span style="background-color: #fff0f0;">'&lt;/td&gt;'</span>;
  }
  <span style="color: #008800; font-weight: bold;">echo</span> <span style="background-color: #fff0f0;">'&lt;/tr&gt;'</span>;
}
<span style="color: #557799;">?&gt;</span>
<span style="color: #007700;">&lt;/table&gt;</span>
<span style="color: #007700;">&lt;/td&gt;</span>
<span style="color: #007700;">&lt;/tr&gt;</span>
<span style="color: #007700;">&lt;/table&gt;</span>
<span style="color: #007700;">&lt;/body&gt;</span>
<span style="color: #007700;">&lt;/html&gt;</span>
</pre>
</div>
<p>&nbsp;</p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/PDO/step2.png" alt="" /></p>
<p>&nbsp;</p>]]></content:encoded>
</item>
<item>
<title><![CDATA[[QODBC-Desktop] Intuit Announces QuickBooks 2007]]></title>
<link><![CDATA[https://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2968]]></link>
<guid isPermaLink="false"><![CDATA[62da8c91ce7b10846231921795d6059e]]></guid>
<pubDate><![CDATA[Thu, 02 Nov 2017 14:18:44 +0000]]></pubDate>
<dc:creator />
<description><![CDATA[ Intuit Announces QuickBooks 2007
New Features and Integrated Services Solve Small Businesses' Most Important Problems
MOUNTAIN VIEW, Calif.--(BUSINESS WIRE)--Intuit Inc. (Nasdaq: INTU) today announced the availability of QuickBooks&reg; 2007. The new l...]]></description>
<content:encoded><![CDATA[<h2><span style="color: #6633cc; font-family: Arial,Helvetica,sans-serif;"> Intuit Announces QuickBooks 2007</span></h2>
<p><strong>New Features and Integrated Services Solve Small Businesses' Most Important Problems</strong></p>
<p>MOUNTAIN VIEW, Calif.--(BUSINESS WIRE)--Intuit Inc. (Nasdaq: INTU) today announced the availability of QuickBooks&reg; 2007. The new line of products and services focuses on what matters most to small businesses: making day-to-day tasks even easier to complete while adding deeper functionality for specialized and growing companies.</p>
<p>QuickBooks 2007 includes powerful new tools and services that help small businesses succeed in activities beyond accounting. For the first time, Intuit is offering customers integrated tools to market their business and attract new customers, as well as new services that extend QuickBooks' functionality - from accepting credit cards to managing timesheets and running payroll. Combined, these create a robust ecosystem of distinctive solutions to help existing and new-to-the-world businesses be successful.</p>
<p>"No one serves small business and accountants better than Intuit," said Brad Smith, senior vice president of Intuit's Small Business Division. "For nearly 15 years, we have remained laser-focused on ease, continuously improving the market-leading small business management platform. At the same time, we have developed a powerful mix of integrated services that our customers asked us for to help better connect them with their customers, vendors, partners, and employees."</p>
<p><strong>Solutions Beyond Accounting</strong></p>
<p>QuickBooks offers more than 25 products and services beyond core accounting functionality. From QuickBooks Merchant Service for Web Stores to Intuit Small Business Payroll services, customers can leverage their existing QuickBooks data to manage better and market their companies. QuickBooks also offers easy solutions to process payments, such as the QuickBooks Credit Card Processing Kit and the new QuickBooks Time Tracker to easily collect and manage employee timesheets on the Web.</p>
<p>The latest addition to Intuit's comprehensive small business ecosystem is a series of popular marketing tools from Google. The new integrated online tools include Google maps, Google AdWordsT, and the QuickBooks Product Listing Service, designed to solve another critical small business concern - attracting new customers online.</p>
<p>Customers can easily find more than 400 add-on applications that solve specific needs, from sales force automation to eBay integration, through the QuickBooks Solutions Marketplace at: <a href="http://www.marketplace.intuit.com/" target="_blank">http://www.marketplace.intuit.com</a>.</p>
<p>"Small businesses are increasingly interested in moving from piecemeal solutions to more integrated approaches to company operations," said Merle Sandler, senior research analyst at IDC. "But this can be tricky because small firms also want resources supporting company growth but not being too expensive or difficult to use. With that in mind, Intuit's strategy of extending beyond basic accounting to build a valuable network of available capabilities will resonate with both small businesses and the accountants that serve them."</p>
<p><strong>Focusing on What Matters Most - Ease</strong></p>
<p>QuickBooks 2007 features numerous enhancements that simplify users' most frequent activities, helping the approximate 3.7 million small businesses using the software be more efficient:</p>
<ul>
<li>Easier Setup: To help new users set up their income and expense accounts more accurately, QuickBooks 2007 features a simplified recommended Chart of Accounts. Optional accounts to suit specific business needs can easily be added. The latest version offers users the 30 most commonly-used reports for their business type - reducing the likelihood of incorrectly categorizing expenses down the road.</li>
<li>Easier Payroll: The nearly 1 million businesses that use Intuit Small Business Payroll Services can now efficiently run payroll for all their employees at once rather than one at a time. A new dashboard displays the impact of payroll across the business, showing clearly what the company needs to pay employees and the government and what forms they need to file. And a new "review, confirm and submit" process gives users the confidence their payroll is correct and ready to go.</li>
<li>Easy Data Sharing with Accountants: It is now easier than ever for accountants to change their clients' company files. At the same time, the business owner continues to work on their day-to-day business transactions without interruption. Previously, if a company needed to send files to an accountant, the business would have to stop entering data into QuickBooks to ensure version control. While the files were with the accountant, the business could not process financial information, including invoices, bills, or payroll. With the new Dividing Date functionality, QuickBooks allows accountants to edit and review all information before a specified date while allowing the company to continue business as usual. When the accountant is done with the adjustment, the business owner can quickly review and import those changes directly into QuickBooks.</li>
<li>Easier Customization: Small businesses rely on forms to communicate with customers, suppliers, and partners. On average, a small business uses 168 forms per month, including invoices, letters, and purchase orders. With QuickBooks 2007, small businesses no longer have to print their customized document, walk to the printer and look at the hard copy to see if the form meets their needs. New for this year, QuickBooks includes an auto-preview feature that makes it easy to customize layouts with color schemes, logos, and more, while showing users their changes as they are made. The software also consolidates the most commonly-used customization options all on one screen.</li>
</ul>
<p><strong>New "Right for Me" Solutions to Solve Specific Needs</strong></p>
<p>As part of Intuit's Right for Me strategy to offer QuickBooks versions for companies of different sizes and industries with specific needs, the QuickBooks 2007 line adds new capabilities for specialized businesses and growing companies:</p>
<ul>
<li>Enhanced Features for Product-based Businesses: Inventory management is critical to the success of product-based businesses, but to keep an accurate record of total inventory, they must often convert products from one unit of measure to another. For example, a company that purchases a product by the case of a supplier may sell the same effect by the individual bottle to its customers. Available in select QuickBooks 2007 offerings, the new Unit of Measure feature removes the hassle of manual conversion and the risk of costly errors by automatically calculating the transformation from one unit to another in the appropriate forms, including invoices, purchase orders, and inventory reports.</li>
</ul>
<p>"To meet the needs of large retailers, we were spending two to three hours a day manually calculating and converting quantities. We have different shipping requirements for each retailer. Any error in shipping too many or too few of any one item results in shipping error fees" said Tom Mitchell, CFO of HBH Pet Products in Springville, Utah. "QuickBooks gives us that peace of mind to know that we have shipped out what our customers want when they want it."</p>
<p>In addition, an improved Shipping Manager enables multi-parcel high-value shipping with FedEx, and UPS handles third-party billing. It can print labels right from QuickBooks on popular thermal printers.</p>
<ul>
<li>Online Time Tracking for Professional Services Firms: Businesses can now collect and manage employee and contractor timesheets on the Web with the new QuickBooks Time Tracker service, available by subscription. Freeing managers and employees from manually entering data into QuickBooks from hand-written timesheets, Time Tracker quickly downloads data into QuickBooks saving hours of tedious work and reducing errors that can cause incorrect billing.</li>
</ul>
<p>"Time Tracker saves us so much time when entering employee timesheets," said Leticia Zaragoza of K Page Kistler, PC in Virginia Beach, Va. "Plus, I have total control when managing these entries for billing."</p>
<ul>
<li>After-the-Fact Payroll: Approximately 28 percent of the 250,000 accountants who work with QuickBooks perform after-the-fact payroll services, entering payroll data from paychecks that clients have prepared themselves. To save accountants considerable time and effort, QuickBooks Enhanced Payroll for Accountants features a new After-the-Fact Payroll spreadsheet-style data entry tool that transforms this traditionally time-intensive task into a simple process.</li>
<li>Increased List Limits for Growing Businesses: Mid-market businesses using QuickBooks Enterprise Solutions 7.0 can add a hundred thousand or more inventory items, customers, and vendors as they grow - an increase of more than 400 percent.</li>
</ul>
<p><strong>Pricing and Availability</strong></p>
<p>QuickBooks Premier - including industry-specific editions for accountants, contractors, manufacturers and wholesalers, nonprofits, professional service firms, and retailers - is priced at USD$399.95.</p>
<p>QuickBooks Pro retails for USD$199.95, and QuickBooks' entry-level product, QuickBooks: Simple Start Edition, is USD$99.95. A new three-user value pack for QuickBooks Pro is USD$ 499.95, and a five-user value pack for QuickBooks Premier is USD$1,499.95.</p>
<p>QuickBooks 2007 products are currently available direct from Intuit at: <a href="http://www.quickbooks.com/" target="_blank">http://www.quickbooks.com</a>. They will&nbsp;be available starting on October 11, 2006, at fine retailers everywhere, including Amazon.com, Best Buy, CDW, Circuit City, CompUSA, Costco.com, Fry's Electronics, Office Depot, OfficeMax, Sam's Club, and Staples.</p>
<p>For mid-market companies, QuickBooks Enterprise Solutions 7.0 starts at USD$3,000 for a five-seat license and is available for up to 20 simultaneous users. The QuickBooks Enterprise price includes a 12-month full-service plan that entitles businesses to 24/7 technical support from a dedicated support engineer, product upgrades, data recovery, reporting services, interactive training tools, and automatic renewals. QuickBooks Enterprise can be purchased directly from Intuit by calling 866-379-6635 (+1 866-379-6635).</p>
<p><strong>About Intuit Inc.</strong></p>
<p>Intuit Inc. is a leading business and financial management solution provider for small and mid-sized businesses, consumers, and accounting professionals. Its flagship products and services, including QuickBooks&reg;, Quicken&reg;, and TurboTax&reg; software, simplify small business management, payroll&nbsp;processing, personal finance, and tax preparation and filing. ProSeries&reg; and Lacerte&reg; are Intuit's leading tax preparation software suites for professional accountants.</p>
<p>Founded in 1983, Intuit had annual revenue of $2.3 billion in its fiscal year 2006. The company has nearly 7,500 employees with principal offices in 13 states across the United States and in Canada and the United Kingdom. More information can be found at: <a href="http://www.intuit.com/" target="_blank">http://www.intuit.com</a>.</p>
<p>Intuit, the Intuit logo, and QuickBooks, among others, are registered trademarks and registered service marks of Intuit Inc. in the United States and other countries.</p>
<p>&nbsp;</p>]]></content:encoded>
</item>
<item>
<title><![CDATA[[QODBC-Desktop] QuickBooks SDK 6.0 for U.S. editions of QuickBooks 2007]]></title>
<link><![CDATA[https://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2967]]></link>
<guid isPermaLink="false"><![CDATA[63f44623dd8686aba388944c8810087f]]></guid>
<pubDate><![CDATA[Thu, 02 Nov 2017 14:10:39 +0000]]></pubDate>
<dc:creator />
<description><![CDATA[ QuickBooks SDK 6.0 for U.S. editions of QuickBooks 2007
As of Date: 2006-07-13
QuickBooks SDK 6.0 Feature&nbsp;List&nbsp;&nbsp;
QuickBooks SDK 6.0, scheduled to be released in the fall of 2006, will include a number of new features requested by IDN me...]]></description>
<content:encoded><![CDATA[<h2><span style="color: #6633cc; font-family: Arial,Helvetica,sans-serif;"> QuickBooks SDK 6.0 for U.S. editions of QuickBooks 2007</span></h2>
<p><strong>As of Date: 2006-07-13</strong></p>
<p><span class="Headline_12px_bold_LGray"><strong>QuickBooks SDK 6.0 Feature&nbsp;List</strong></span>&nbsp;&nbsp;</p>
<p>QuickBooks SDK 6.0, scheduled to be released in the fall of 2006, will include a number of new features requested by IDN member developers. Of course, QBSDK 6.0 will also support all parts of our previous versions of the QuickBooks SDK, so software built using QBSDK 5.0 or earlier can be easily migrated to QBSDK 6.0.</p>
<p align="left"><strong>Integration with Additional QuickBooks Products</strong>&nbsp;</p>
<p>QuickBooks SDK 6.0 is expected to include the following new features&nbsp;for use&nbsp;with U.S. editions of QuickBooks 2007 and&nbsp;QuickBooks Enterprise Solutions 7.0:&nbsp;&nbsp;&nbsp;</p>
<p><strong>Enhanced Data Access -- Transactions</strong></p>
<ul>
<li>Support for&nbsp;<strong>BillPaymentCheckMod</strong></li>
<li>Support for <strong>CheckMod</strong></li>
<li>Support for <strong>CreditCardChargeMod</strong></li>
<li>Support for <strong>CreditCardCreditMod</strong></li>
<li>Ability to create Invoices (<strong>InvoiceAdd</strong>) from Sales Orders</li>
<li>Support for <strong>JournalEntryMod</strong></li>
<li>Support for <strong>ReceivePaymentMod</strong></li>
<li>Support for&nbsp;<strong>TimeTrackingMod</strong></li>
<li>Ability to Query, Add and Delete <strong>Vehicle Mileage transactions</strong></li>
<li>Ability to set and query the "<strong>IsToBeEmailed</strong>" <strong>field</strong> on <strong>Invoices &amp; Estimates</strong> (in Query, Add, and Mod operations)</li>
<li>Support for&nbsp;"<strong>Other</strong>," "<strong>Other1,</strong>" and "<strong>Other2</strong>" <strong>fields</strong> in all query, add &amp; mod transactions</li>
<li>Change <strong>TimeTracking to use BillableStatus enum</strong> in place of IsBilled &amp; IsBillable&nbsp;(to enable indicating that&nbsp;time added&nbsp;has already been billed)</li>
</ul>
<p><strong>Enhanced Data Access -- Lists</strong></p>
<ul>
<li>Support for <strong>AccountMod</strong></li>
<li>Ability to Query, Add, Delete, and Modify <strong>Vehicle list elements.</strong></li>
<li>Ability to query and modify the <strong>5th address line</strong> (<strong>Notes</strong>)&nbsp;</li>
<li>Support for <strong>creating special accounts</strong> (e.g., accounts payable,&nbsp; accounts receivable, CostOfGoodsSold, UndepositedFunds, etc.)&nbsp;via&nbsp;a <strong>SpecialAccountAdd</strong> request</li>
<li>Support for <strong>creating special</strong> <strong>items</strong> (FinanceCharge, ReimbursableExpenseGroup, ReimbursableExpenseSubtotal) via a <strong>SpecialItemAdd</strong> request</li>
</ul>
<p><strong>Credit Card&nbsp;Transactions&nbsp;</strong> (<a href="http://developer.intuit.com/QuickBooksSDK/Resources/?id=416" target="_blank"><span style="text-decoration: underline;">additional info available</span></a> )</p>
<ul>
<li><strong>Accept only&nbsp;"masked" credit card numbers</strong> in SalesReceiptAdd, ReceivePaymentAdd, &amp; ARRefundCreditCardAdd transactions</li>
<li>Enable identification of <strong>credit card present ("swipe") transactions</strong></li>
<li>Provide a <strong>ClientTransactionID field</strong> for future use by the QBMS reconciliation feature</li>
</ul>
<p><strong>Documentation</strong></p>
<p>The <strong>QuickBooks SDK Documentation Suite</strong> is being improved with QBSDK 6.0. In particular, we expect to include the following:</p>
<ul>
<li>A&nbsp; <strong>new Onscreen Reference (OSR)</strong> that simplifies the lookup for supported requests and fields for a specified QuickBooks edition or set of editions and also has complete documentation</li>
<li><strong>Improved QBFC documentation</strong></li>
<li>A&nbsp; <strong>QuickBooks Web Connector</strong> manual</li>
</ul>
<p>&nbsp;</p>]]></content:encoded>
</item>
<item>
<title><![CDATA[[QODBC-Desktop] QuickBooks SDK 5.0 for U.S. Editions of QuickBooks 2006]]></title>
<link><![CDATA[https://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2966]]></link>
<guid isPermaLink="false"><![CDATA[65a31da7ede4dc9b03fb5bbf8f442ce9]]></guid>
<pubDate><![CDATA[Thu, 02 Nov 2017 14:02:35 +0000]]></pubDate>
<dc:creator />
<description><![CDATA[ QuickBooks SDK 5.0 for U.S. Editions of QuickBooks 2006
As of Date: 2006-07-13
QuickBooks SDK 5.0 Feature&nbsp;List&nbsp;&nbsp;
QuickBooks SDK 5.0, available to IDN members for&nbsp;download, includes a number of new features requested by IDN member d...]]></description>
<content:encoded><![CDATA[<h2><span style="color: #6633cc; font-family: Arial,Helvetica,sans-serif;"> QuickBooks SDK 5.0 for U.S. Editions of QuickBooks 2006</span></h2>
<p><strong>As of Date: 2006-07-13</strong></p>
<p><span class="Headline_12px_bold_LGray"><strong>QuickBooks SDK 5.0 Feature&nbsp;List</strong></span>&nbsp;&nbsp;</p>
<p>QuickBooks SDK 5.0, available to IDN members for&nbsp;<a href="https://developer.intuit.com/" target="_blank">download</a>, includes a number of new features requested by IDN member developers. Of course, QBSDK 4.0 also supports all features of our previous versions of the QuickBooks SDK, so software built using QBSDK 4.0 or earlier can be easily migrated to QBSDK 5.0.</p>
<p align="left"><strong>Integration with Additional QuickBooks Products</strong></p>
<p align="left">QuickBooks SDK 5.0 can be used to develop software that integrates with any or all of&nbsp;<a href="https://developer.intuit.com/" target="_blank">a long list of QuickBooks products</a>, including the following, which is new for QBSDK 5.0:</p>
<ul>
<li><a href="http://quickbooks.intuit.com/commerce/catalog/product.jhtml?prodId=prod0000000000007994302" target="_blank"><strong>QuickBooks Simple Start Edition</strong></a>&nbsp;(2006 and later)</li>
<li><a href="http://www.quickbooks.co.uk/?page=overview" target="_blank"><strong>UK Editions of QuickBooks</strong></a>&nbsp;(QuickBooks Pro and QuickBooks Accountant, 2003 and later)</li>
<li><a href="http://developer.intuit.com/rdmgr/?ID=452" target="_blank"><strong>QuickBooks Merchant Service</strong></a><strong>&nbsp;(for credit card processing).&nbsp;</strong>QBMS can be used with QuickBooks or independently; QBMS transactions can be downloaded into QuickBooks, where they can be reconciled.</li>
</ul>
<p>QuickBooks SDK 5.0 includes the following new features (unless otherwise noted, features unique to QBSDK 5.0 can be used only with U.S. editions of QuickBooks 2006* and&nbsp;QuickBooks Enterprise Solutions 6.0*):&nbsp;&nbsp;&nbsp;</p>
<p><strong>Credit Card&nbsp;Transactions</strong>&nbsp;</p>
<ul>
<li>Support for c<strong>redit card refunds</strong> (ARRefundCreditCard Add/Query)</li>
<li>Support for <strong>credit card payment data</strong> in SalesReceiptAdd and ReceivePaymentAdd requests (using QuickBooks 2005 R5 and later)</li>
</ul>
<p><strong>Performance Improvements</strong> (<a href="https://developer.intuit.com/" target="_blank">additional info available</a>)</p>
<ul>
<li>New <strong>iterator functionality for queries</strong> that makes it easy to walk through large amounts of returned query data in &ldquo;chunk&rdquo; sizes that you specify.</li>
<li>Enable significantly improved performance when <strong>adding custom fields online items</strong> using InvoiceAddRq.</li>
<li>Improved <strong>filtering on RefNum</strong>.</li>
</ul>
<p><strong>Additional Data Access</strong></p>
<ul>
<li>Support for <strong>BuildAssembly</strong>: BuildAssemblyAdd/Mod/Query</li>
<li>Ability to <strong>modify sales receipts</strong>: SalesReceiptMod</li>
<li>Ability to <strong>specify which QuickBooks editions your application supports</strong> using a new QBAuthPreferences method (PutAuthFlags).</li>
</ul>
<p><strong>Support for Web-Based Applications</strong></p>
<ul>
<li>The <strong>QuickBooks Web Connector</strong> provides a simplified mechanism for web server-based applications to communicate with QuickBooks via the QuickBooks SDK. This mechanism can be used with <em>any</em> version of QuickBooks that supports the QBSDK. (It can also work with QuickBooks POS via the QBPOS SDK.)</li>
</ul>
<p><strong>Events and Time Modified Support for Custom Fields and Private Data Extensions</strong></p>
<ul>
<li>Events are generated for custom fields and private data extensions. Notice that&nbsp;data written to the custom field (via UI or SDK) or personal data extensions cause the Time Modified value for the parent object&nbsp;to be&nbsp;updated.&nbsp;<a href="http://idnforums.intuit.com/messageview.aspx?catid=8&amp;threadid=5040&amp;enterthread=y" target="_blank"><strong><span style="text-decoration: underline;">(for more information, click here)</span></strong></a></li>
</ul>
<p><strong>Improved Documentation</strong></p>
<ul>
<li>The <strong>QuickBooks SDK Documentation Suite</strong> has been significantly improved with QBSDK 5.0.</li>
</ul>
<p>* Notes on&nbsp;<strong>QuickBooks&nbsp;2006</strong> and <strong>QuickBooks Enterprise Solutions 6.0</strong> :</p>
<p>With the release of QuickBooks&nbsp;2006 and QuickBooks Enterprise Solutions 6.0,&nbsp;the file-based structure used for the company file in earlier versions of QuickBooks has been replaced with an industry-standard database. This is expected to enable future enhancements regarding storage, performance, and improved multi-user interactions. The QuickBooks SDK will continue to provide the only programmatic interface to QuickBooks; integrated applications written using the QuickBooks SDK will not need to change.&nbsp;</p>
<p>The QuickBooks Enterprise Solutions 6.0 product includes a QODBC Driver for QuickBooks; this will enable read-only access to the QuickBooks data using standard SQL queries, which QODBC converts to QuickBooks SDK queries.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></content:encoded>
</item>
<item>
<title><![CDATA[[QODBC-Desktop] Microsoft Windows Vista, Versions of QuickBooks Prior to 2007, and QODBC]]></title>
<link><![CDATA[https://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2965]]></link>
<guid isPermaLink="false"><![CDATA[1c303b0eed3133200cf715285011b4e4]]></guid>
<pubDate><![CDATA[Thu, 02 Nov 2017 13:50:47 +0000]]></pubDate>
<dc:creator />
<description><![CDATA[ Microsoft Windows Vista, Versions of QuickBooks Before 2007, and QODBC
As of Date: 2006-12-16
IMPORTANT NOTE: To see how to install QODBC and connect to QuickBooks for the first time using Microsoft Vista, click here: How do I install and connect QODBC...]]></description>
<content:encoded><![CDATA[<h2><span style="color: #6633cc; font-family: Arial,Helvetica,sans-serif;"> Microsoft Windows Vista, Versions of QuickBooks Before 2007, and QODBC</span></h2>
<p><strong>As of Date: 2006-12-16</strong></p>
<p><strong><span style="color: #ff0000;">IMPORTANT NOTE:</span></strong> To see how to install QODBC and connect to QuickBooks for the first time using Microsoft Vista, click here: <a href="https://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2164/" target="_blank">How do I install and connect QODBC using Microsoft Vista?</a>&nbsp;</p>
<p>With Microsoft's release of Windows Vista, we wanted to ensure that our developers are informed about Intuit's plans for versions of QuickBooks before QuickBooks 2007 on vista. First and foremost, USA versions of QuickBooks 2006 and earlier will not be supported on Windows Vista.</p>
<p>Thanks to the Windows Vista compatibility "shims" from Microsoft, these versions of QuickBooks will successfully run, and many functions will behave normally. The user will be alerted that they are running in an unsupported configuration with wording similar to the following:</p>
<p>"When running QuickBooks 2006 or earlier on Windows Vista, you will likely experience instability and unreliable behavior, even though these problems may not appear immediately."&nbsp;</p>
<p>One area we know will not work is that SDK-based applications, such as QODBC, will fail in BeginSession with an internal error due to an inability for shimmed applications to see each other or even other un-shimmed applications on vista. If you have a QODBC customer contemplating an upgrade to view, tell them&nbsp;they must update to&nbsp;v7.00.00.214 (or later)!</p>
<p>QODBC Version 7.00.00.207 contained what&nbsp;we had&nbsp;hoped the final piece would be vista compliant. The main changes were to move the ODBCINST.INI to "C:\Documents and Settings\All Users\Application Data\QODBC Driver for QuickBooks\ODBCINST.INI." All users should be able to read and write from there. All that is used for the global settings for QODBC.<br /><br />The QODBCLOG.TXT Log file has been&nbsp;moved to C:\Documents and Settings\useraname\Application Data\QODBC Driver for QuickBooks (per user).<br /><br />The new default for the optimizer file is "%UserProfile%\QODBC Driver for QuickBooks\Optimizer." New users will get that. Old users can change their path to that. With the %UserProfile% in the way, the optimizer .opt files will be saved in the user's folder (C:\Documents and Settings\useraname\Application Data\QODBC Driver for QuickBooks).<br /><br />The last changes were to disable the Test Connection and Optimizer sync buttons when EditQDSN is started in elevated mode. (The Intuit qbXML SDK cannot be called from a formal application under vista) A help link has been added to explain why.<br /><br />And lastly, a helper .exe called FQQBVSAV.EXE was added to allow a non-admin user to save settings to the System DSN after prompting for elevation.</p>
<p>Full vista compliance&nbsp;was scheduled for R4 since Intuit needed final vista bits to make the final preparations for QuickBooks '07. R5 will be slipstreamed to QuickBooks '07 users by Intuit before vista is available to the public. R5 can be found on Intuit's website under QuickBooks Product Updates at: <a href="http://www.quickbooks.com/support/index/ndxw_16_update.html" target="_blank">http://www.quickbooks.com/support/index/ndxw_16_update.html</a>.</p>
<p><strong><span style="color: #000080;">QuickBooks qbXML SDK/Windows Vista Compatibility and QODBC</span></strong></p>
<p>On the released version of Windows Vista, applications built with any version of the QuickBooks SDK (like QODBC) should work correctly with QuickBooks 2007 R5 and QuickBooks Enterprise Solutions 7.0 R5 (the latest available update releases of each), with the following caveats:</p>
<ul>
<li><strong><span style="color: #ff0000;">The Vista user account must have its User Account Control (UAC) set to On</span></strong> (as recommended by Microsoft).</li>
<li>QuickBooks and the QODBC application accessing the SDK should be run with standard user permissions (NOT elevated to run as administrator).</li>
<li>Subscribing to custom menu events (UI extension events) does not work correctly in the current release.</li>
<li>QuickBooks Web Connector 1.0 and QuickBooks Remote Data Sharing 3.0 are not supported on vista; new versions of each that work on view will be released soon.</li>
</ul>
<p>Additionally, QuickBooks Point of Sale 6.0 will work on Windows Vista. However, if you are upgrading the operating system of a computer with Point of Sale software installed, you may need to reinstall Point of Sale to ensure it will launch correctly.</p>
<p>Please note that QuickBooks 2006 and earlier, as well as QuickBooks Point of Sale 5.0 and earlier, may not work correctly on Vista and that Intuit will not support those products on view.</p>
<p>For further information about Microsoft Windows Vista, QuickBooks, and the QuickBooks SDK, see <a href="http://developeremail1.intuit.com/r/c/r?2.1.3Js.2Xz.13D0wu.C1DX1U..N.CkdK.1HIm.DfUWEac0" target="_blank">this article on the IDN website</a>.</p>
<p><strong>Because of the SDK release's limitations in QuickBooks outside the USA, QODBC cannot be used under the Microsoft Vista operating system. Note:</strong> For QuickBooks users outside of the USA, this will mean that users will not be able to run QuickBooks and QODBC on Vista until further notice. We recommend that you keep using Windows XP in the meantime and hope that Intuit will rectify this issue in 2008.</p>
<p>You can view the QuickBooks announcements made regarding vista outside the USA at:</p>
<p>Australia/New Zealand/Singapore:<br /><a href="http://www.quicken.com.au/support/vistaUpdate.aspx" target="_blank">http://www.quicken.com.au/support/vistaUpdate.aspx</a><br />&nbsp;<br />United Kingdom (UK):<br /><a href="http://www.quickbooks.co.uk/store/en/quickbooks/vista_faq.jsp?pd=vista" target="_blank">http://www.quickbooks.co.uk/store/en/quickbooks/vista_faq.jsp?pd=vista</a><br />&nbsp;<br />Canada:<br /><a href="http://support.intuit.ca/quickbooks/vista_faqs.php?pd=vista" target="_blank">http://support.intuit.ca/quickbooks/vista_faqs.php?pd=vista</a></p>
<p>&nbsp;</p>]]></content:encoded>
</item>
<item>
<title><![CDATA[[QODBC-Desktop] QuickBooks SDK 4.0 for U.S. Editions of QuickBooks 2005]]></title>
<link><![CDATA[https://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2964]]></link>
<guid isPermaLink="false"><![CDATA[60ad83801910ec976590f69f638e0d6d]]></guid>
<pubDate><![CDATA[Thu, 02 Nov 2017 13:36:28 +0000]]></pubDate>
<dc:creator />
<description><![CDATA[ QuickBooks SDK 4.0 for U.S. Editions of QuickBooks 2005
QuickBooks SDK 4.0 Feature&nbsp;List&nbsp;&nbsp;
QuickBooks SDK 4.0 includes a number of new features requested by IDN member developers. Of course, SDK 4.0 also supports all parts of our previous...]]></description>
<content:encoded><![CDATA[<h2><span style="color: #6633cc; font-family: Arial,Helvetica,sans-serif;"> QuickBooks SDK 4.0 for U.S. Editions of QuickBooks 2005</span></h2>
<p><span class="Headline_12px_bold_LGray"><strong>QuickBooks SDK 4.0 Feature&nbsp;List</strong></span>&nbsp;&nbsp;</p>
<p>QuickBooks SDK 4.0 includes a number of new features requested by IDN member developers. Of course, SDK 4.0 also supports all parts of our previous versions of the QuickBooks SDK, so software built using SDK 3.0 can be easily migrated to SDK 4.0.</p>
<p>QuickBooks SDK 4.0 can be used to develop software that integrates with&nbsp;<a href="http://developer.intuit.com/QuickBooksSDK/Briefing/?id=110" target="_blank">a long list of QuickBooks Financial Software products</a>. Features new to SDK 4.0 can be used with U.S. editions of QuickBooks 2005 and&nbsp;QuickBooks Enterprise Solutions 5.0 and/or with QuickBooks Online Edition.&nbsp;&nbsp;&nbsp;</p>
<p align="left"><strong>New Features Applicable to Multiple Types of Lists or Transactions:</strong></p>
<ul>
<li>Ability to <strong>limit response data</strong> returned from Add, Modify, and Query operations to specified field(s) or aggregates. This could eliminate time spent handling unwanted data and decrease memory requirements. (<a href="http://developer.intuit.com/developer/newsletter.asp?id=314" target="_blank">additional info available here</a>&nbsp;and&nbsp;<a href="http://developer.intuit.com/developer/newsletter.asp?id=323" target="_blank">here</a>)</li>
<li>Ability to <strong>get an approximate count of items returned</strong> in response to a query, with or without the returned objects.</li>
<li>A new <strong>generic transaction query</strong> that returns data common to all transaction types, such as TxnID, style, time created, time modified, ListID, account referenced, etc. (The SDK equivalent of QuickBooks' "Advanced Find" function.)(<a href="http://developer.intuit.com/developer/newsletter.asp?id=314" target="_blank">additional info available</a>)</li>
<li>Significant performance improvements for <strong>single RefNumber transaction queries</strong>, speeding searches for specific transactions.</li>
</ul>
<p><strong>Accounts Payable Transactions</strong> (<a href="http://developer.intuit.com/developer/newsletter.asp?id=280" target="_blank">additional info available</a>)</p>
<ul>
<li>Ability to <strong>add and modify</strong> <strong>Item Receipts</strong>.</li>
<li>Ability to <strong>create a bill or an Item Receipt from a Purchase Order</strong>.</li>
<li>Ability to <strong>link lines in new Bills or Item Receipts with lines in Purchase Orders</strong>.</li>
</ul>
<p><strong>Additional Data Integration</strong></p>
<ul>
<li>Ability to <strong>add, modify, query, and delete Price Levels</strong>, which will be used by default in sales transactions added by the SDK unless a specific rate is supplied in a line item. (<a href="http://developer.intuit.com/developer/newsletter.asp?id=301" target="_blank">additional info available</a>)</li>
<li>Ability to use a <strong>"PaidStatus" filter</strong> with the ChargeQuery request.</li>
</ul>
<p><strong>Events and User Interface Integration</strong></p>
<ul>
<li>Ability to specify that <strong>an application</strong>&nbsp;does&nbsp;<strong>not receive subscribed-to events</strong>&nbsp;generated by itself.</li>
<li>The ability for <strong>UI Extension events to contain context data</strong> from the current QuickBooks form.</li>
<li>Ability to use ListDisplayAdd/Mod requests to <strong>display Account and Item forms in QuickBooks</strong>.</li>
<li>Ability to <strong>pre-fill specific data in TxnDisplayAdd requests</strong>, enabling an application to have QuickBooks enter a particular customer, vendor, etc., when opening a new transaction form.</li>
<li>Ability to <strong>launch QuickBooks in the foreground</strong> (i.e., showing its User Interface) with a specific company file.</li>
<li><strong>Ability to filter transactions based on pay status</strong> (which enables applications to find which transactions are payable for a given customer).</li>
</ul>
<p><strong>Enhancements to the Integrated Application Approval Process</strong>&nbsp;(<a href="http://developer.intuit.com/developer/newsletter.asp?id=254" target="_blank">additional info available</a>)</p>
<ul>
<li>Allow an application to <strong>request read-only access</strong> to a QuickBooks company file and notify the<strong>&nbsp;user that the application will only have read access</strong>&nbsp;to the data.</li>
<li>Allow the user to <strong>set up unattended mode as part of the authorization dialog</strong>.</li>
<li>Allow an application to <strong>require access to personal data during the application authorization process</strong>&nbsp;to avoid user errors.</li>
</ul>
<p><strong>QuickBooks Online Edition (QBOE)</strong></p>
<ul>
<li>The ability of desktop applications to <strong>access QBOE using the same COM interface used with desktop QuickBooks reduces</strong>the effort required to port an application to QBOE. (<a href="http://developer.intuit.com/developer/newsletter.asp?id=254" target="_blank">additional info available here</a>&nbsp;and&nbsp;<a href="http://developer.intuit.com/developer/newsletter.asp?id=323" target="_blank">here</a>)</li>
<li>
<div>SDK support for <strong>discount</strong>, <strong>sales tax,</strong> and <strong>shipping</strong> information</div>
</li>
<li>
<div>
<p><strong>Entity and date filters</strong>&nbsp;for all <strong>transaction queries</strong> (i.e., InvoiceQuery)</p>
</div>
</li>
</ul>
<p>For additional details on QBSDK 4.0 (including changes between QBSDK 3.0 and 4.0), see the&nbsp;<a href="http://idnforums.intuit.com/messageview.aspx?catid=8&amp;threadid=5381&amp;enterthread=y" target="_blank">QBSDK 4.0 Release Notes</a>.</p>
<p><strong>Next:</strong>&nbsp;<a href="http://developer.intuit.com/QuickBooksSDK/Briefing/?id=223" target="_blank">Read about the features introduced with SDK version 3.0</a>.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></content:encoded>
</item>
<item>
<title><![CDATA[[QODBC-Desktop] Troubleshooting - QODBC no longer licensed for this Reckon version]]></title>
<link><![CDATA[https://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2960]]></link>
<guid isPermaLink="false"><![CDATA[d1c373ab1570cfb9a7dbb53c186b37a2]]></guid>
<pubDate><![CDATA[Fri, 27 Oct 2017 08:14:20 +0000]]></pubDate>
<dc:creator />
<description><![CDATA[Troubleshooting -&nbsp;QODBC is no longer licensed for this Reckon version
Problem Description:
We have been using QODBC without problems with our current QuickBooks version for months. Suddenly QODBC has stopped working on all our computers.I have trie...]]></description>
<content:encoded><![CDATA[<h2><span style="color: #6633cc; font-family: Arial,Helvetica,sans-serif;">Troubleshooting -&nbsp;QODBC is no longer licensed for this Reckon version</span></h2>
<h3><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Problem Description:</span></span></h3>
<p>We have been using QODBC without problems with our current QuickBooks version for months. Suddenly QODBC has stopped working on all our computers.<br /><br />I have tried a few different QODBC versions, including the latest, but none work.</p>
<p>QODBC users are faced with a QODBC message that "QODBC is no longer licensed for this&nbsp;<span class="il">Reckon</span>&nbsp;version."<br /><br />Reinstalling and/or upgrading to v322 doesn't help. Some users are still on v321, and the same message is coming up.</p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/2960/step1.png" alt="" /></p>
<p>&nbsp;</p>
<h3><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Solution:</span></span></h3>
<p>QODBC Read Only edition was free with Reckon Pro/Premier/Enterprise until Oct 26, 2017.</p>
<p>The contract for free use by Reckon Accounts users ended/terminated on the above date.</p>
<p>To continue using QODBC for Reckon Accounts, Please purchase a QODBC License.</p>
<p>You can purchase a QODBC License for&nbsp;Reckon Accounts by <a href="https://qodbc.com/aus" target="_blank">Clicking here</a>&nbsp;or Visiting&nbsp;<a href="http://qodbc.com/order.htm" target="_blank">http://qodbc.com/order.htm</a>&nbsp;and then clicking "Asia Pacific"</p>
<p>Or contact your local dealer (<strong>Australia/New Zealand/Southeast Asia</strong>). Visit <a href="http://qodbc.com/contact.htm" target="_blank">http://qodbc.com/contact.htm</a>.</p>
<p>&nbsp;</p>
<p><span style="font-family: verdana, Arial, Helvetica; font-size: small;"><strong>&nbsp;</strong></span></p>]]></content:encoded>
</item>
<item>
<title><![CDATA[[QODBC-Desktop] Troubleshooting - How do I know which version of QuickBooks my QODBC license works with?]]></title>
<link><![CDATA[https://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2805]]></link>
<guid isPermaLink="false"><![CDATA[564645fbd0332f066cbd9d083ddd077c]]></guid>
<pubDate><![CDATA[Wed, 13 Jul 2016 15:01:29 +0000]]></pubDate>
<dc:creator />
<description><![CDATA[ Troubleshooting - How do I know which version of QuickBooks my QODBC license works with? 
Problem Description:
How do I know which version of QuickBooks my QODBC license works with?&nbsp;&nbsp;
Solution:
To find out which version of QuickBooks with y...]]></description>
<content:encoded><![CDATA[<h2><span style="color: #6633cc; font-family: Arial,Helvetica,sans-serif;"> Troubleshooting - How do I know which version of QuickBooks my QODBC license works with? </span></h2>
<h3><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Problem Description:</span></span></h3>
<p><span style="font-family: Arial,Helvetica,sans-serif;">How do I know which version of QuickBooks my QODBC license works with?&nbsp;</span>&nbsp;</p>
<h3><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Solution:</span></span></h3>
<p><span style="font-family: Arial,Helvetica,sans-serif;">To find out which version of QuickBooks with your QODBC license works, please follow the below steps: <br /><br />1. Click Start &gt; All Programs &gt; QODBC Driver for use with QuickBooks<br />2. Click QODBC Setup Screen<br />3. Click the About tab<br /> <img style="display: block; margin-left: auto; margin-right: auto;" src="//support.flexquarters.com/esupport/newimages/LicenseDetails/step1.png" alt="" border="0" /><br /><br />4. In the middle of the About Tab window, you will see a hyperlink that says, "Check website for updates" just below this, you will see your Serial Number in the format X00X12345678.<br /><br /> </span></p>
<p><span style="font-family: Arial,Helvetica,sans-serif;">The first character in the Serial Number indicates the type of license you have. R indicates&nbsp;<strong>R</strong>ead Only, W indicates Read <strong>W</strong>rite, and S indicates the&nbsp;<strong>S</strong>erver edition of QODBC.</span></p>
<p><span style="font-family: Arial,Helvetica,sans-serif;">The second and third characters indicate the QuickBooks year number (e.g.,&nbsp;<strong>13</strong> is for <strong>2013</strong> and earlier, <strong>12</strong> is for <strong>2012</strong> and earlier) that your QODBC license is compatible with.</span></p>
<p><span style="font-family: Arial,Helvetica,sans-serif;">The fourth character is "U" for the USA, "O" for Australia/New Zealand/South-East Asia, and "K" for UK/Europe, Middle-East, and Africa editions of QuickBooks. Other letters are for different regions.</span></p>
<p><span style="font-family: Arial,Helvetica,sans-serif;">The remaining characters are from the rest of your serial number.</span></p>
<p><span style="font-family: Arial,Helvetica,sans-serif;">So if you have a Serial Number of W16U12345678, your QODBC license is a Read Write version compatible with QuickBooks 2016 US edition and earlier.</span></p>
<p><span style="font-family: Arial,Helvetica,sans-serif;">If you are using QODBC Read Only, which comes with QuickBooks Enterprise, you will notice <strong>Licensed To QuickBooks Enterprise User</strong> in the About Tab below the "Check website for updates."</span></p>
<h4><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Licensing FAQ:</span></span></h4>
<h5><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Question 1:</span></span></h5>
<p><span style="font-family: Arial,Helvetica,sans-serif;"> How can I know for which year and QuickBooks my QODBC license is valid? Can you install a higher QODBC version with the lower license? </span></p>
<h5><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Answer 1:</span></span></h5>
<p><span style="font-family: Arial,Helvetica,sans-serif;">QODBC license is licensed for QuickBooks Version(Year). E.g., If you have QODBC Licensed for 2015, You can use QODBC with QuickBooks 2015,2014,2013, and so on, but not with QuickBooks 2016.<br /><br />You can install QODBC v15 and v16 with no upgrade cost. Upgrade cost is only applicable when your license does not match the year.<br /><br />For Example: <br />If you have QODBC licensed for 2015 &amp; you are using QODBC v15 &amp; QuickBooks 2015, you can install QODBC v16 and use it with QuickBooks 2015.</span></p>
<h5><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Question 2:</span></span></h5>
<p><span style="font-family: Arial,Helvetica,sans-serif;"> How do I know what is my CD KEY?? </span></p>
<h5><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Answer 2:</span></span></h5>
<p><span style="font-family: Arial,Helvetica,sans-serif;">You can get your CD KEY from the purchase email from your registered email ID. If you have deleted/lost your email, please raise a support ticket with "Sales - Registration - Activation Department" <a href="http://support.flexquarters.com/esupport/index.php?/Tickets/Submit" target="_blank">Click Here to submit a support ticket.</a><br /></span></p>
<h5><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Question 3:</span></span></h5>
<p><span style="font-family: Arial,Helvetica,sans-serif;">I need to download QODBC for QuickBooks 2016 Desktop; I have changed my computer, can't find it on the site. Will the current one work?</span></p>
<h5><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Answer 3:</span></span></h5>
<p><span style="font-family: Arial,Helvetica,sans-serif;">Each new edition of QODBC also contains the last builds we did of the previous editions. So you can also use the latest QODBC Version with the previous edition of QuickBooks. Your CDKey will unlock the latest QODBC version of the version you were licensed for.</span></p>
<p>Also, Refer: <br /><br /> <a href="http://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2587" target="_blank">QODBC Licensing Information</a><br /> <a href="http://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2568" target="_blank">QODBC with QRemote Licensing Information</a><br /> <a href="http://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/1957" target="_blank">How to activate QODBC</a><br /> <a href="http://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/670" target="_blank">How to deactivate QODBC and How to transfer license to a new computer</a><br />To purchase QODBC License <a href="http://www.qodbc.com/order.htm" target="_blank">click here</a></p>
<p>&nbsp;</p>]]></content:encoded>
</item>
<item>
<title><![CDATA[[QODBC-Desktop] QODBC Evaluation Period Expired after upgrade to Intuit Enterprise.]]></title>
<link><![CDATA[https://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2515]]></link>
<guid isPermaLink="false"><![CDATA[415e1af7ea95f89f4e375162b21ae38c]]></guid>
<pubDate><![CDATA[Fri, 27 Sep 2013 08:10:22 +0000]]></pubDate>
<dc:creator />
<description><![CDATA[ QODBC Evaluation Period Expired after upgrade to Intuit Enterprise.
Problem Description:
An older trial installation of QODBC (from before QuickBooks Enterprise and long expired) was once on this computer.
How do I proceed to install the QODBC driver ...]]></description>
<content:encoded><![CDATA[<h2><span style="color: #6633cc; font-family: Arial,Helvetica,sans-serif;"> QODBC Evaluation Period Expired after upgrade to Intuit Enterprise.</span></h2>
<h3><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Problem Description:</span></span></h3>
<p>An older trial installation of QODBC (from before QuickBooks Enterprise and long expired) was once on this computer.</p>
<p>How do I proceed to install the QODBC driver included with QuickBooks Enterprise, and what (if anything) do I need to do to clean up or remove the expired trial edition?</p>
<p>When we try to connect, the QODBC driver says, "[QODBC] Evaluation license has expired" and requires an activation key in order to continue.</p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/QBEUPG/step1.png" alt="" /></p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/QBEUPG/step2.png" alt="" /></p>
<h3><span style="font-family: Arial,Helvetica,sans-serif;"><span style="color: #0066cc;">Solution:</span></span></h3>
<p>To resolve this issue, You need to download the latest QODBC version.</p>
<p>You can get QODBC's latest version by clicking "Check website for updates" from QODBC Setup Screen About &gt;&gt; tab.</p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/QBEUPG/step3.png" alt="" /></p>
<p>By clicking "Check website for updates," you will be redirected to the below page on the QODBC website. You can download QODBC latest released version by clicking on the&nbsp;<strong>Click to Run QODBC Installer version</strong> hyperlink.</p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/QBEUPG/step4.png" alt="" /></p>
<p>After installation of QODBC, you first need to uninstall the old QODBC version. You can uninstall QODBC from the following:</p>
<p>Start &gt;&gt; All Programs &gt;&gt; QODBC Driver for use with QuickBooks &gt;&gt; Uninstall QODBC</p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/QBEUPG/step5.png" alt="" /></p>
<p>Click "Yes" to proceed with the uninstallation.</p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/QBEUPG/step6.png" alt="" /></p>
<p>Click "Next" &amp; "Finish" to complete the uninstallation process.</p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/QBEUPG/step7.png" alt="" /></p>
<p align="center"><img src="//support.flexquarters.com/esupport/newimages/QBEUPG/step8.png" alt="" /></p>
<p>Now Install QODBC Latest version on your machine. Restart the machine after the new version is installed (if prompted).</p>
<p>Refer: <a href="http://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/2824/" target="_blank">QODBC Installation Steps</a></p>
<p>After installation of QODBC, You will be able to connect to QuickBooks Enterprise.</p>
<p>Keywords:&nbsp;QuickBooks enterprise upgrade,&nbsp;qodbc enterprise troubleshooting</p>
<p>&nbsp;</p>]]></content:encoded>
</item>
</channel>
</rss>