<rss version="2.0" xmlns:a10="http://www.w3.org/2005/Atom"><channel><title>Inflectra Customer Forums: Custom Report: How to tell if a Test Case has actually changed? (Thread)</title><description> Im trying to tell if there is a way in a custom report to determine if a Test Case has been changed since a particular point in time.   The Last Modified field doesnt help  me as that seems to update anytime someone as much as drops the case into a test set, Im more interested in changes to the description or test steps.  The idea is to tell if R&amp;D ran Test A on Date1, but the case was subsequently updated on Date2, has R&amp;D run the updated case?  We are using SpiraTeam (6.15.0.0) with a stupid amount of data because of historical import reasons.   </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/issues-questions/2583.aspx</link><item><guid isPermaLink="false">threadId=2583</guid><author>Brad Straka (bstraka@stayinfront.com)</author><title>Custom Report: How to tell if a Test Case has actually changed?</title><description> Im trying to tell if there is a way in a custom report to determine if a Test Case has been changed since a particular point in time.   The Last Modified field doesnt help  me as that seems to update anytime someone as much as drops the case into a test set, Im more interested in changes to the description or test steps.  The idea is to tell if R&amp;D ran Test A on Date1, but the case was subsequently updated on Date2, has R&amp;D run the updated case?  We are using SpiraTeam (6.15.0.0) with a stupid amount of data because of historical import reasons.   </description><pubDate>Wed, 02 Mar 2022 00:54:08 -0500</pubDate><a10:updated>2022-10-03T17:40:07-04:00</a10:updated><link>/Support/Forum/spirateam/issues-questions/2583.aspx</link></item><item><guid isPermaLink="false">messageId=4281</guid><author>Ilia Poliakov (ilya.polyakov@edetek.com)</author><title> Have o look at this table, it might help you:  Available Database Tables - SpiraDocs (inflectra.com</title><description> Have o look at this table, it might help you:  Available Database Tables - SpiraDocs (inflectra.com)  </description><pubDate>Wed, 02 Mar 2022 15:07:56 -0500</pubDate><a10:updated>2022-03-02T15:07:56-05:00</a10:updated><link>/Support/Forum/spirateam/issues-questions/2583.aspx#reply4281</link></item><item><guid isPermaLink="false">messageId=4282</guid><author>David J (adam.sandman+support@inflectra.com)</author><title> Thanks Ilya,  The following query will pull the list of test case change entries in date descending</title><description> Thanks Ilya,  The following query will pull the list of test case change entries in date descending:   select value R from SpiraTestEntities.R_HistoryChangeSets as R
where R.PROJECT_ID = ${ProjectId} and R.ARTIFACT_TYPE_ID = 2
order by R.CHANGE_DATE desc    Regards  David </description><pubDate>Wed, 02 Mar 2022 15:39:27 -0500</pubDate><a10:updated>2022-03-02T15:39:27-05:00</a10:updated><link>/Support/Forum/spirateam/issues-questions/2583.aspx#reply4282</link></item><item><guid isPermaLink="false">messageId=5634</guid><author>Brad Straka (bstraka@stayinfront.com)</author><title> Thanks both of you - that helped me focus my tinkering in the right area.  I settled on this to ext</title><description> Thanks both of you - that helped me focus my tinkering in the right area.  I settled on this to extract a value i could include in my trace report.  ANYELEMENT(Select value Max(R.Change_Date) from SpiraTestEntities.R_HistoryDetails as R                                      where R.Artifact_ID=TSTC.Test_Case_ID and R.New_Value=Approved) as Last_Approval  It seems to get me what Im looking for in a timely fashion - now off to figure out how to do date comparisons in XSL 1.0...    </description><pubDate>Thu, 07 Apr 2022 02:29:30 -0400</pubDate><a10:updated>2022-04-07T02:29:30-04:00</a10:updated><link>/Support/Forum/spirateam/issues-questions/2583.aspx#reply5634</link></item><item><guid isPermaLink="false">messageId=5635</guid><author>Ilia Poliakov (ilya.polyakov@edetek.com)</author><title> My advice: try to use JavaScript inside XSLT, it helps my reports a lot. As for me, XSLT is very di</title><description> My advice: try to use JavaScript inside XSLT, it helps my reports a lot. As for me, XSLT is very difficult to find developers and to debug. </description><pubDate>Fri, 08 Apr 2022 06:35:39 -0400</pubDate><a10:updated>2022-04-08T06:35:39-04:00</a10:updated><link>/Support/Forum/spirateam/issues-questions/2583.aspx#reply5635</link></item><item><guid isPermaLink="false">messageId=5636</guid><author>Ilia Poliakov (ilya.polyakov@edetek.com)</author><title> Example how to use JS inside XSLT    
 
     
         
            releases=[];
             
    </title><description> Example how to use JS inside XSLT    
 
     
         
            releases=[];
             
                releases.push({
                id:xsltToNumber(' '),
                is_summary:xsltToBoolean(' '),
                name:xsltToString(' '),
                resource_count:xsltToNumber(' '),
                uihd:xsltToNumber(' '),
                apihd:xsltToNumber(' '),
                });
             
             
             
             
         
     
      </description><pubDate>Fri, 08 Apr 2022 09:03:34 -0400</pubDate><a10:updated>2022-04-08T09:03:34-04:00</a10:updated><link>/Support/Forum/spirateam/issues-questions/2583.aspx#reply5636</link></item></channel></rss>