how to get owner of component using scm tools
![]()
Is it possible to get a component owner using SCM command line tools?
scm list components -r https://myserver:9443/ccm -v play_stream
This only gives me the component names and baselines but not the owner name
|
Accepted answer
![]()
If you are using ver 4.0.5 and above take a look at 'scm help show attr' or 'scm help get attr' else 'scm help component propertylist' or 'scm help component propertyget'
scm show attr -C <component name.alias/uuid>
scm get attr -C <component name.alias/uuid> --ownedby
scm component propertylist <component name.alias/uuid>
scm component propertyget ownedby <component name.alias/uuid>
Karthik Krishnan selected this answer as the correct answer
|