Kamis, 19 November 2015

How to Utilize APEX Navigation List Into an Object Security

Long time ago before APEX 5 release, i am prefer using tree as main navigation. Now APEX 5 offer us more awesome style using list as main navigation.
Ok let me show you to adopt this APEX view as authorization scheme to view/access menu base on role granted by main navigation menu which is APEX_APPLICATION_LIST_ENTRIES

  1. Display APEX_APPLICATION_LIST_ENTRIES as tree
    • The Query
    •  select case when connect_by_isleaf = 1 then 0
                  when level = 1             then 1
                  else                           -1
              end as status
            , level
            , entry_text as title
            , entry_image as icon
            , list_entry_id as value
            , null as tooltip
            , null as link
         from APEX_APPLICATION_LIST_ENTRIES
        where application_name = 'APPS_NAME'
          and list_name = 'List name'
        start with list_entry_parent_id is null   
      connect by 
        prior list_entry_id = list_entry_parent_id
        order siblings by display_sequence
      
    • Use same icon as List
    • change this : Region Attributes >> Settings >> Icon Type : fa
    • Display List as Tree
  2. Use on role entry
  3. Create Authorization scheme base on role
  4. Use Authorization on pages, list

Sabtu, 07 November 2015

Can you show us the prototype as soon as possible?

Usually after business process requirement, immediately user ask me such a question "Can you show us the prototype as soon as possible? ".

With power of Oracle APEX 5 using universal theme. You can provide quickly "Yes i will deliver presentation and prototype tomorow :D

Yes we can, with Universal Theme (Vista) responsive design and style from sample database application now you can create prototyype easily.




This is why Oracle APEX claiming as RAD methodology :D