Search Results default_start_time
Overview
ICX_PER_ORGANIZATION_UNITS_V is a view owned by the APPS schema within Oracle E-Business Suite, catalogued under the ICX (Oracle iProcurement) product family. The ETRM documentation classifies this object with a status of VALID and an object description of Obsolete. This designation indicates that the view remains present and compilable in the database — it is not invalidated or dropped — but Oracle no longer positions it as a supported integration or customization surface for iProcurement functionality. In practice, organizations running EBS 12.1.1 or 12.2.2 may still encounter the view in legacy customizations, reports, or BI Publisher data models that predate its retirement.
The view is a thin projection over the organization units data used by Oracle HRMS. It passes through organization unit records rather than transforming them, which means it behaves as a convenience alias for consumers that need organization unit information without querying the HRMS base view directly. Because the object is marked obsolete, any new development should treat it as read-only legacy infrastructure.
Underlying Base Objects
The documented base objects for this view are PER_ORGANIZATION_UNITS, HR_GENERAL, and HR_SECURITY. The view text is a straightforward SELECT that lists all columns from PER_ORGANIZATION_UNITS without joins, filters, or expressions. PER_ORGANIZATION_UNITS is itself a view rather than a physical table, and it is that view — not a stored table — that supplies every column exposed here.
The inclusion of HR_GENERAL and HR_SECURITY in the metadata reflects the dependency chain: PER_ORGANIZATION_UNITS resolves organization unit rows and applies HR security predicates through the HR_SECURITY package, while HR_GENERAL provides general HR utility functions and business group context resolution. Row-level access is therefore governed by HR security profiles attached to the querying user, not by logic inside ICX_PER_ORGANIZATION_UNITS_V itself. There is no iProcurement-specific filtering, so results are bounded by the HRMS security model rather than by purchasing or procurement document scope.
Key Columns
- ORGANIZATION_ID — Primary identifier of the organization unit.
- BUSINESS_GROUP_ID — The HR business group to which the unit belongs; critical for multi-business-group filtering.
- NAME — Descriptive name of the organization unit.
- DATE_FROM / DATE_TO — Effective dating window for the organization unit row.
- DEFAULT_START_TIME / DEFAULT_END_TIME — The default working start and end times for the unit. The DEFAULT_END_TIME column is the one most commonly sought in searches tied to this object.
- WORKING_HOURS and FREQUENCY — Working pattern attributes associated with the unit's schedule.
- INTERNAL_ADDRESS_LINE and COMMENTS — Descriptive address and free-text attributes.
- INTERNAL_EXTERNAL_FLAG and TYPE — Classification of the unit.
- LOCATION_ID — Reference to the associated location.
- COST_ALLOCATION_KEYFLEX_ID / SOFT_CODING_KEYFLEX_ID — Key flexfield references used for costing and soft coding.
Common Use Cases and Queries
The most frequent use is retrieving scheduling attributes such as DEFAULT_END_TIME for an organization unit, typically to drive iProcurement requisition defaults, approval routing, or downstream reporting. HR security applies, so the querying user's security profile determines visible rows.
A typical retrieval of scheduling data follows:
SELECT organization_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 TRUNC(SYSDATE) BETWEEN date_from AND NVL(date_to, TRUNC(SYSDATE));
A second pattern resolves the organization name for a known ID, joining outward to other HR or purchasing entities as needed. Because the view is documented obsolete and is only a projection of PER_ORGANIZATION_UNITS, the recommended approach for new development is to query PER_ORGANIZATION_UNITS directly, reserving ICX_PER_ORGANIZATION_UNITS_V for maintaining existing legacy objects until they are migrated.
-
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: 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 ,