If you have the ability to run SQL which it sounds like you do, I use the following query based on the window display name to return all of the things that have access to that window. I pasted it below as text as I figured it might be easier to deal with than an attachment.
--The following query is used to display security roles and security tasks that are associated with a specific window --or with a specific report. You can specify the window or the report by changing the display name in the last line of --the query.
SELECT ISNULL(A.SECURITYROLEID, '') AS SECURITYROLEID , ISNULL(M.SECURITYROLENAME, '') AS SECURITYROLENAME , ISNULL(O.SECURITYTASKID, '') AS SECURITYTASKID , ISNULL(T.SECURITYTASKNAME, '') AS SECURITYTASKNAME , R.PRODNAME , R.TYPESTR , R.DSPLNAME , R.RESTECHNAME , R.DICTID , R.SECRESTYPE , R.SECURITYID FROM DYNAMICS.dbo.SY09400 R FULL JOIN DYNAMICS.dbo.SY10700 O ON R.DICTID = O.DICTID AND O.SECRESTYPE = R.SECRESTYPE AND O.SECURITYID = R.SECURITYID FULL JOIN DYNAMICS.dbo.SY09000 T ON T.SECURITYTASKID = O.SECURITYTASKID FULL JOIN DYNAMICS.dbo.SY10600 A ON A.SECURITYTASKID = T.SECURITYTASKID FULL JOIN DYNAMICS.dbo.SY09100 M ON M.SECURITYROLEID = A.SECURITYROLEID --WHERE R.DSPLNAME = 'User Setup' --WHERE R.DSPLNAME = 'Customer Maintenance Options' --WHERE R.DSPLNAME = 'FS-Meter Master' --WHERE R.DSPLNAME = 'Garnishment Maximum Setup' WHERE R.DSPLNAME = 'Purchase Order inquiry zoom' --WHERE R.DSPLNAME IN ( 'Budget Import Exception Report') --where prodname = 'Excel-Based Budgeting' --where R.RESTECHNAME = 'UM_Maintenance_Group_Schedule_lookup' --where r.TYPESTR = 'SmartList Objects' -- and r.DSPLNAME like '%purchase requisitions%' order by 1
Login
Report
There was a problem reporting this post.
Block Member?
Please confirm you want to block this member.
You will no longer be able to:
See blocked member's posts
Mention this member in posts
Invite this member to groups
Message this member
Add this member as a connection
Please note:
This action will also remove this member from your connections and send a report to the site admin.
Please allow a few minutes for this process to complete.
Report
You have already reported this .
Welcome to our new site!
Here you will find a wealth of information created for people that are on a mission to redefine business models with cloud techinologies, AI, automation, low code / no code applications, data, security & more to compete in the Acceleration Economy!