Activity #1570
closedModule #1629: Pension Module - Phase I
create new menus in fieldinterface application
100%
Description
Discuss with Swapnil (CDAC Pune)
Files
Updated by Nisha Balakrishnan over 2 years ago
- Parent task changed from #1568 to #1629
Updated by Thara S Pillai over 2 years ago
- Due date changed from 11/17/2023 to 12/11/2023
- Assignee set to Rasmiya R S
- Start date changed from 11/16/2023 to 12/11/2023
Create new menus in fointerface application
Talk with Pune team, if needed.
Updated by Thara S Pillai over 2 years ago
- File fointerface_db.png fointerface_db.png added
- Subject changed from Identify how to create new menus in member and field office application to create new menus in fieldinterface application
- Due date changed from 12/11/2023 to 01/08/2024
- Assignee changed from Rasmiya R S to Sherin Sebastian
- Create menus under fointerface application
- Connect to database as in attachment
- Add new submenus under main menus.
select * from FO_OFFICE_USERS where login_name = 'FRONT_DESKDAJKJAMMU'; --3999
select * from OFFICE where ID = 517
select * from FO_AUTH_USER_ROLE where user_id = 3999 order by ROLE_ID -- multiple roles
--Determines first level sub menus based on user roles
select * from FO_AUTH_ROLE_D where ROLE_ID in (select ROLE_ID from FO_AUTH_USER_ROLE where user_id = 3999) ORDER BY MENU_SEC_ID; --MENU_SEC_ID 243
select * from FO_AUTH_ROLE where ROLE_ID in (select ROLE_ID from FO_AUTH_USER_ROLE where user_id = 3999) order by ROLE_ID;
--list of root level menus
select * from FO_AUTH_MENU_PRI --CCPS
select * from FO_AUTH_MENU_SEC where MENU_SEC_ID IN
(select MENU_SEC_ID from FO_AUTH_ROLE_D
where ROLE_ID in (select ROLE_ID from FO_AUTH_USER_ROLE where user_id = 3999)
) ORDER BY MENU_PRIM_ID, MENU_SEC_ID
Updated by Sherin Sebastian over 2 years ago
- Status changed from In Progress to Resolved
- % Done changed from 0 to 100
Done
Updated by Nisha Balakrishnan about 2 years ago
- Status changed from Resolved to Closed