eql report in/for SSRS

Dear Team,

I need help in compiling an eql report in SSRS where I want to reuse the sub report in other main report

The challenge is – I want to use a variable as @objects and used to callup the objects

Question – what can I do to get it to work

START WITH @objects

SELECT

   Projects.Project.Code,

   Projects.Project.Name,

   DISPLAY_NAME( Projects.Project.Status ),

     CASE Projects.RelationshipType.RightName

   WHEN 'Shared Project' THEN 'No'

   WHEN 'Owner Project' THEN 'Yes'

   ELSE ''

   END Owner

WHERE

   Id LIKE @coid

Parents Reply Children
No Data