How to generate a list of all metadata objects deployed in SAS Platform?

1.5k Views Asked by At

I have a production environment server using SAS Platform. Is there a way to generate a report of a list of all metadata objects deployed in this production environment?

More accurately, is there an easy point-and-click way using one of the SAS Tools (e.g. SAS EG, SAS DI, SAS SMC)? If not I am open to the "right" way of doing it.

2

There are 2 best solutions below

0
On

you can try using the %MDSECDS macro which is shipped whit SAS/Foundation. This macro provide a lot of informations like you are looking for.

0
On

If you are looking to extract a list of all the objects that can be seen in the folder tree, this macro from the macrocore library will do it:

 %mm_tree(outds=allmyobjects)

Note - if you have multiple repositories, you will need to run this for each (and set options metarepository=YOURREPO; each time).

A macro to get the list of repos is available here.