This PROC DATASETS step reads the library LIBNAME that you specify as
a parameter when you invoke the macro. The CONTENTS statement produces an
output data set called TEMP1 in WORKLIB. This data set contains an observation
for each variable in each data set in the library LIBNAME. By default, each
observation includes the name of the data set that the variable is in as well
as other information about the variable. However, the KEEP= data set option
writes only the name of the data set to TEMP1.
proc datasets library=&libname memtype=data nodetails;
contents out=&worklib..temp1(keep=memname) data=_all_ noprint;
run;