Below query gives you the list of stored procedures which has been CREATED in last
7 days....
SELECT name, create_date
FROM sys.objects
WHERE type = 'P'
AND DATEDIFF(D,create_date, GETDATE()) < 7
Note : You can change the
7 number in the WHERE condition with
N -- here N represents the number of days