I am getting a coldfusion error on referencing query from application variable.
Application.Shops is an application variable and is a query referenced in another file.
<cfquery name="qFilterLocations" dbtype="query">
SELECT * FROM Application.Shops
</cfquery>
However, I do get 'Error Executing Database Query. Query Of Queries runtime error.Table named Application.Shops was not found in memory. The name is misspelled or the table is not defined.
I don't understand what is wrong here.