- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
All,
MDSECGO macro will return all metadata content to a SAS dataset ,can we extract , who created that object too.
%mdsecgo(folder="/",
includesubfolders=YES,
memberfilter="",
objdata=my_objects);
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I do not think so, unless you make your own version of it, the source for this macro is available.
But there is another tool sas-list-objects that will extract the createdBy and modifiedBy information if available (for -format csv or xml). Not all objects have this information. Having both data you can join the two and get what you want.
The information for the createdBy and modifiedBy is stored using an association ResponsibleParties, see below for an example.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I do not think so, unless you make your own version of it, the source for this macro is available.
But there is another tool sas-list-objects that will extract the createdBy and modifiedBy information if available (for -format csv or xml). Not all objects have this information. Having both data you can join the two and get what you want.
The information for the createdBy and modifiedBy is stored using an association ResponsibleParties, see below for an example.