If your Oracle APEX Application requires different types of access - full access or readonly - for different types of users, you can specify a Read Only Condition on Page level (or Region, Item, Button, etc.). You can set an Authorization Scheme on Application level, so it'll be applied to all pages. So if you have an Authorization Scheme named 'User Can Access Page' defined by a PL/SQL function like this: return apex_authorization.user_can_access_page ( p_app_id => :APP_ID , p_page_id => :APP_PAGE_ID , p_user => :APP_USER ); then you can code all the logic in the database using the APEX Repository, your own tables or a combination to define whether a user has access to that page or not. But alas it is not possible to define something similar Application wide for a Read Only condition. You can specify an Authorization Scheme 'User has Read Only Access' using a similar signature as the one above and use that on each and e...
Comments
i didn't notice before that i'm going to clash with Patrick's session!
The good news (for me) is in that i've already seen his presentation at OOW 2008.
The bad news (for me) is in that i'm running the risk of speaking to myself!
;-)
I've also seen Partick's (and I know other attendees have seen it as well), so don't worry: you'll get your audience!
CU in Monterey!