I’ve been asked for a report on which users can create new parts.
Is this information held in a table I can run an SQL query on?
Thanks, Chris.
I’ve been asked for a report on which users can create new parts.
Is this information held in a table I can run an SQL query on?
Thanks, Chris.
Best answer by durette
SECURITY_SYS_PRIVS_TAB contains package grants.
SECURITY_SYS_TAB contains method revocations.
This will show the database grants:
SELECT identity
FROM fnd_user_role_runtime
WHERE role IN (SELECT grantee
FROM security_sys_privs_tab
WHERE table_name = 'PART_CATALOG_API'
MINUS
SELECT role
FROM security_sys_tab
WHERE package_name = 'PART_CATALOG_API'
AND method_name = 'New__');
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.