Search Results fnd_resp
Overview
FND_RESP_SEC_UR is an APPS-owned database view in the Oracle E-Business Suite environment, classified under the FND — Application Object Library product family. Its name reflects its purpose: it unifies user, responsibility, and security group context into a single relational projection (RESP = responsibility, SEC = security group, U = user, R = responsibility). In Oracle EBS 12.1.1 and 12.2.2 the view presents a flattened, reporting-friendly image of which users hold which responsibilities, under which security group, with the effective date ranges of each assignment.
The view is commonly used in reporting, integration, and identity-management scenarios — for example, populating downstream provisioning tools, feeding user access certification reports, or extracting role assignments for audit purposes — because it joins several FND base entities that would otherwise require multi-table joins on every query.
Underlying Base Objects
The documented view metadata identifies five referenced base objects, all exposed to APPS as synonyms:
- FND_USER — the user master record, supplying user identity and user-level start/end dates.
- FND_USER_RESP_GROUPS_OLD — the historical assignment table that links users to responsibilities and security groups.
- FND_RESPONSIBILITY — the responsibility (role) definition, including application and responsibility key.
- FND_APPLICATION — the owning application of each responsibility.
- FND_SECURITY_GROUPS — the security group under which the assignment is scoped.
The view is defined as a UNION of two branches of essentially the same join, differing in how the ROLE_NAME and ROLE_ORIG_SYSTEM values are derived — one branch uses a pipe-delimited short-name format, the other uses a numeric application/responsibility concatenation. Both branches join FND_USER to FND_USER_RESP_GROUPS_OLD on USER_ID, to FND_RESPONSIBILITY on RESPONSIBILITY_ID and RESPONSIBILITY_APPLICATION_ID, to FND_APPLICATION on APPLICATION_ID, and to FND_SECURITY_GROUPS on SECURITY_GROUP_ID.
Key Columns
- USER_NAME — the FND user login name.
- USER_ORIG_SYSTEM / USER_ORIG_SYSTEM_ID — origin system of the user ('FND_USR' or 'PER') and the associated employee identifier.
- ROLE_NAME / ROLE_ORIG_SYSTEM / ROLE_ORIG_SYSTEM_ID — composite role identity, built from the responsibility and security group keys.
- START_DATE / EXPIRATION_DATE — the effective range of the user-to-responsibility assignment (mapped from UR.START_DATE and UR.END_DATE).
- USER_START_DATE / USER_END_DATE — the user record's own start and end dates; USER_END_DATE is the key column many users search for when checking whether an account has been end-dated.
- ROLE_START_DATE / ROLE_END_DATE — the responsibility definition's own start and end dates.
- SECURITY_GROUP_ID, PARTITION_ID, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — audit and scoping columns.
Common Use Cases and Queries
A frequent requirement is identifying users whose account has been end-dated while still holding active responsibilities:
SELECT user_name, role_name, user_end_date, expiration_date FROM fnd_resp_sec_ur WHERE user_end_date IS NOT NULL AND (expiration_date IS NULL OR expiration_date > SYSDATE);
Another common query returns all current responsibility assignments for a specific user:
SELECT user_name, role_name, start_date, expiration_date FROM fnd_resp_sec_ur WHERE user_name = :p_user AND (expiration_date IS NULL OR expiration_date > SYSDATE);
Because the view already resolves application, responsibility, and security group context, it is also well suited to reconciliation reports that must confirm the role landscape delivered to access-management or GRC systems.
-
View: FND_RESP_SEC_UR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_RESP_SEC_UR, object_name:FND_RESP_SEC_UR, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_RESP_SEC_UR ,
-
View: FND_RESP_SEC_UR
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_RESP_SEC_UR, object_name:FND_RESP_SEC_UR, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_RESP_SEC_UR ,
-
View: WF_FND_RESP_UR
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_FND_RESP_UR, object_name:WF_FND_RESP_UR, status:VALID, product: FND - Application Object Library , description: Bulk Sync Directory Service User Role View for Role Orig System FND_RESP , implementation_dba_data: APPS.WF_FND_RESP_UR ,
-
View: WF_FND_RESP_UR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_FND_RESP_UR, object_name:WF_FND_RESP_UR, status:VALID, product: FND - Application Object Library , description: Bulk Sync Directory Service User Role View for Role Orig System FND_RESP , implementation_dba_data: APPS.WF_FND_RESP_UR ,
-
View: WF_FND_RESP_ROLES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_FND_RESP_ROLES_VL, object_name:WF_FND_RESP_ROLES_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_FND_RESP_ROLES_VL ,
-
View: WF_FND_RESP_ROLES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_FND_RESP_ROLES_VL, object_name:WF_FND_RESP_ROLES_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_FND_RESP_ROLES_VL ,
-
View: WF_FND_RESP_ROLES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_FND_RESP_ROLES, object_name:WF_FND_RESP_ROLES, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_FND_RESP_ROLES ,
-
View: WF_FND_RESP_ROLES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_FND_RESP_ROLES, object_name:WF_FND_RESP_ROLES, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_FND_RESP_ROLES ,
-
View: FND_USER_RESP_GROUPS_DIRECT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_USER_RESP_GROUPS_DIRECT, object_name:FND_USER_RESP_GROUPS_DIRECT, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_USER_RESP_GROUPS_DIRECT ,
-
View: FND_USER_RESP_GROUPS_DIRECT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_USER_RESP_GROUPS_DIRECT, object_name:FND_USER_RESP_GROUPS_DIRECT, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_USER_RESP_GROUPS_DIRECT ,
-
View: FND_RESP_SEC_ROLES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_RESP_SEC_ROLES, object_name:FND_RESP_SEC_ROLES, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_RESP_SEC_ROLES ,
-
View: FND_RESP_SEC_ROLES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_RESP_SEC_ROLES, object_name:FND_RESP_SEC_ROLES, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_RESP_SEC_ROLES ,
-
View: FND_USER_RESP_GROUPS_ALL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_USER_RESP_GROUPS_ALL, object_name:FND_USER_RESP_GROUPS_ALL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_USER_RESP_GROUPS_ALL ,
-
View: FND_USER_RESP_GROUPS_ALL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_USER_RESP_GROUPS_ALL, object_name:FND_USER_RESP_GROUPS_ALL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_USER_RESP_GROUPS_ALL ,
-
View: FND_USER_RESP_GROUPS_INDIRECT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_USER_RESP_GROUPS_INDIRECT, object_name:FND_USER_RESP_GROUPS_INDIRECT, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_USER_RESP_GROUPS_INDIRECT ,
-
View: FND_USER_RESP_GROUPS_INDIRECT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_USER_RESP_GROUPS_INDIRECT, object_name:FND_USER_RESP_GROUPS_INDIRECT, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_USER_RESP_GROUPS_INDIRECT ,
-
View: UMX_ALL_ROLE_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.UMX_ALL_ROLE_VL, object_name:UMX_ALL_ROLE_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.UMX_ALL_ROLE_VL ,
-
View: WF_USER_ROLES_OLD
12.2.2
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
View: WF_USER_ROLES_OLD
12.1.1
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
View: UMX_CURRENT_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.UMX_CURRENT_ROLES_V, object_name:UMX_CURRENT_ROLES_V, status:VALID, product: FND - Application Object Library , description: Private view used by UMX to display roles and registration requests for a given user , implementation_dba_data: APPS.UMX_CURRENT_ROLES_V ,
-
View: UMX_CURRENT_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.UMX_CURRENT_ROLES_V, object_name:UMX_CURRENT_ROLES_V, status:VALID, product: FND - Application Object Library , description: Private view used by UMX to display roles and registration requests for a given user , implementation_dba_data: APPS.UMX_CURRENT_ROLES_V ,
-
Lookup Type: UMX_ROLE_ORIG_SYSTEM
12.1.1
product: FND - Application Object Library , meaning: UMX Role Orig System , description: UMX Role Orig System ,
-
Lookup Type: UMX_ROLE_ORIG_SYSTEM
12.2.2
product: FND - Application Object Library , meaning: UMX Role Orig System , description: UMX Role Orig System ,
-
View: WF_ROLES_OLD
12.1.1
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
View: WF_ROLES_OLD
12.2.2
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
Concurrent Program: AFFURGSR
12.1.1
execution_filename: affurgsr , product: FND - Application Object Library , user_name: affurgsr , description: Creates new Roles for the Resp/SecGrps. , argument_method: Standard , enabled: Yes , execution_method: SQL*Plus ,
-
Concurrent Program: AFFURGSR
12.2.2
execution_filename: affurgsr , product: FND - Application Object Library , user_name: affurgsr , description: Creates new Roles for the Resp/SecGrps. , argument_method: Standard , enabled: Yes , execution_method: SQL*Plus ,
-
Lookup Type: FND_WF_ORIG_SYSTEMS
12.2.2
product: FND - Application Object Library , meaning: FND WF ORIG SYSTEMS , description: Valid Workflow Origination Systems ,
-
Lookup Type: FND_WF_ORIG_SYSTEMS
12.1.1
product: FND - Application Object Library , meaning: FND WF ORIG SYSTEMS , description: Valid Workflow Origination Systems ,
-
View: FND_USER_RESP_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_USER_RESP_GROUPS, object_name:FND_USER_RESP_GROUPS, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_USER_RESP_GROUPS ,
-
View: FND_USER_RESP_GROUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_USER_RESP_GROUPS, object_name:FND_USER_RESP_GROUPS, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_USER_RESP_GROUPS ,
-
View: UMX_ROLE_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.UMX_ROLE_ASSIGNMENTS_V, object_name:UMX_ROLE_ASSIGNMENTS_V, status:VALID, product: FND - Application Object Library , description: Private view used by UMX to display roles and registration requests for a given user , implementation_dba_data: APPS.UMX_ROLE_ASSIGNMENTS_V ,
-
View: UMX_LSA_ROLE_SET_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.UMX_LSA_ROLE_SET_ROLES_V, object_name:UMX_LSA_ROLE_SET_ROLES_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.UMX_LSA_ROLE_SET_ROLES_V ,
-
View: UMX_ROLE_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.UMX_ROLE_ASSIGNMENTS_V, object_name:UMX_ROLE_ASSIGNMENTS_V, status:VALID, product: FND - Application Object Library , description: Private view used by UMX to display roles and registration requests for a given user , implementation_dba_data: APPS.UMX_ROLE_ASSIGNMENTS_V ,