I want to hide Maintain pages from and set regulations on "end user" I'm creating application in oracle apex. For now I have 2 users accounts: One is administrator named A, the one is end user named B. Administrator can edit, insert and delete data but end user can not do that. The thing end user can do is just to see the data.
For now both can see all pages and end user can do everything. How can archive it? I found the information about Authentication scheme, which may be related to my question. But I do not know how to write it. Please suggest solutions.
A simple option is to create a function which says whether certain user is end user. For example:
Testing:
Create the same function for Admin users.
Now, go to Shared components, Authorization schemes, and create a new scheme:
return f_is_end_user(:APP_USER);
Do the same for "admin" users.
Back to your application. Navigate to page and set its Authorization Scheme.
{Not end_user}
Quite easy, isn't it?