I'm trying to add a dynamic parameter to an entity in a report model data source view, for example the entity is built on the following
select docid, facilityid
from userfacjoin
where docid = @docid
The query will run when creating but when you try and save it says that the @docid variable has to be declared. Tried to declare the variable but it says the Declare construct is not recognized.
How to you set a dynamic variable in a report model data source view
select docid, facilityid
from userfacjoin
where docid = @docid
The query will run when creating but when you try and save it says that the @docid variable has to be declared. Tried to declare the variable but it says the Declare construct is not recognized.
How to you set a dynamic variable in a report model data source view