Hi ,
Thanks for reaching out to Microsoft Q&A.
First things there is no documented bug in ADF QuickBooks connector v2.0 around tables containing underscores in their names. Microsoft's connector documentation lists supported features but doesn’t reference any naming/parsing rules that block underscores.
Unlike v1.0 (which implicitly accepted resource names), version 2.0 forces you to define the tableName
exactly in the dataset or use the query
property in source. If your dataset tableName
includes underscores, that matches the object, but if the connector now sanitizes table identifiers or misformats them, it can trigger internal errors even though docs don’t spell that out explicitly. I belive the v2.0 source supports only QuickBooks native query (no SQL‑92). While underscores in table names should be fine, quoting and escaping must exactly match the QuickBooks API object naming. A mismatch could cause invocation exceptions.
Did you try Instead of dataset tableName
, switch to source query
?
Please 'Upvote'(Thumbs-up) and 'Accept' as answer if the reply was helpful. This will be benefitting other community members who face the same issue.