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
Am I missing something as I don't seem to be able to change the code anywhere to allow it to bring in the feed from my twitter page? All I can see the posts from the APex Group?
Thanks in advance
Mark.
You can create an additional region (named P4_TWITTER_SEARCH in the example) and reference that when you use the plug in in the field "Search for field". You can enter &P4_TWITTER_SEARCH. there - so it will search for the contents of P4_TWITTER_SEARCH - (or a fixed tekst if you like).
Thank You. I realised the search box info, just after I posted the message. I didn't want the search box to show to our users and realised that I could edit the plug-in code in the line:
apex_application_page_regions.attribute_03%type := nvl(p_region.attribute_03,'APEX Plugin');
and edit the "Apex Plugin" bit to reflect the default twitter account it uses.
Anyway, it's really good and thank you for your fast response.
Mark.