Search Results fnd_usr
Overview
APPS.WF_FND_USR_UR is a Oracle E-Business Suite view that exposes Oracle Workflow user-role mappings derived from FND_USER, the application's central user repository. In the Oracle EBS 12.1.1 and 12.2.2 file systems, this view serves as a bridge between the FND security model and the Workflow directory services (WF_LOCAL_ROLES / WF_LOCAL_USER_ROLES) used for notification routing, role resolution, and directory synchronization. Its name reflects its purpose: it maps an FND user (WF_FND_USR) to a role identity (UR) that the Workflow engine can resolve. Because Workflow requires every notification recipient to exist as a role in its local directory, this view normalizes FND_USER records into the ORIG_SYSTEM / ORIG_SYSTEM_ID addressing scheme understood by WF_LOCAL_ROLES, allowing the notification mailer and directory service to locate the correct recipient without duplicating user maintenance.
Underlying Base Objects
The ETRM metadata documents two referenced base objects, both accessed through APPS synonyms: FND_USER and WF_LOCAL_ROLES. The view is a UNION ALL of two branches. The first branch joins FND_USER (alias USR) to WF_LOCAL_ROLES PARTITION (PER_ROLE) (alias PER) on the condition USR.EMPLOYEE_ID = PER.ORIG_SYSTEM_ID, with a date filter requiring TRUNC(SYSDATE) to fall between NVL(PER.START_DATE, TRUNC(SYSDATE)) and NVL(PER.EXPIRATION_DATE, TRUNC(SYSDATE+1)). This branch resolves FND users who are linked to an HR person record (employees) to the corresponding PER role entry. The second branch selects FND users whose EMPLOYEE_ID IS NULL — that is, externally defined or non-employee users — directly, without joining to WF_LOCAL_ROLES, and labels them with the origin system 'FND_USR'. Both branches project the same ten-column shape. The partition reference PER_ROLE indicates the query is partition-aware against WF_LOCAL_ROLES, which improves performance in environments where that table is partitioned by origin system.
Key Columns
Each branch returns a ten-column result set. The first column, USER_NAME, is the FND user login name and the first element of the ORIG_SYSTEM / ORIG_SYSTEM_ID pair. The second column is a literal origin-system label — 'PER' in the employee branch and 'FND_USR' in the non-employee branch. The third column supplies the identity value used by Workflow: PER.ORIG_SYSTEM_ID (the HR person identifier) for employees, or USR.USER_ID for non-employees. Columns four through six mirror columns one through three, providing the role-name and origin components required by WF_LOCAL_ROLES conventions. Columns seven and eight expose START_DATE and END_DATE from FND_USER, establishing the validity window of the user-role mapping. Column nine is a literal NULL, and column ten is the constant 1. The view therefore does not expose display names, email addresses, or responsibility assignments; those remain in FND_USER and related tables.
Common Use Cases and Queries
The view is primarily consumed by Workflow directory synchronization programs (such as WF Directory Services loaders) to populate WF_LOCAL_USER_ROLES and WF_USER_ROLES. It is also useful for diagnostics when notifications fail because a recipient cannot be resolved. A typical query lists resolvable user-role pairs:
- SELECT user_name, orig_system, orig_system_id FROM apps.wf_fnd_usr_ur WHERE user_name = 'SMITHJ';
- SELECT orig_system, COUNT(*) FROM apps.wf_fnd_usr_ur GROUP BY orig_system; — distinguishes employee versus non-employee users.
- SELECT u.user_name FROM apps.wf_fnd_usr_ur u WHERE u.end_date < SYSDATE; — identifies expired mappings.
Because the view already applies a SYSDATE-based validity filter in the employee branch, queries against it return only currently effective PER roles, while the FND_USR branch returns non-employees without a corresponding date restriction. Administrators should note this asymmetry when auditing notification recipients.
-
VIEW: APPS.WF_FND_USR_UR
12.2.2
-
VIEW: APPS.WF_FND_USR_UR
12.1.1
-
VIEW: APPS.FND_USR_UR
12.2.2
-
VIEW: APPS.FND_USR_UR
12.1.1
-
View: FND_USR_UR
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_USR_UR, object_name:FND_USR_UR, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_USR_UR ,
-
VIEW: APPS.WF_USER_LOV_VL
12.2.2
-
VIEW: APPS.WF_USER_LOV_VL
12.1.1
-
View: FND_USR_UR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_USR_UR, object_name:FND_USR_UR, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_USR_UR ,
-
VIEW: APPS.FND_RESP_SEC_UR
12.2.2
-
View: WF_FND_USR_UR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_FND_USR_UR, object_name:WF_FND_USR_UR, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_FND_USR_UR ,
-
View: WF_FND_USR_UR
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_FND_USR_UR, object_name:WF_FND_USR_UR, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_FND_USR_UR ,
-
VIEW: APPS.FND_RESP_SEC_UR
12.1.1
-
VIEW: APPS.WF_USERS
12.1.1
-
VIEW: APPS.WF_USERS
12.2.2
-
View: WF_USER_LOV_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_USER_LOV_VL, object_name:WF_USER_LOV_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_USER_LOV_VL ,
-
View: WF_USER_LOV_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_USER_LOV_VL, object_name:WF_USER_LOV_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_USER_LOV_VL ,
-
VIEW: APPS.WF_FND_RESP_UR
12.2.2
-
VIEW: APPS.GL_WF_ROLES_V
12.1.1
-
VIEW: APPS.GL_WF_ROLES_V
12.2.2
-
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: APPS.WF_FND_RESP_UR
12.1.1
-
APPS.WF_MAINTENANCE SQL Statements
12.1.1
-
View: GL_WF_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_WF_ROLES_V, object_name:GL_WF_ROLES_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_WF_ROLES_V ,
-
View: GL_WF_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_WF_ROLES_V, object_name:GL_WF_ROLES_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_WF_ROLES_V ,
-
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: APPS.WF_FND_USR_ROLES
12.2.2
-
VIEW: APPS.WF_FND_USR_ROLES
12.1.1
-
Lookup Type: FND_WF_ORIG_SYSTEMS
12.2.2
product: FND - Application Object Library , meaning: FND WF ORIG SYSTEMS , description: Valid Workflow Origination Systems ,
-
View: WF_USERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_USERS, object_name:WF_USERS, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_USERS ,
-
View: WF_USERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_USERS, object_name:WF_USERS, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_USERS ,
-
APPS.OKC_WF_CHK_APPROVE SQL Statements
12.2.2
-
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_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 ,
-
APPS.OKC_WF_CHK_APPROVE SQL Statements
12.1.1
-
APPS.OKS_WF_K_APPROVE SQL Statements
12.1.1
-
APPS.WF_MAINTENANCE SQL Statements
12.2.2
-
VIEW: APPS.FND_USR_ROLES
12.1.1
-
VIEW: APPS.FND_USR_ROLES
12.2.2
-
APPS.OKS_WF_K_APPROVE SQL Statements
12.2.2
-
PACKAGE BODY: APPS.WF_MAINTENANCE
12.1.1
-
APPS.OKC_WF_K_APPROVE SQL Statements
12.2.2
-
PACKAGE BODY: APPS.WF_MAINTENANCE
12.2.2
-
APPS.OKC_WF_K_APPROVE SQL Statements
12.1.1
-
APPS.AME_GPI_BUS SQL Statements
12.2.2
-
APPS.AME_GPI_BUS SQL Statements
12.1.1
-
View: WF_FND_USR_ROLES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_FND_USR_ROLES, object_name:WF_FND_USR_ROLES, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.WF_FND_USR_ROLES ,
-
APPS.WF_DIGITAL_SECURITY_PRIVATE SQL Statements
12.1.1
-
APPS.WF_DIGITAL_SECURITY_PRIVATE SQL Statements
12.2.2
-
APPS.OE_SHIPPING_WF SQL Statements
12.2.2