COGNOiSe.com - The IBM Cognos Community

IBM Cognos 10 Platform => Cognos 10 BI => Report Studio => Topic started by: gatorfe on 10 Aug 2012 12:24:25 PM

Title: Modified Date in Cognos Connection
Post by: gatorfe on 10 Aug 2012 12:24:25 PM
Hello,  I am trying to find out how many reports have been modified this year so looking for the Modified Date field I see in Cognos Connection.  Does anyone the where this is stored in the Audit db?  Thanks in advance for any suggestions!
Title: Re: Modified Date in Cognos Connection
Post by: ahmerzaidi on 10 Aug 2012 12:33:38 PM
This article might help.  I came across this a couple months ago and bookmarked it for when I needed it.

http://bi-framework.blogspot.com/2009/03/automated-cognos-report-documentation.html
Title: Re: Modified Date in Cognos Connection
Post by: wyconian on 12 Aug 2012 09:26:29 AM
Hi

I've just been doing something similar try something like this

SELECT T3.NAME OBJECT_TYPE,
             T1.NAME OBJ_NAME,
             T2.MODIFIED DATE_MODIFIED
FROM CMOBJNAMES T1
         JOIN CMOBJECTS T2
           ON T1.CMID = T2.CMID
         JOIN CMCLASSES T3
           ON T3.CLASSID = T2.CLASSID
WHERE T3.CLASSID = 10

This is filtered for reports, change the classid for other objects

Good Luck :-)