Search Results per_all_organization_units
Overview
The APPS.PER_ALL_ORGANIZATION_UNITS view is a reporting and integration construct within the Oracle E-Business Suite Human Resources (PER) module. As documented in the ETRM metadata for releases 12.1.1 and 12.2.2, it is described as the "Unsecured version of PER_ORGANIZATION_UNITS." In Oracle HRMS, the term "unsecured" indicates that the view does not apply row-level security (security profiles) filtering. Consequently, it exposes the complete set of organization unit definitions across all business groups accessible in the database, rather than restricting rows to the organizations a given responsibility or user is permitted to see. This distinguishes it from the secured PER_ORGANIZATION_UNITS view, which applies the HR security model.
The view is owned by the APPS schema and holds a VALID status. Its principal role is to support reporting, data extraction, and integrations where a globally consistent list of internal HR organizations is required without responsibility-level filtering. Because it resolves organizational attributes across the base organization, translation, and information tables, it serves as a convenient denormalized source for downstream queries and interfaces.
Underlying Base Objects
The view is defined over three referenced base objects, each exposed through a synonym in the APPS schema:
- HR_ALL_ORGANIZATION_UNITS (SYNONYM) — the primary organization definition table, aliased as
O. It supplies core attributes such asORGANIZATION_ID,BUSINESS_GROUP_ID, date ranges, address line, comments, type, location, and key flexfield references. - HR_ALL_ORGANIZATION_UNITS_TL (SYNONYM) — the translation table, aliased as
OTL, which supplies the language-dependentNAME. The join restricts rows to the session language viaOTL.LANGUAGE = USERENV('LANG'). - HR_ORGANIZATION_INFORMATION (SYNONYM) — the descriptive flexfield / information table, joined twice. Alias
O2retrieves the WORK DAY INFORMATION context columns (ORG_INFORMATION1–ORG_INFORMATION4), while aliasO3enforces the CLASS context filter requiringORG_INFORMATION1 = 'HR_ORG'andORG_INFORMATION2 = 'Y', ensuring only organizations classified as internal HR organizations are returned.
The view text joins O.ORGANIZATION_ID to the information and translation tables, with the WORK DAY INFORMATION join expressed as an outer join.
Key Columns
- ORGANIZATION_ID — Primary key identifying the organization unit.
- BUSINESS_GROUP_ID — The business group to which the organization belongs.
- NAME — Language-specific organization name from the translation table.
- DATE_FROM / DATE_TO — Effective date range of the organization definition.
- INTERNAL_ADDRESS_LINE and COMMENTS — Descriptive text attributes.
- ORG_INFORMATION1–4 — Work day information flexfield values.
- INTERNAL_EXTERNAL_FLAG — Indicates whether the organization is internal or external.
- TYPE — Organization classification value.
- LOCATION_ID, COST_ALLOCATION_KEYFLEX_ID, SOFT_CODING_KEYFLEX_ID — Foreign keys to location and key flexfield structures.
Caveat: the documented column list also includes DEFAULT_START_TIME, DEFAULT_END_TIME, WORKING_HOURS, and FREQUENCY. In the available view text these are sourced from the WORK DAY INFORMATION flexfield context; practitioners should verify their presence against the specific patch level in use.
Common Use Cases and Queries
The view is commonly used when an unfiltered inventory of HR organizations is needed, for example in data migration, interface validation, or cross-business-group reporting.
- Listing active internal HR organizations by business group.
- Joining to assignments, positions, or payroll to resolve organizational context.
- Extracting organization details for integration into external systems.
Sample query:
SELECT organization_id,
business_group_id,
name,
date_from,
date_to,
internal_external_flag
FROM apps.per_all_organization_units
WHERE TRUNC(SYSDATE) BETWEEN date_from AND NVL(date_to, TRUNC(SYSDATE))
ORDER BY business_group_id, name;
Because the view is unsecured, developers requiring responsibility-based filtering should use the secured PER_ORGANIZATION_UNITS view instead.
-
View: PER_ALL_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ORGANIZATION_UNITS, object_name:PER_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Unsecured version of PER_ORGANIZATION_UNITS. , implementation_dba_data: APPS.PER_ALL_ORGANIZATION_UNITS ,
-
View: PER_ALL_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ORGANIZATION_UNITS, object_name:PER_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Unsecured version of PER_ORGANIZATION_UNITS. , implementation_dba_data: APPS.PER_ALL_ORGANIZATION_UNITS ,
-
SYNONYM: PUBLIC.PER_ALL_ORGANIZATION_UNITS
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PER_ALL_ORGANIZATION_UNITS, status:VALID,
-
PACKAGE: APPS.PQH_LENGTH_OF_SERVICE_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PQH_LENGTH_OF_SERVICE_PKG, status:VALID,
-
VIEW: APPS.PER_ALL_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ORGANIZATION_UNITS, object_name:PER_ALL_ORGANIZATION_UNITS, status:VALID,
-
PACKAGE BODY: APPS.PER_BUDGET_ELEMENTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_BUDGET_ELEMENTS_PKG, status:VALID,
-
PACKAGE: APPS.PQH_LENGTH_OF_SERVICE_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PQH_LENGTH_OF_SERVICE_PKG, status:VALID,
-
PACKAGE BODY: APPS.PQH_LENGTH_OF_SERVICE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_LENGTH_OF_SERVICE_PKG, status:VALID,
-
VIEW: APPS.PAFV_EXPENDITURE_ITEMS
12.2.2
-
VIEW: APPS.PAFV_EXPENDITURE_ITEMS
12.1.1
-
PACKAGE: APPS.HXT_INTERFACE_UTILITIES
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HXT_INTERFACE_UTILITIES, status:VALID,
-
PACKAGE: APPS.HXT_INTERFACE_UTILITIES
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HXT_INTERFACE_UTILITIES, status:VALID,
-
PACKAGE BODY: APPS.PER_BUDGET_ELEMENTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_BUDGET_ELEMENTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.PQH_LENGTH_OF_SERVICE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_LENGTH_OF_SERVICE_PKG, status:VALID,
-
PACKAGE BODY: APPS.HXT_INTERFACE_UTILITIES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HXT_INTERFACE_UTILITIES, status:VALID,
-
PACKAGE BODY: APPS.HXT_INTERFACE_UTILITIES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HXT_INTERFACE_UTILITIES, status:VALID,
-
PACKAGE BODY: APPS.PER_APPLICANT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_APPLICANT_PKG, status:VALID,
-
View: PAFV_EVENTS_OBSOLETE
12.1.1
product: PA - Projects , description: Business view to show information about the events used to generate revenue and invoice for the projects. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.PER_APPLICANT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_APPLICANT_PKG, status:VALID,
-
View: PAFV_EVENTS_OBSOLETE
12.2.2
product: PA - Projects , description: Business view to show information about the events used to generate revenue and invoice for the projects. , implementation_dba_data: Not implemented in this database ,
-
View: PAFV_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_EVENTS, object_name:PAFV_EVENTS, status:VALID, product: PA - Projects , description: Business view to show information about the events used to generate revenue and invoice for the projects. Business view to show information about the events used to generate revenue and invoice for the projects. , implementation_dba_data: APPS.PAFV_EVENTS ,
-
VIEW: APPS.PER_ALL_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ORGANIZATION_UNITS, object_name:PER_ALL_ORGANIZATION_UNITS, status:VALID,
-
View: PAFV_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_EVENTS, object_name:PAFV_EVENTS, status:VALID, product: PA - Projects , description: Business view to show information about the events used to generate revenue and invoice for the projects. Business view to show information about the events used to generate revenue and invoice for the projects. , implementation_dba_data: APPS.PAFV_EVENTS ,
-
View: PAFV_EXPENDITURE_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_EXPENDITURE_ITEMS, object_name:PAFV_EXPENDITURE_ITEMS, status:VALID, product: PA - Projects , description: Business view to show information about the expenditure items entered. , implementation_dba_data: APPS.PAFV_EXPENDITURE_ITEMS ,
-
View: PAFV_EXPENDITURE_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_EXPENDITURE_ITEMS, object_name:PAFV_EXPENDITURE_ITEMS, status:VALID, product: PA - Projects , description: Business view to show information about the expenditure items entered. , implementation_dba_data: APPS.PAFV_EXPENDITURE_ITEMS ,
-
PACKAGE: APPS.BEN_EXT_PERSON
12.1.1
owner:APPS, object_type:PACKAGE, object_name:BEN_EXT_PERSON, status:VALID,
-
VIEW: APPS.PAFV_EXPENDITURE_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_EXPENDITURE_ITEMS, object_name:PAFV_EXPENDITURE_ITEMS, status:VALID,
-
PACKAGE: APPS.BEN_EXT_PERSON
12.2.2
owner:APPS, object_type:PACKAGE, object_name:BEN_EXT_PERSON, status:VALID,
-
VIEW: APPS.PAFV_EXPENDITURE_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_EXPENDITURE_ITEMS, object_name:PAFV_EXPENDITURE_ITEMS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.PER_BUDGET_ELEMENTS_PKG SQL Statements
12.1.1
-
APPS.PER_BUDGET_ELEMENTS_PKG SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
APPS.PER_BUDGET_ELEMENTS_PKG dependencies on PER_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.HXT_INTERFACE_UTILITIES dependencies on PER_ALL_ORGANIZATION_UNITS
12.2.2
-
APPS.BEN_EXT_PERSON dependencies on PER_ALL_ORGANIZATION_UNITS
12.2.2
-
APPS.PER_APPLICANT_PKG dependencies on PER_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.PQH_LENGTH_OF_SERVICE_PKG dependencies on PER_ALL_ORGANIZATION_UNITS
12.2.2
-
APPS.PQH_LENGTH_OF_SERVICE_PKG dependencies on PER_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.PQH_LENGTH_OF_SERVICE_PKG dependencies on PER_ALL_ORGANIZATION_UNITS
12.2.2
-
APPS.PER_BUDGET_ELEMENTS_PKG dependencies on PER_ALL_ORGANIZATION_UNITS
12.2.2
-
APPS.PQH_LENGTH_OF_SERVICE_PKG dependencies on PER_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.PER_APPLICANT_PKG dependencies on PER_ALL_ORGANIZATION_UNITS
12.2.2
-
APPS.HXT_INTERFACE_UTILITIES dependencies on PER_ALL_ORGANIZATION_UNITS
12.2.2
-
APPS.BEN_EXT_PERSON dependencies on PER_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.HXT_INTERFACE_UTILITIES dependencies on PER_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.HXT_INTERFACE_UTILITIES dependencies on PER_ALL_ORGANIZATION_UNITS
12.1.1