Which Users have access to a Page
Find out which users (and from what permission lists) have access to a particular page:
xxxxxxxxxx
1
select distinct OPRID, OPRCLASS
2
from PSOPRCLS
3
where OPRCLASS in (
4
select distinct CLASSID
5
from sysadm.PSAUTHITEM
6
where PNLITEMNAME = '{PAGENAME}'
7
);
No Comments