Sunday, June 14, 2020

Dynamic Side Navigation Menu in Oracle Apex




Dynamic List Query :
select level ,menu_name label,'f?p=&APP_ID.:'||page_no||':'||:APP_SESSION||':::::' target,'NO' is_current, null image
from menu_info
where menu_no in( (select MENU_NO from MENUPREVS_DETAIL where role_no =(SELECT USER_LEVEL FROM USER_INFORMATION WHERE LOGIN_NAME=:APP_USER)) )
AND NVL(PAGE_ALIAS,1)='1'
start with parent_menu_no is null
connect by prior menu_no=parent_menu_no

4 comments:

  1. Brother Table er Code gulo dele valo hoto....

    ReplyDelete
    Replies
    1. https://www.foxinfotech.in/2019/07/oracle-apex-tree-example.html
      https://www.foxinfotech.in/2019/07/oracle-apex-dynamic-popup-navigation-menu-example.html
      https://www.foxinfotech.in/2019/07/oracle-apex-creating-custom-user-access-control.html

      Delete
  2. no table structure, no sample data... one can refer to this link
    first: https://www.foxinfotech.in/2019/07/oracle-apex-tree-example.html
    second: https://www.foxinfotech.in/2019/07/oracle-apex-dynamic-popup-navigation-menu-example.html
    third: https://www.foxinfotech.in/2019/07/oracle-apex-creating-custom-user-access-control.html

    ReplyDelete

Image File store outside of Oracle Database and show image into Apex Application

Directory Create : grant execute on utl_file to HRMS; CREATE OR REPLACE DIRECTORY STOCK_DIRECTORY AS 'C:\Program Files (x86)\Apache Sof...