Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Different levels of authorizations

user7367989Dec 14 2016 — edited Dec 20 2016

I want to create a 4 different levels of authorizations for users:

L1: Full access to edit entries and passwords

L2: Only read access to entries and passwords

L3: Read access to entries and no read access to passwords

L4: Edit entries and read to passwords

The following is what I have done:

    - created database roles which give the specfic privileges

    - created users and assigned the appropriate role

    - On APEX, created the same users via Manage Users and Groups

    - On APEX, created 4 different authorization schemes associated with each database role. For example:

        Scheme Type: Exists SQL Query

        SQL Query: select 1

               from sys.dba_role_privs

                 where grantee = :app_user

                           and granted_role = 'RR_ROLE'

    - On APEX, assigned each user with the appropriate authorization scheme in the access control list

The application authorization is not working based on role privileges...am I missing a step???

This post has been answered by user7367989 on Dec 20 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 17 2017
Added on Dec 14 2016
5 comments
794 views