<rss version="2.0" xmlns:a10="http://www.w3.org/2005/Atom"><channel><title>Inflectra Customer Forums: Writing a Report to Show the Electronic Signatures in SpiraTeam (Thread)</title><description> In SpiraTeam v5.0 we added native support for  electronic / digital signatures . This was to allow our customers in regulated industries such as healthcare and finance be able to ensure that workflow changes were only performed by the appropriate personnel and that there was a signed audit trail of the change.  A customer asked us how to write a custom report to display the electronic signatures in a project. </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/1786.aspx</link><item><guid isPermaLink="false">threadId=1786</guid><author>David J (adam.sandman+support@inflectra.com)</author><category domain="http://www.inflectra.com/kronodesk/thread/tag">custom report</category><category domain="http://www.inflectra.com/kronodesk/thread/tag"> electronic signatures</category><category domain="http://www.inflectra.com/kronodesk/thread/tag"> digital signatures</category><title>Writing a Report to Show the Electronic Signatures in SpiraTeam</title><description> In SpiraTeam v5.0 we added native support for  electronic / digital signatures . This was to allow our customers in regulated industries such as healthcare and finance be able to ensure that workflow changes were only performed by the appropriate personnel and that there was a signed audit trail of the change.  A customer asked us how to write a custom report to display the electronic signatures in a project. </description><pubDate>Fri, 15 Dec 2017 21:40:02 -0500</pubDate><a10:updated>2024-09-10T13:05:22-04:00</a10:updated><link>/Support/Forum/spirateam/reports/1786.aspx</link></item><item><guid isPermaLink="false">messageId=3193</guid><author>David J (adam.sandman+support@inflectra.com)</author><title> The following Entity SQL (ESQL) query can be used to display such reports:    select  H.CHANGESET_I</title><description> The following Entity SQL (ESQL) query can be used to display such reports:    select  H.CHANGESET_ID, H.ARTIFACT_TYPE_NAME, H.ARTIFACT_ID, H.ARTIFACT_DESC, H.CHANGETYPE_NAME, H.USER_NAME, H.SIGNATURE_HASH, C.COMMENT_TEXT  as  MEANING
 from  SpiraTestEntities.R_HistoryChangeSets  as  H
 join  SpiraTestEntities.R_Comments  as  C  on  C.CREATION_DATE = H.CHANGE_DATE
 and  H.ARTIFACT_ID = C.ARTIFACT_ID
 and  H.ARTIFACT_TYPE_ID = C.ARTIFACT_TYPE_ID
 and  H.SIGNATURE_HASH  is   not   null    You enter that in the Query section, then click the Create Default Template and click Save. </description><pubDate>Fri, 15 Dec 2017 21:41:02 -0500</pubDate><a10:updated>2017-12-15T21:41:02-05:00</a10:updated><link>/Support/Forum/spirateam/reports/1786.aspx#reply3193</link></item><item><guid isPermaLink="false">messageId=3194</guid><author>David J (adam.sandman+support@inflectra.com)</author><title> If you want to also include the date on the report, please use this modified version:   select H.CH</title><description> If you want to also include the date on the report, please use this modified version:   select H.CHANGESET_ID, H.ARTIFACT_TYPE_NAME, H.ARTIFACT_ID, H.ARTIFACT_DESC, H.CHANGETYPE_NAME, H.USER_NAME, H.SIGNATURE_HASH, C.COMMENT_TEXT as MEANING, H.CHANGE_DATE
from SpiraTestEntities.R_HistoryChangeSets as H
join SpiraTestEntities.R_Comments as C on C.CREATION_DATE = H.CHANGE_DATE
and H.ARTIFACT_ID = C.ARTIFACT_ID
and H.ARTIFACT_TYPE_ID = C.ARTIFACT_TYPE_ID
and H.SIGNATURE_HASH is not null   To format the XML date as something more readable, you could use the following XSLT template:    
 
   
       CHANGESET_ID  ARTIFACT_TYPE_NAME  ARTIFACT_ID  ARTIFACT_DESC  CHANGETYPE_NAME  USER_NAME  SIGNATURE_HASH  MEANING  CHANGE_DATE  
       
                                 
 
   
     
   
 
         
       
         
     
   
     
     
     
     
     
     
     
       
         
           
         
         
           
         
         
           
         
         
           
         
         
           
         
         
           
         
         
           
         
         
           
         
         
           
         
         
           
         
         
           
         
         
           
         
         
           
         
       
     
     
   
      </description><pubDate>Fri, 15 Dec 2017 21:50:50 -0500</pubDate><a10:updated>2017-12-15T21:50:50-05:00</a10:updated><link>/Support/Forum/spirateam/reports/1786.aspx#reply3194</link></item></channel></rss>