<rss version="2.0" xmlns:a10="http://www.w3.org/2005/Atom"><channel><title>Inflectra Customer Forums: Simple project membership report (Thread)</title><description> Hi,  For the regulatory purposes I was asked to create a custom report for products to show membership. The report should be in a very simple format:       Name  Role      Doe, John  Developer    Smith, Susan  Tester        As no such report is available (my life would be so much easier if Product Membership page had Print button!), I had to create it with help of Claude.AI:  Standard section: Project Overview      
 
   
    
       
     
     
       
     
   
       Then in Custom section:  Query:   SELECT
    (US.LAST_NAME + '. ' + US.FIRST_NAME) AS MemberName,
    PM.PROJECT_ROLE_NAME AS AccessLevel
FROM SpiraTestEntities.R_ProjectMembership AS PM
INNER JOIN SpiraTestEntities.R_Users AS US ON US.USER_ID = PM.USER_ID
WHERE US.IS_ACTIVE = True
  AND PM.PROJECT_ID = ${ProjectId}
ORDER BY US.LAST_NAME, US.FIRST_NAME   And XSLT:       
 
   
     
       
         Member 
         Access Level 
       
       
         
             
             
         
       
     
   
       This produced the report.  Now, if only I could get rid of the report name in the output...  </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/3202.aspx</link><item><guid isPermaLink="false">threadId=3202</guid><author>Vladimir Plotkin (vladimir@inmarsys.com)</author><title>Simple project membership report</title><description> Hi,  For the regulatory purposes I was asked to create a custom report for products to show membership. The report should be in a very simple format:       Name  Role      Doe, John  Developer    Smith, Susan  Tester        As no such report is available (my life would be so much easier if Product Membership page had Print button!), I had to create it with help of Claude.AI:  Standard section: Project Overview      
 
   
    
       
     
     
       
     
   
       Then in Custom section:  Query:   SELECT
    (US.LAST_NAME + '. ' + US.FIRST_NAME) AS MemberName,
    PM.PROJECT_ROLE_NAME AS AccessLevel
FROM SpiraTestEntities.R_ProjectMembership AS PM
INNER JOIN SpiraTestEntities.R_Users AS US ON US.USER_ID = PM.USER_ID
WHERE US.IS_ACTIVE = True
  AND PM.PROJECT_ID = ${ProjectId}
ORDER BY US.LAST_NAME, US.FIRST_NAME   And XSLT:       
 
   
     
       
         Member 
         Access Level 
       
       
         
             
             
         
       
     
   
       This produced the report.  Now, if only I could get rid of the report name in the output...  </description><pubDate>Wed, 27 May 2026 14:48:47 -0400</pubDate><a10:updated>2026-05-27T14:48:47-04:00</a10:updated><link>/Support/Forum/spirateam/reports/3202.aspx</link></item></channel></rss>