Is there a way to print report, either in GP or Advanced secuirty, for how many users have access to purchase orders or is there any table which I can refer to pull the access of user to purchase orders
The Advanced Security reports are User/Company or class based and will show all resources for that entity. They will not show all users for one resource which is what you want.
Suggestions:
1) In Advanced Security if you select the Purchase Order Entry window in the tree (left hand side), then look at the status shown next to each user (right hand side) to see whether the user has access.
2) In Advanced Security, export any user to XML, then open the xml file and search for "Purchase Order Entry", this will get you the form ID (829). Then you can query the SY_Security_Normal_MSTR (SY02000) table.
The following query will show users who have access denied
SELECT * FROM SY02000
WHERE ((RESTYPE = 2) AND (DICTID = 0) AND (RESID = 829))
AND ((ALTDICID = 0) AND (ALIAS = ''))
AltDictID same as DictID and Alias empty means access denied.
David Musgrave [MSFT]
Original Developer of Advanced Security
Senior Development Consultant
Escalation Engineer - Great Plains
Microsoft Dynamics Support - Asia Pacific
Micorosoft Dynamics (formerly Microsoft Business Solutions)
Any views contained within are my personal views and
not necessarily Microsoft Business Solutions policy.
This posting is provided "AS IS" with no warranties,
and confers no rights.
Thanks for your reply. we have 125 users at diffrent locations. If I need to review secuirty of sensitive items on daily or regular basis then it would consume lot of time which company is not willing to do.
Any views contained within are my personal views and
not necessarily Microsoft Business Solutions policy.
This posting is provided "AS IS" with no warranties,
and confers no rights.
The ResType used by Advanced Security is a sequential number and relates directly to the image resource used on the treeview on the Advanced Security window.
There is a layer of abstraction between Advanced Security and how it works and the physical data in the table. This allowed Advanced Security to work with many tables and resources and treat them all the same way.
David Musgrave [MSFT]
Senior Development Consultant
Escalation Engineer - Great Plains
Microsoft Dynamics Support - Asia Pacific
Microsoft Dynamics (formerly Microsoft Business Solutions)
Any views contained within are my personal views and
not necessarily Microsoft Business Solutions policy.
This posting is provided "AS IS" with no warranties,
and confers no rights.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.