<rss version="2.0" xmlns:a10="http://www.w3.org/2005/Atom"><channel><title>Inflectra Customer Forums: Report on requirements changed from date (Thread)</title><description> Hi,  I would like to create a report that generates a list of requirements that have their name or Description modified since a certain date.  How can I proceed? </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/spiraplan/issues-questions/2867.aspx</link><item><guid isPermaLink="false">threadId=2867</guid><author>Carlo Tuzi (carlo.tuzi@leicabiosystems.com)</author><category domain="http://www.inflectra.com/kronodesk/thread/tag">report</category><category domain="http://www.inflectra.com/kronodesk/thread/tag"> requirements. change</category><title>Report on requirements changed from date</title><description> Hi,  I would like to create a report that generates a list of requirements that have their name or Description modified since a certain date.  How can I proceed? </description><pubDate>Fri, 10 Nov 2023 15:23:22 -0500</pubDate><a10:updated>2023-11-13T12:02:43-05:00</a10:updated><link>/Support/Forum/spiraplan/issues-questions/2867.aspx</link></item><item><guid isPermaLink="false">messageId=6225</guid><author>David J (adam.sandman+support@inflectra.com)</author><title> Hi  The simplest way to get the list of requirements that have any field changed is to run the stan</title><description> Hi  The simplest way to get the list of requirements that have any field changed is to run the standard requirements report and filter by Last Update Date.  If you want to only get the ones that have a change to the Name or Description field, youd need to  run a custom report  using this ESQL:   select
  HC.ARTIFACT_ID as REQUIREMENT_ID,
  HC.ARTIFACT_DESC as REQUIREMENT_NAME,
  MAX(HC.CHANGE_DATE) as CHANGE_DATE,
  RQ.REQUIREMENT_TYPE_NAME,
  RQ.REQUIREMENT_STATUS_NAME,
  RQ.IMPORTANCE_NAME
from SpiraTestEntities.R_HistoryChangeSets as HC
inner join SpiraTestEntities.R_HistoryDetails as HD on HC.CHANGESET_ID = HD.CHANGESET_ID
inner join SpiraTestEntities.R_Requirements as RQ on HC.ARTIFACT_ID = RQ.REQUIREMENT_ID
where
  (HD.FIELD_NAME = 'Name' or HD.FIELD_NAME = 'Description') and
  HC.ARTIFACT_TYPE_ID = 1 and
  HC.PROJECT_ID = ${ProjectId} and
  RQ.IS_DELETED = False
group by
  HC.ARTIFACT_ID,
  HC.ARTIFACT_DESC,
  RQ.REQUIREMENT_TYPE_NAME,
  RQ.REQUIREMENT_STATUS_NAME,
  RQ.IMPORTANCE_NAME
order by
  CHANGE_DATE DESC,
  HC.ARTIFACT_ID
   Regards  David </description><pubDate>Mon, 13 Nov 2023 12:02:43 -0500</pubDate><a10:updated>2023-11-13T12:02:43-05:00</a10:updated><link>/Support/Forum/spiraplan/issues-questions/2867.aspx#reply6225</link></item></channel></rss>