SELECT name, create_date, modify_dateFROM sys.objectsWHERE type = 'FN' -- lists out all the FUNCTIONs in current database AND DATEDIFF(D,modify_date, GETDATE()) < 7 -- this condition filters result set of last 7 days modified objects(Functions)
Login to post response