CA Service Management

  • 1.  Privilege data pull out

    Posted May 02, 2019 07:54 AM

    Dear Expert,

     

    Please help me the extract the data like who is having which access (Catalog user, Request Manager, Service delivery Admin). Is this details will store in DB or we can pull out the details from somewhere. 

     

    Thanks in Advance. 



  • 2.  Re: Privilege data pull out

    Broadcom Employee
    Posted May 02, 2019 04:32 PM

    I moved this from CA Privileged Access Management to CA Service Management.



  • 3.  Re: Privilege data pull out

    Posted May 02, 2019 08:46 PM

    This SQL query will show you all the users that you have given special roles in Service Catalog:

    USE mdb
    SELECT [domain]
          ,[role_id]
          ,[user_id]
          ,[last_name]
          ,[first_name]
      FROM [dbo].[usm_contact_domain_role]
      JOIN [dbo].[ca_contact] ON [ca_contact].[userid] = [usm_contact_domain_role].[user_id]



  • 4.  Re: Privilege data pull out

    Broadcom Employee
    Posted May 06, 2019 10:05 AM

    Good Afternoon Rajshree Sureshkumar.

    In addition. other 'role' related tables in the mdb database are:
    usm_role, usm_contact_domain_role, usm_role_user and usm_account_domain.

    Kind regards, Louis.