Hi @Jlochoa
For any SAS Client connecting to SAS Metadata Server, the following code sholuld allow you to access what needed
/* Assign Metadata Server Options */
OPTIONS METASERVER=<metaDataServerHost>
METAPORT=<metaDataServerPort>
METAUSER="<metaUserId>"
METAPASS="<metaUserPw>"
METAPROTOCOL=bridge;
PS. Replace the values inside the <> with your site settings
You'll be connected to the metadata server, and running the %mdxxxx macros will extract the data correctly.
Hope this helps,
Ahmed