<rss version="2.0" xmlns:a10="http://www.w3.org/2005/Atom"><channel><title>Inflectra Customer Forums: Creating a custom report for Incident detection (Thread)</title><description> Hi can anyone help in creating a custom report to show which release an incident was detected. I am trying to show the spread pattern to see when we are identifying incidents to see if our new quality measures are improving earlier detection times  I saw a custom report that show an incident count by project, but i do not have the expertise to add releases to the list indented underneath and show a count by detected release  Count of Incidents By Project  The following Entity SQL command can be used in the Spira custom report (custom section) or Spira custom graph administration section to generate a graph of incidents by project:  select INC.PROJECT_NAME, count(INC.INCIDENT_ID) as INCIDENT_COUNT from SpiraTestEntities.R_Incidents as INC where INC.IS_DELETED = False group by INC.PROJECT_NAME order by INC.PROJECT_NAME  That gives the following data grid:  PROJECT_NAMEINCIDENT_COUNT  Library Information System63  Sample Application One1  Can anyone help? </description><language>en-US</language><copyright>(C) Copyright 2006-2026 Inflectra Corporation.</copyright><managingEditor>support@inflectra.com</managingEditor><category domain="http://www.dmoz.org">/Computers/Software/Project_Management/</category><category domain="http://www.dmoz.org">/Computers/Software/Quality_Assurance/</category><generator>KronoDesk</generator><a10:contributor><a10:email>support@inflectra.com</a10:email></a10:contributor><a10:id>http://www.inflectra.com/kronodesk/forums/threads</a10:id><ttl>120</ttl><link>/Support/Forum/spirateam/reports/2599.aspx</link><item><guid isPermaLink="false">threadId=2599</guid><author>admin computacenter (spiratest.request@computacenter.com)</author><category domain="http://www.inflectra.com/kronodesk/thread/tag">custom report incident count by release</category><title>Creating a custom report for Incident detection</title><description> Hi can anyone help in creating a custom report to show which release an incident was detected. I am trying to show the spread pattern to see when we are identifying incidents to see if our new quality measures are improving earlier detection times  I saw a custom report that show an incident count by project, but i do not have the expertise to add releases to the list indented underneath and show a count by detected release  Count of Incidents By Project  The following Entity SQL command can be used in the Spira custom report (custom section) or Spira custom graph administration section to generate a graph of incidents by project:  select INC.PROJECT_NAME, count(INC.INCIDENT_ID) as INCIDENT_COUNT from SpiraTestEntities.R_Incidents as INC where INC.IS_DELETED = False group by INC.PROJECT_NAME order by INC.PROJECT_NAME  That gives the following data grid:  PROJECT_NAMEINCIDENT_COUNT  Library Information System63  Sample Application One1  Can anyone help? </description><pubDate>Tue, 12 Apr 2022 08:57:20 -0400</pubDate><a10:updated>2022-04-13T04:31:57-04:00</a10:updated><link>/Support/Forum/spirateam/reports/2599.aspx</link></item><item><guid isPermaLink="false">messageId=5645</guid><author>David J (adam.sandman+support@inflectra.com)</author><title> Please try this:   select INC.PROJECT_NAME, INC.DETECTED_RELEASE_VERSION_NUMBER, count(INC.INCIDENT</title><description> Please try this:   select INC.PROJECT_NAME, INC.DETECTED_RELEASE_VERSION_NUMBER, count(INC.INCIDENT_ID) as INCIDENT_COUNT
from SpiraTestEntities.R_Incidents as INC
where INC.IS_DELETED = False
group by INC.PROJECT_NAME, INC.DETECTED_RELEASE_VERSION_NUMBER
order by INC.PROJECT_NAME     </description><pubDate>Wed, 13 Apr 2022 04:31:57 -0400</pubDate><a10:updated>2022-04-13T04:31:57-04:00</a10:updated><link>/Support/Forum/spirateam/reports/2599.aspx#reply5645</link></item></channel></rss>