Project

General

Profile

Actions

Activity #1570

closed

Module #1629: Pension Module - Phase I

create new menus in fieldinterface application

Added by Nisha Balakrishnan over 2 years ago. Updated about 2 years ago.

Status:
Closed
Priority:
Normal
Category:
-
Start date:
12/11/2023
Due date:
01/08/2024
% Done:

100%

Estimated time:
Planned Due Date:

Description

Discuss with Swapnil (CDAC Pune)


Files

fointerface_db.png (97.5 KB) fointerface_db.png DB connection for fointerface application Thara S Pillai, 01/07/2024 10:54 PM
Actions #1

Updated by Nisha Balakrishnan over 2 years ago

  • Parent task changed from #1568 to #1629
Actions #2

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.

Actions #3

Updated by Rasmiya R S over 2 years ago

  • Status changed from New to In Progress
Actions #4

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.

@Rasmiya R S , @Sreeshna T.

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

Actions #5

Updated by Sherin Sebastian over 2 years ago

  • Status changed from In Progress to Resolved
  • % Done changed from 0 to 100

Done

Actions #6

Updated by Nisha Balakrishnan about 2 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF