Are we able to access the sashelp or dictionary catalogs in EG? For example:
proc sql;
create table work.temp as select
trim(libname)!!'.'!!trim(memname)!!'.'!!trim(objname)!!'.'!!objtype
as changed,
datepart(modified) as modified format=date9.,
timepart(modified) as modtime format HHMM.,
objdesc
from dictionary.catalogs /*sashelp.vcatalg*/
where libname in ('SYSTEM' 'CTS' 'PARMDL')
and memname in ('SCREENS' 'SOURCE')
and objtype ne 'MACRO'
order by 2, 3, 1;
quit;