SYMPTOM
When reports using attributes created from Logical Views are executed, they do not return any data, whereas, the SQL generated returns data directly in Microsoft Access. Certain reports return the ODBC error, 'Too few parameters. Expected 1.'
STEPS TO REPRODUCE


SELECT * FROM LOGICAL_VIEW_TEST WHERE GEO like 'R*'


QueryEngine encountered error: Execute Query failed: Odbc error. Odbc operation attempted: SQLExecDirect. Too few parameters. Expected 1.
select a11. AS GEO from (SELECT * FROM LOGICAL_VIEW_TEST WHERE GEO like 'R*' ) a11

CAUSE
Microsoft Access uses the '%' (percentage) sign as the wildcard character for pattern matching and not the '*' (asterisk).
ACTION
Redefine the Logical View using the following SQL, replacing the asterisk with the percent sign, as shown below:

SELECT * FROM LOGICAL_VIEW_TEST WHERE GEO like 'R%'
