All queries should be updated to remove @tracker.name
from SELECT as the information is already visible in @pretty_title
.
Queries in "SAFe Agile Release Train" should be updated to include @project.name
:
SELECT @pretty_title, @project.name, @status, @last_update_date, @submitted_by
FROM @project IN ('self', 'aggregated')
WHERE @status = OPEN()
ORDER BY @last_update_date DESC
And
SELECT @pretty_title, @project.name, @status, @last_update_date, @submitted_by
FROM @project IN ('self', 'aggregated')
WHERE @status = OPEN() AND @assigned_to = MYSELF()
ORDER BY @last_update_date DESC