Oracle form attached to which responsibility
Oracle form navigation
oracle form responsibility query
For this we should have the form function_ id first. If you already have the form function_id, skip to step 3. Else follow steps 1 and 2.
Step 1: Find the form name
If you know some navigation of the form, open the form and go to
Help>>About Oracle applications
Scroll down to Current form section and copy the form name as shown in the screenshot below.
Step 2: Get the form function id
Use the form name from step 1 in the below query and get the appropriate function_id.
SELECT function_id,USER_FUNCTION_NAME, FUNCTION_NAME, form_name FROM fnd_form_functions_vl fff, fnd_form ff WHERE fff.form_id = ff.form_id and form_name='OEXOEORD'
Step 3: Get the responsibility and navigation
Use the function_id obtained in the step2 and run the below query. It gives all the responsibility name along with navigation as shown in screenshot.
SELECT responsibility_name, menu_structure.PATH navigation FROM ( SELECT LEVEL padding, menu_id, RTRIM (reverse (SYS_CONNECT_BY_PATH (reverse (prompt), '>')), '>') PATH, (SELECT menu_name FROM fnd_menus fm WHERE fm.menu_id = fme.menu_id) menu_name, entry_sequence, sub_menu_id, (SELECT menu_name FROM fnd_menus fm WHERE fm.menu_id = fme.sub_menu_id) submenu_name, function_id FROM fnd_menu_entries_vl fme CONNECT BY sub_menu_id = PRIOR menu_id START WITH function_id = :function_id ORDER SIBLINGS BY entry_sequence) menu_structure, fnd_responsibility_vl fr WHERE menu_structure.menu_id = fr.menu_id order by 1;Related posts:
- Register a test concurrent program from backend in Oracle EBS
- Supervisor Hierarchy and Approval Limits in Oracle EBS R12
- Query to find vacation rules in Oracle R12
- View java class source in oracle database
- Load Java source code in oracle database
- Query to find all APIs of Oracle Apps modules
- OAF customizations queries
- Oracle apps list of concurrent programs in a Request Set
- Query to get Organization Hierarchy in Oracle apps
- Oracle apps query to find incompatible programs blocking a concurrent request
- Form function attached to which responsibility and user
- Query to find the responsibility attached to user in oracle apps
- How to enable debug log in Oracle apps EBS
- How to add AME role and responsibility to user
- Oracle form attached to which responsibility
- SQL query to get MIME type for file extension
- Query to get concurrent program and executable details
- Query to get responsibility level profile option values
- Query to validate migration of XML/BI Publisher Template and Data Definition
- Query to get details of XML/BI Publisher Template and Data Definition
- Query to get Site level and Organization level Profile Option Value
- PL-SQL code to reset application user password
- PL-SQL Procedure to send email with attachment
- PL-SQL to delete Concurrent Program and Executable
- Query to get the details of the lock in the database
- PL-SQL code to delete XML/BI Publisher template and Data Definition
- Query to find Form Personalization
- Query to find profile option values
- Query to get details of concurrent program parameters
- PL-SQL Code to find Menu Hierarchy of a responsibility
- Query to find details of Flex value sets
- Query to find concurrent program Responsibility and Request Group
- Concurrent program SQL statement currently running in background
- Query to find scheduled concurrent programs
- Query to kill database session for a concurrent request
- Query to get DFF (Descriptive Flex Field) Details