Search Results fnd_logins
Overview
The FND_LOGINS table is a core audit and security table within the Oracle E-Business Suite (EBS) Application Object Library (FND). It serves as the central repository for tracking user sign-on sessions to the application. Its primary role is to maintain a historical and current record of who accessed the system, when the session began, and its status. This data is fundamental for security auditing, monitoring user activity, and supporting various concurrent processing and application functions that require a reference to a specific user login context. The table is owned by the APPLSYS schema and is valid across major EBS releases, including 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is designed to capture essential login session metadata. The primary key is LOGIN_ID, a unique identifier for each login session record. A critical foreign key is USER_ID, which links to the FND_USER table to identify the specific application user. Another significant column is SUBMITTED_LOGIN_ID, which creates a self-referential foreign key, potentially used to link related login sessions or track session inheritance. While the provided metadata does not list all columns, typical and important columns in FND_LOGINS include START_TIME (the session commencement timestamp), END_TIME (for terminated sessions), and STATUS (indicating whether the session is active or ended). These columns collectively provide a complete audit trail of user access.
Common Use Cases and Queries
The primary use case for FND_LOGINS is security and access reporting. System administrators frequently query this table to generate reports on user activity, identify concurrent user counts, or investigate access patterns. It is also integral to the system's internal mechanics, as evidenced by its numerous foreign key relationships with concurrent processing tables. Common analytical queries include identifying active sessions or auditing a specific user's login history.
- Finding currently active sessions:
SELECT USER_ID, START_TIME FROM APPLSYS.FND_LOGINS WHERE END_TIME IS NULL; - Auditing login history for a user:
SELECT LOGIN_ID, START_TIME, END_TIME FROM APPLSYS.FND_LOGINS WHERE USER_ID = (SELECT USER_ID FROM FND_USER WHERE USER_NAME = '&USERNAME'); - Investigating session details for a concurrent request:
SELECT fl.* FROM FND_CONCURRENT_REQUESTS fcr, FND_LOGINS fl WHERE fcr.CONC_LOGIN_ID = fl.LOGIN_ID AND fcr.REQUEST_ID = &REQUEST_ID;
Related Objects
As indicated by the extensive foreign key metadata, FND_LOGINS is a foundational table referenced by many components within EBS. Its most direct relationship is with the FND_USER table for user identification. Crucially, it is heavily referenced by the concurrent processing subsystem. The CONC_LOGIN_ID column in FND_CONCURRENT_REQUESTS ties every submitted job to a specific login session. Furthermore, numerous configuration and setup tables for concurrent processing, such as FND_CONC_PP_ACTIONS, FND_CONC_RELEASE_CLASSES, and FND_CONC_RELEASE_PERIODS, use a LAST_UPDATE_LOGIN foreign key to FND_LOGINS to audit changes. This wide network of dependencies underscores its role in maintaining audit integrity across both user interactions and background processing.
-
Table: FND_LOGINS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LOGINS, object_name:FND_LOGINS, status:VALID, product: FND - Application Object Library , description: Sign-On Audit information about who signs on to an application and when , implementation_dba_data: APPLSYS.FND_LOGINS ,
-
Table: FND_LOGINS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LOGINS, object_name:FND_LOGINS, status:VALID, product: FND - Application Object Library , description: Sign-On Audit information about who signs on to an application and when , implementation_dba_data: APPLSYS.FND_LOGINS ,
-
APPS.IEC_SCHEDULE_MGMT_UTIL_PVT dependencies on FND_LOGINS
12.1.1
-
APPS.JAI_RGM_THHOLD_PROC_PKG dependencies on FND_LOGINS
12.1.1
-
APPS.CS_WF_ACTIVITIES_PKG dependencies on FND_LOGINS
12.1.1
-
APPS.JTF_PF_SOA_MIGRATE_PKG dependencies on FND_LOGINS
12.1.1
-
APPS.CS_WF_ACTIVITIES_PKG dependencies on FND_LOGINS
12.2.2
-
APPS.CS_COST_DETAILS_PVT dependencies on FND_LOGINS
12.2.2
-
APPS.CS_CHARGE_DETAILS_PVT dependencies on FND_LOGINS
12.1.1
-
APPS.JAI_TRX_REPO_EXTRACT_PKG dependencies on FND_LOGINS
12.1.1
-
APPS.IEC_RLCTRL_UTIL_PVT dependencies on FND_LOGINS
12.1.1
-
APPS.FND_REQUEST dependencies on FND_LOGINS
12.2.2
-
APPS.FND_SIGNON dependencies on FND_LOGINS
12.2.2
-
APPS.JTF_EC_UTIL dependencies on FND_LOGINS
12.2.2
-
APPS.FND_REQUEST dependencies on FND_LOGINS
12.1.1
-
APPS.JAI_PA_COSTING_PKG dependencies on FND_LOGINS
12.1.1
-
APPS.CS_CORE_UTIL dependencies on FND_LOGINS
12.2.2
-
APPS.IGC_CC_INT_CC_REL_PUB dependencies on FND_LOGINS
12.1.1
-
APPS.JTF_EC_UTIL dependencies on FND_LOGINS
12.1.1
-
APPS.CS_SERVICEREQUEST_UTIL dependencies on FND_LOGINS
12.1.1
-
APPS.JAI_AR_TCS_REP_PKG dependencies on FND_LOGINS
12.1.1
-
APPS.HXC_SUPERVISOR_DASHBOARD dependencies on FND_LOGINS
12.2.2
-
APPS.IEC_SCHEDULE_MGMT_UTIL_PVT dependencies on FND_LOGINS
12.2.2
-
APPS.IGC_CC_INT_CC_REL_PUB dependencies on FND_LOGINS
12.2.2
-
APPS.IEC_RLCTRL_UTIL_PVT dependencies on FND_LOGINS
12.2.2
-
APPS.JAI_TRX_REPO_EXTRACT_PKG dependencies on FND_LOGINS
12.2.2
-
APPS.JAI_PA_COSTING_PKG dependencies on FND_LOGINS
12.2.2
-
APPS.CS_CORE_UTIL dependencies on FND_LOGINS
12.1.1
-
APPS.IGC_CC_OPN_UPD_GET_LNK_PUB dependencies on FND_LOGINS
12.2.2
-
APPS.JAI_AR_TCS_REP_PKG dependencies on FND_LOGINS
12.2.2
-
APPS.JTF_PF_SOA_MIGRATE_PKG dependencies on FND_LOGINS
12.2.2
-
APPS.CS_CHARGE_DETAILS_PVT dependencies on FND_LOGINS
12.2.2
-
APPS.CS_COST_DETAILS_PVT dependencies on FND_LOGINS
12.1.1
-
APPS.FND_SIGNON dependencies on FND_LOGINS
12.1.1
-
APPS.IGC_CC_OPN_UPD_GET_LNK_PUB dependencies on FND_LOGINS
12.1.1
-
APPS.HXC_RDB_PRE_RETRIEVAL dependencies on FND_LOGINS
12.2.2
-
APPS.JAI_RGM_THHOLD_PROC_PKG dependencies on FND_LOGINS
12.2.2
-
APPS.CS_SERVICEREQUEST_UTIL dependencies on FND_LOGINS
12.2.2
-
APPS.FND_REQUEST dependencies on FND_LOG
12.2.2
-
APPS.FND_REQUEST dependencies on FND_LOG
12.1.1
-
VIEW: APPLSYS.FND_LOGINS#
12.2.2
owner:APPLSYS, object_type:VIEW, object_name:FND_LOGINS#, status:VALID,
-
VIEW: APPLSYS.FND_LOGINS#
12.2.2
-
Concurrent Program: FNDSCPRG
12.1.1
execution_filename: FNDSCPRG , product: FND - Application Object Library , user_name: Purge signon audit data , description: Purges rows from FND_LOGINS, FND_LOGIN_RESPONSIBILITIES, FND_LOGIN_RESP_FORMS that were create before a given date , argument_method: Standard , enabled: Yes , execution_method: SQL*Plus ,
-
Concurrent Program: FNDSCPRG
12.2.2
execution_filename: FNDSCPRG , product: FND - Application Object Library , user_name: Purge signon audit data , description: Purges rows from FND_LOGINS, FND_LOGIN_RESPONSIBILITIES, FND_LOGIN_RESP_FORMS that were create before a given date , argument_method: Standard , enabled: Yes , execution_method: SQL*Plus ,
-
APPS.JTF_PF_SOA_MIGRATE_PKG dependencies on ICX_SESSIONS
12.2.2
-
APPS.JTF_PF_SOA_MIGRATE_PKG dependencies on ICX_SESSIONS
12.1.1
-
SYNONYM: APPS.FND_LOGINS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_LOGINS, status:VALID,
-
SYNONYM: APPS.FND_LOGINS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_LOGINS, status:VALID,
-
Table: FND_CONC_PP_TEMPLATE_MEMBERS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CONC_PP_TEMPLATE_MEMBERS, object_name:FND_CONC_PP_TEMPLATE_MEMBERS, status:VALID, product: FND - Application Object Library , description: - Retrofitted , implementation_dba_data: APPLSYS.FND_CONC_PP_TEMPLATE_MEMBERS ,
-
APPS.FND_REQUEST dependencies on FND_LOGINS_S
12.1.1