Hello,
I'm currently doing some investigations into the config of our environment and just wondering does anybody know from where SoftwareComponent?@ClassIdentifier is sourced in a SAS configuration? Is this on the metadata server?
I'm running:
data _null_;
length uri $256;
nobj=0;
n=1;
i=1;
/* Determine how many machine objects are in this repository. */
nobj=metadata_getnobj("omsobj:SoftwareComponent?@ClassIdentifier contains 'levdirroot'",i,uri);
put nobj=; /* Number of machine objects found. */
put uri=; /* URI of the first machine object. */
run;
Thanks,
Tom