Search Results working_hours
Overview
APPS.ICX_PER_ORGANIZATION_UNITS_V is a reporting view in Oracle E-Business Suite that exposes organization unit definitions maintained in Oracle HRMS for use by procurement, iProcurement, and other ICX-family applications. The view is a thin projection of the underlying PER_ORGANIZATION_UNITS view and preserves the full column list without filtering or transformation, which means every column present in the base object is available to consuming reports, concurrent programs, and integrations.
The view is registered under the APPS schema and is documented as part of the ETRM reference set for both Oracle EBS 12.1.1 and 12.2.2. Its principal role is to provide a stable application-facing interface for organizational unit data — including inventory organizations, business groups, and internal units — so that downstream modules do not need to query the HRMS schema objects directly. Because it mirrors the base object, any row visible through ICX_PER_ORGANIZATION_UNITS_V is governed by the row-level security rules applied by the base object rather than by the view itself.
Underlying Base Objects
According to the documented ETRM metadata, the view is defined over the following objects:
- PER_ORGANIZATION_UNITS (VIEW) — the direct source object. All sixteen exposed columns are selected from this view with no expressions, joins, or WHERE clause applied in the defining SQL.
- HR_SECURITY (PACKAGE) — supplies the security profile logic that constrains which rows a given responsibility or user may see when querying the underlying HRMS data.
- HR_GENERAL (PACKAGE) — provides supporting HRMS utility functions used by the organization unit access path.
Because ICX_PER_ORGANIZATION_UNITS_V selects directly from PER_ORGANIZATION_UNITS, it inherits that object's structure and its dependence on the HR_SECURITY and HR_GENERAL packages. Practically, this means the view returns the same row set as the base view would for the same session and security context, and it should not be treated as an independent data source.
Key Columns
- ORGANIZATION_ID — primary identifier of the organization unit; the principal join key to HR_ALL_ORGANIZATION_UNITS and related HRMS tables.
- BUSINESS_GROUP_ID — the business group to which the unit belongs; used to scope queries to a legal employer or enterprise.
- NAME — the display name of the organization unit.
- DATE_FROM / DATE_TO — effective date range governing when the unit definition is active.
- INTERNAL_ADDRESS_LINE / LOCATION_ID — physical or internal location reference for the unit.
- DEFAULT_START_TIME / DEFAULT_END_TIME — the default working start and end times for the unit. These are the columns most commonly sought by users searching for “default_start_time,” since the same field name appears on this view and on the base PER_ORGANIZATION_UNITS view.
- WORKING_HOURS / FREQUENCY — the unit's standard working hours and recurrence frequency.
- INTERNAL_EXTERNAL_FLAG / TYPE — classification of the unit as internal or external and its type.
- COMMENTS — free-text notes attached to the unit.
- COST_ALLOCATION_KEYFLEX_ID / SOFT_CODING_KEYFLEX_ID — key flexfield identifiers used for cost allocation and soft coding defaults.
Common Use Cases and Queries
Typical uses include validating organization unit configuration during iProcurement setup, defaulting working hours for requisition and receiving processes, and extracting organization metadata into downstream warehouses or integrations.
SELECT organization_id,
business_group_id,
name,
default_start_time,
default_end_time,
working_hours,
frequency
FROM apps.icx_per_organization_units_v
WHERE business_group_id = :p_business_group_id
AND SYSDATE BETWEEN NVL(date_from, SYSDATE)
AND NVL(date_to, SYSDATE + 1);
A second common pattern retrieves the default start and end times for a single organization, for example when seeding a timekeeping or scheduling interface:
SELECT organization_id, name, default_start_time, default_end_time
FROM apps.icx_per_organization_units_v
WHERE organization_id = :p_org_id;
Because the view applies no filter of its own, results are always subject to HR_SECURITY. Queries should therefore be run under a responsibility whose security profile grants access to the intended business group, and callers should expect the row set to vary with session context.
-
VIEW: APPS.ICX_PER_ORGANIZATION_UNITS_V
12.1.1
-
VIEW: APPS.ICX_PER_ORGANIZATION_UNITS_V
12.2.2
-
View: ICX_PER_ORGANIZATION_UNITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PER_ORGANIZATION_UNITS_V, object_name:ICX_PER_ORGANIZATION_UNITS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_PER_ORGANIZATION_UNITS_V ,
-
VIEW: HR.PER_ALL_POSITIONS#
12.2.2
-
View: ICX_PER_ORGANIZATION_UNITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PER_ORGANIZATION_UNITS_V, object_name:ICX_PER_ORGANIZATION_UNITS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_PER_ORGANIZATION_UNITS_V ,
-
View: EDW_HR_PSTN_POSITION_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.EDW_HR_PSTN_POSITION_LCV, object_name:EDW_HR_PSTN_POSITION_LCV, status:VALID, product: HRI - Human Resources Intelligence , implementation_dba_data: APPS.EDW_HR_PSTN_POSITION_LCV ,
-
View: EDW_HR_PSTN_POSITION_LCV
12.2.2
product: HRI - Human Resources Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.EDW_HR_PSTN_POSITION_LCV
12.1.1
-
APPS.EDW_HR_POSITION_M_C SQL Statements
12.1.1
-
View: EDWBV_HR_PSTN_POSITION_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.EDWBV_HR_PSTN_POSITION_LCV, object_name:EDWBV_HR_PSTN_POSITION_LCV, status:VALID, product: HRI - Human Resources Intelligence , implementation_dba_data: APPS.EDWBV_HR_PSTN_POSITION_LCV ,
-
View: EDWBV_HR_PSTN_POSITION_LCV
12.2.2
product: HRI - Human Resources Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ICX_PER_ORGANIZATION_UNITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PER_ORGANIZATION_UNITS_V, object_name:ICX_PER_ORGANIZATION_UNITS_V, status:VALID,
-
VIEW: APPS.HR_POSITIONS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_POSITIONS_LOV_V, object_name:HR_POSITIONS_LOV_V, status:VALID,
-
VIEW: APPS.ICX_PER_ORGANIZATION_UNITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PER_ORGANIZATION_UNITS_V, object_name:ICX_PER_ORGANIZATION_UNITS_V, status:VALID,
-
VIEW: APPS.HR_POSITIONS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_POSITIONS_LOV_V, object_name:HR_POSITIONS_LOV_V, status:VALID,
-
APPS.PER_POS_SHD SQL Statements
12.2.2
-
VIEW: HR.HR_ALL_POSITIONS_F#
12.2.2
-
VIEW: APPS.BEN_ASSIGNMENT_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ASSIGNMENT_D, object_name:BEN_ASSIGNMENT_D, status:VALID,
-
VIEW: APPS.PER_POSITIONS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_POSITIONS_LOV_V, object_name:PER_POSITIONS_LOV_V, status:VALID,
-
VIEW: APPS.PER_POSITIONS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_POSITIONS_LOV_V, object_name:PER_POSITIONS_LOV_V, status:VALID,
-
VIEW: APPS.EDW_HR_PSTN_POSITION_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.EDW_HR_PSTN_POSITION_LCV, object_name:EDW_HR_PSTN_POSITION_LCV, status:VALID,
-
APPS.PER_POS_SHD SQL Statements
12.1.1
-
View: GHR_MT_POSITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITIONS_V, object_name:GHR_MT_POSITIONS_V, status:VALID, product: GHR - US Federal Human Resources , description: This views is used by mass transfer in and out processes for datatransfer. , implementation_dba_data: APPS.GHR_MT_POSITIONS_V ,
-
View: GHR_MT_POSITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITIONS_V, object_name:GHR_MT_POSITIONS_V, status:VALID, product: GHR - US Federal Human Resources , description: This views is used by mass transfer in and out processes for datatransfer. , implementation_dba_data: APPS.GHR_MT_POSITIONS_V ,
-
VIEW: APPS.EDWBV_HR_PSTN_POSITION_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.EDWBV_HR_PSTN_POSITION_LCV, object_name:EDWBV_HR_PSTN_POSITION_LCV, status:VALID,
-
VIEW: APPS.PER_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ORGANIZATION_UNITS, object_name:PER_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.BEN_ASSIGNMENT_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ASSIGNMENT_D, object_name:BEN_ASSIGNMENT_D, status:VALID,
-
VIEW: HR.PQH_POSITION_TRANSACTIONS#
12.2.2
-
VIEW: APPS.EDWBV_HR_PSTN_POSITION_LCV
12.1.1
-
VIEW: APPS.HR_ALL_POSITIONS_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ALL_POSITIONS_D, object_name:HR_ALL_POSITIONS_D, status:VALID,
-
VIEW: HR.PQH_PTX_SHADOW#
12.2.2
-
VIEW: APPS.PER_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ORGANIZATION_UNITS, object_name:PER_ORGANIZATION_UNITS, status:VALID,
-
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: APPS.HR_ALL_POSITIONS_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ALL_POSITIONS_D, object_name:HR_ALL_POSITIONS_D, 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,
-
View: HR_POSITIONS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_POSITIONS_LOV_V, object_name:HR_POSITIONS_LOV_V, status:VALID, product: PER - Human Resources , description: Used to get list of value on Mass Move form. , implementation_dba_data: APPS.HR_POSITIONS_LOV_V ,
-
VIEW: APPS.GHR_MT_POSITIONS_V
12.1.1
-
VIEW: APPS.GHR_MT_POSITIONS_V
12.2.2
-
View: HR_POSITIONS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_POSITIONS_LOV_V, object_name:HR_POSITIONS_LOV_V, status:VALID, product: PER - Human Resources , description: Used to get list of value on Mass Move form. , implementation_dba_data: APPS.HR_POSITIONS_LOV_V ,
-
View: HR_POSITIONS_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_POSITIONS_X, object_name:HR_POSITIONS_X, status:VALID, product: PER - Human Resources , description: Date-effective view based on secured positions view. , implementation_dba_data: APPS.HR_POSITIONS_X ,
-
VIEW: APPS.HR_POSITIONS_X
12.1.1
-
View: HR_POSITIONS_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_POSITIONS_F, object_name:HR_POSITIONS_F, status:VALID, product: PER - Human Resources , description: Secure view based on the corresponding _ALL_ table. , implementation_dba_data: APPS.HR_POSITIONS_F ,
-
View: PER_POSITIONS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_POSITIONS_LOV_V, object_name:PER_POSITIONS_LOV_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_POSITIONS_LOV_V ,
-
View: PER_POSITIONS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_POSITIONS_LOV_V, object_name:PER_POSITIONS_LOV_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_POSITIONS_LOV_V ,
-
View: HR_POSITIONS_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_POSITIONS_F, object_name:HR_POSITIONS_F, status:VALID, product: PER - Human Resources , description: Secure view based on the corresponding _ALL_ table. , implementation_dba_data: APPS.HR_POSITIONS_F ,
-
VIEW: HR.PER_ALL_POSITIONS#
12.2.2
owner:HR, object_type:VIEW, object_name:PER_ALL_POSITIONS#, status:VALID,
-
VIEW: APPS.HR_ALL_POSITIONS
12.2.2
-
View: HR_POSITIONS_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_POSITIONS_X, object_name:HR_POSITIONS_X, status:VALID, product: PER - Human Resources , description: Date-effective view based on secured positions view. , implementation_dba_data: APPS.HR_POSITIONS_X ,
-
VIEW: APPS.HR_POSITIONS_X
12.2.2
-
VIEW: APPS.HR_POSITIONS
12.2.2