Total users having access to specific report or form

Hello All,

I have a requirement to know how many users or user groups are using a report/form in AX 2009 and which access they have like view, edit and delete. I search in administration module but did not found any report like this. Please can somebody guide me how achieve this through axapta or its database.

Thanks.

Have you looked at this report, Reports>Security> Objects permission.

I saw the report but ssrs is not used. Any other way to find out

1st collect the list of user group with Users,
2nd Go to User group > Permission > select the required domains > Print.

This will show u list of objects with Permission details

I was able to solve by using AccessRightsList Table with following query

SELECT NETWORKALIAS,NAME FROM USERINFO WHERE ID IN (

SELECT USERID FROM USERGROUPLIST WHERE GROUPID IN (

SELECT GROUPID FROM AccessRightsList where ELEMENTNAME like ‘PurchFormLetter_PackingSlip’ and DOMAINID = ‘###’))

Thanks Kranthi and Saadullah for your support