All,
Have dev , test and prod environments. By using below macro we can get the metadata objects from a specified folder.
%mdsecds(folder="/Shared data", includesubfolders=yes);
is it possible to get the metadata object lists from dev ENV by specifying test credentials in options.
ex:if I run below code which uses test metadata host names and credentials from DEV.
I know, it will give bridge protocol ERROR. is it possible actually by opening ports/config changes in meta/in compute,etc.
Off course we can run the above macro in different envs but we want to run from one environment that pulls data about all environments (dev,test and prod)
is there any way we can do.
%let metaserver = %str(testmeta.company.com);
options metaserver="&metaserver"
metaport=<port>
metauser="ID"
metapass="XXXXXXX"
metarepository="Foundation"
metaprotocol=BRIDGE;
%mdsecds(folder="/Shared data", includesubfolders=yes);