Search Results per_org_manager_v
View: PER_ORG_MANAGER_V in Oracle EBS 12.1.1 / 12.2.2
Overview
PER_ORG_MANAGER_V is a seeded Oracle E-Business Suite database view owned by the APPS schema within the PER — Human Resources product family. It presents organization-level manager assignments, resolving each organization to the person currently associated with it through the "Organization Name Alias" information type, while simultaneously exposing the identifier of the underlying HR_ORGANIZATION_INFORMATION row. The view is defined as a join across organization definition tables, organization information (descriptive flexfield) tables, and the person table, filtered by a class-based existence check and constrained by Oracle HRMS row-level security.
The view is principally used in HRMS reporting, extensions, and integration interfaces where a flattened list of organizations, their managers, and the effective dating of that manager relationship is required. Because it encapsulates HR security logic and session-based effective dating, it is generally preferable to querying the base tables directly.
Underlying Base Objects
The documented base objects referenced by PER_ORG_MANAGER_V are:
HR_ALL_ORGANIZATION_UNITS(SYNONYM) — the primary organization definition table, supplyingORGANIZATION_IDandBUSINESS_GROUP_ID.HR_ALL_ORGANIZATION_UNITS_TL(SYNONYM) — the translated organization names, joined onLANGUAGE = USERENV('LANG').HR_ORGANIZATION_INFORMATION(SYNONYM) — the descriptive flexfield "extra information" table holding the "ORGANIZATION NAME ALIAS" context rows from which manager details are derived.PER_ALL_PEOPLE_F(SYNONYM) — the person table, joined by matching the alias value inORG_INFORMATION2toTO_CHAR(PPF.PERSON_ID)as an outer join.HR_ORG_INFO_TYPES_BY_CLASS(SYNONYM) — used in the existence check to confirm the organization classification permits the "ORGANIZATION NAME ALIAS" information type.FND_SESSIONS(SYNONYM) — joined onSESSION_ID = USERENV('SESSIONID')to supply the effective date driving person-level date filtering.FND_DATE(PACKAGE) — used viaCANONICAL_TO_DATEto convert stored canonical date strings inORG_INFORMATION3andORG_INFORMATION4into standard dates.HR_GENERAL(PACKAGE) — suppliesGET_BUSINESS_GROUP_IDandGET_XBG_PROFILEfor the business group security predicate.HR_SECURITY(PACKAGE) — suppliesVIEW_ALLandSHOW_RECORDfor row-level security enforcement.
Key Columns
- PERSON_ID — the person identifier of the manager associated with the organization alias.
- FULL_NAME — the formatted full name of that person.
- ORGANIZATION_ID — the organization to which the manager record belongs.
- BUSINESS_GROUP_ID — the business group that owns the organization, relevant for multi-business-group (XBG) environments.
- COST_CENTER — derived from
FND_DATE.CANONICAL_TO_DATE(ORG_INFO2.ORG_INFORMATION3), representing the start date of the manager assignment. - START_DATE — derived from
FND_DATE.CANONICAL_TO_DATE(ORG_INFO2.ORG_INFORMATION4), representing the end date. - END_DATE — the organization name from
ORG_TL.NAME. - ORG_INFO — exposed as
ORG_INFO2.ORG_INFORMATION_ID, the primary identifier of the underlying organization information row. This is the column most frequently searched as org_information_id, since it links the view back to the specific descriptive flexfield record. - OBJECT_VERSION_NUMBER — carried from
ORG_INFO2from the source query, supporting concurrency control.
Common Use Cases and Queries
Typical applications include manager listings per organization, HRMS extracts, and reconciliation of organization alias setup. A straightforward query retrieving managers for a given organization:
SELECT organization_id, business_group_id, person_id, full_name, org_info FROM apps.per_org_manager_v WHERE organization_id = :p_org_id;
To locate the descriptive flexfield row behind a specific alias, filtering on the exposed identifier:
SELECT organization_id, person_id, full_name FROM apps.per_org_manager_v WHERE org_info = :p_org_information_id;
For integration extracts spanning business groups, filtering by business_group_id is standard. Because the view embeds HR_SECURITY and FND_SESSIONS, results are automatically restricted to the querying session's effective date and security profile, making it safe for use in concurrent programs and self-service pages without additional security predicates. Note that the date-derived columns (COST_CENTER, START_DATE, END_DATE) reflect the underlying flexfield segment storage rather than true column semantics, and should be interpreted against the descriptive flexfield definition for the "ORGANIZATION NAME ALIAS" context.
-
View: PER_ORG_MANAGER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ORG_MANAGER_V, object_name:PER_ORG_MANAGER_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.PER_ORG_MANAGER_V ,
-
View: PER_ORG_MANAGER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ORG_MANAGER_V, object_name:PER_ORG_MANAGER_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.PER_ORG_MANAGER_V ,
-
SYNONYM: PUBLIC.PER_ORG_MANAGER_V
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PER_ORG_MANAGER_V, status:VALID,
-
VIEW: APPS.PER_ORG_MANAGER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ORG_MANAGER_V, object_name:PER_ORG_MANAGER_V, status:VALID,
-
PACKAGE BODY: APPS.HR_FULL_SYNC_MESSAGES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_FULL_SYNC_MESSAGES, status:VALID,
-
PACKAGE BODY: APPS.HR_HRHD_INITIAL_LOAD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_HRHD_INITIAL_LOAD, status:VALID,
-
PACKAGE BODY: APPS.HR_DELTA_SYNC_MESSAGES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DELTA_SYNC_MESSAGES, status:VALID,
-
PACKAGE BODY: APPS.HR_FULL_SYNC_MESSAGES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_FULL_SYNC_MESSAGES, status:VALID,
-
PACKAGE BODY: APPS.HR_HRHD_INITIAL_LOAD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_HRHD_INITIAL_LOAD, status:VALID,
-
SYNONYM: APPS.HR_ORG_INFO_TYPES_BY_CLASS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ORG_INFO_TYPES_BY_CLASS, status:VALID,
-
PACKAGE BODY: APPS.HR_DELTA_SYNC_MESSAGES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DELTA_SYNC_MESSAGES, status:VALID,
-
SYNONYM: APPS.HR_ORG_INFO_TYPES_BY_CLASS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ORG_INFO_TYPES_BY_CLASS, status:VALID,
-
VIEW: APPS.PER_ORG_MANAGER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ORG_MANAGER_V, object_name:PER_ORG_MANAGER_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
APPS.HR_DELTA_SYNC_MESSAGES dependencies on PER_ORG_MANAGER_V
12.2.2
-
APPS.HR_FULL_SYNC_MESSAGES SQL Statements
12.1.1
-
APPS.HR_FULL_SYNC_MESSAGES SQL Statements
12.2.2
-
APPS.HR_FULL_SYNC_MESSAGES dependencies on PER_ORG_MANAGER_V
12.2.2
-
APPS.HR_DELTA_SYNC_MESSAGES dependencies on PER_ORG_MANAGER_V
12.1.1
-
APPS.HR_HRHD_INITIAL_LOAD dependencies on PER_ORG_MANAGER_V
12.2.2
-
APPS.HR_HRHD_INITIAL_LOAD dependencies on PER_ORG_MANAGER_V
12.1.1
-
APPS.HR_FULL_SYNC_MESSAGES dependencies on PER_ORG_MANAGER_V
12.1.1
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.FND_SESSIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_SESSIONS, status:VALID,
-
APPS.HR_DELTA_SYNC_MESSAGES SQL Statements
12.2.2
-
APPS.HR_DELTA_SYNC_MESSAGES SQL Statements
12.1.1
-
SYNONYM: APPS.FND_SESSIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_SESSIONS, status:VALID,
-
APPS.HR_DELTA_SYNC_MESSAGES dependencies on HR_ORGANIZATION_INFORMATION
12.1.1
-
APPS.HR_DELTA_SYNC_MESSAGES dependencies on HR_ORGANIZATION_INFORMATION
12.2.2
-
APPS.HR_FULL_SYNC_MESSAGES dependencies on HR_ORGANIZATION_INFORMATION
12.1.1
-
APPS.HR_FULL_SYNC_MESSAGES dependencies on HR_ORGANIZATION_INFORMATION
12.2.2
-
APPS.HR_DELTA_SYNC_MESSAGES dependencies on HR_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.HR_DELTA_SYNC_MESSAGES dependencies on HR_ALL_ORGANIZATION_UNITS
12.2.2
-
APPS.HR_FULL_SYNC_MESSAGES dependencies on HR_ALL_ORGANIZATION_UNITS
12.1.1
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
APPS.HR_FULL_SYNC_MESSAGES dependencies on HR_ALL_ORGANIZATION_UNITS
12.2.2
-
SYNONYM: APPS.HR_ORGANIZATION_INFORMATION
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ORGANIZATION_INFORMATION, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.HR_ORGANIZATION_INFORMATION
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ORGANIZATION_INFORMATION, status:VALID,
-
PACKAGE BODY: APPS.HR_FULL_SYNC_MESSAGES
12.2.2
-
PACKAGE BODY: APPS.HR_FULL_SYNC_MESSAGES
12.1.1
-
SYNONYM: APPS.PER_ALL_PEOPLE_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_ALL_PEOPLE_F, status:VALID,
-
PACKAGE BODY: APPS.HR_DELTA_SYNC_MESSAGES
12.1.1