Here are some report definitions that can be used in QC11 Analysis to create excel reports of what changed Today, This Week, and Yesterday. It will query the project db and create a pivot table of the revisions. This is compatible with Office 2010 and QC 11, i haven't tested it anywhere else. However, there are some features used that are not compatible with anything less that Microsoft Office Excel 2010.
You can import these definitions into your project and try them out in the Dashboard Analysis Module of QC 11.
The heart of the report is this query:
SELECT ('Bug: ' + CONVERT(varchar(5),td.BUG.BG_BUG_ID) + ' - ' + CONVERT(varchar(256),td.BUG.BG_SUMMARY,101)) As calcBUGNAME ,
td.AUDIT_LOG.AU_ACTION_ID,
td.AUDIT_LOG.AU_USER,
td.AUDIT_LOG.AU_SESSION_ID,
td.AUDIT_LOG.AU_TIME,
td.AUDIT_LOG.AU_ACTION,
td.AUDIT_LOG.AU_ENTITY_TYPE,
td.AUDIT_LOG.AU_ENTITY_ID,
td.AUDIT_PROPERTIES.AP_PROPERTY_ID,
td.AUDIT_PROPERTIES.AP_ACTION_ID,
td.AUDIT_PROPERTIES.AP_TABLE_NAME,
td.AUDIT_PROPERTIES.AP_FIELD_NAME,
td.AUDIT_PROPERTIES.AP_PROPERTY_NAME,
td.AUDIT_PROPERTIES.AP_OLD_VALUE,
td.AUDIT_PROPERTIES.AP_NEW_VALUE,
td.BUG.BG_BUG_ID,
td.BUG.BG_STATUS,
td.BUG.BG_RESPONSIBLE,
td.BUG.BG_PROJECT,
td.BUG.BG_SUBJECT,
td.BUG.BG_SUMMARY,
td.BUG.BG_REPRODUCIBLE,
td.BUG.BG_SEVERITY,
td.BUG.BG_PRIORITY,
td.BUG.BG_DETECTED_BY,
td.BUG.BG_DETECTION_DATE,
td.BUG.BG_USER_01,
td.BUG.BG_USER_02,
td.BUG.BG_USER_03,
td.BUG.BG_USER_04,
td.BUG.BG_USER_05
FROM td.AUDIT_LOG
INNER JOIN
td.AUDIT_PROPERTIES ON td.AUDIT_LOG.AU_ACTION_ID = td.AUDIT_PROPERTIES.AP_ACTION_ID
INNER JOIN
td.BUG ON td.AUDIT_LOG.AU_ENTITY_ID = td.BUG.BG_BUG_ID
WHERE (td.AUDIT_LOG.AU_ENTITY_TYPE = 'BUG')
The report definitions can be found here as well as a short video with audio that demonstrates importing them into Quality Center 11 and generating the report:
[XML Report Definitions (CLICK HERE TO DOWNLOAD)][1]
[1]: http://ftporasi.com/EyeOnTesting/QC/Excel%20Reports/BugHistoryReport/BugsChangedReportDefinitions.zip