Search Results per_calendar_entries
Overview
PER_CALENDAR_ENTRIES is a Human Resources (PER) table in Oracle E-Business Suite 12.1.1 and 12.2.2, owned by the HR schema and stored under the HR database user. Its documented description is "Calendar Entries." The table defines calendar-entry records that associate a named calendar definition with a general hierarchy, a value set, and one or more organization structures or organization structure versions. In practice, it functions as the header or definition record for calendar-based constructs used within Oracle HRMS, while the detailed applicability of each entry (organization lists, geography lists, and calendar values) is held in dependent child tables.
From a Data Vault modeling perspective, ETRM metadata classifies this object as hub-leaning. This heuristic classification is a modeling suggestion rather than a fixed design: the table carries a single surrogate primary key (CALENDAR_ENTRY_ID), several foreign-key references to other descriptive entities, and descriptive attributes such as name, type, and date/time boundaries. That profile is consistent with a hub or a low-grain reference table rather than a pure transactional link or a pure satellite.
Key Information Stored
The table contains 24 documented columns. The following are the most significant for definition and query purposes.
CALENDAR_ENTRY_ID— the surrogate primary key, defined by the unique indexPER_CALENDAR_ENTRIES_PK. In the documented 12.2.2 schema this index is composite, coveringCALENDAR_ENTRY_IDtogether withZD_EDITION_NAME, which supports edition-based redefinition and makes the pair the effective business-key candidate.ZD_EDITION_NAME— the edition identifier used by Oracle's editioning framework; it distinguishes multiple editions of the same logical entry.NAMEandDESCRIPTION— the descriptive identity and free-text explanation of the calendar entry.TYPE— the category of the calendar entry, which governs how the entry is interpreted by downstream logic.START_DATE,START_HOUR,START_MIN— the effective start point of the calendar entry, split into date and time components.END_DATE,END_HOUR,END_MIN— the effective end point, similarly decomposed.HIERARCHY_ID— foreign key toPER_GEN_HIERARCHY, identifying the general hierarchy to which the entry belongs.VALUE_SET_ID— foreign key toFRM_PART_VALUE_SETS, linking the entry to its value set.ORGANIZATION_STRUCTURE_IDandORG_STRUCTURE_VERSION_ID— foreign keys toPER_ORGANIZATION_STRUCTURESandPER_ORG_STRUCTURE_VERSIONSrespectively, scoping the entry to a particular organization structure and its version.BUSINESS_GROUP_IDandLEGISLATION_CODE— the business group and legislative context for the record.IDENTIFIER_KEY— a business identifier attribute carried on the entry.OBJECT_VERSION_NUMBER— the optimistic locking column, together with the standard WHO audit columnsCREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE, andLAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical reporting scenarios resolve calendar entries by name, type, or effective period, then join upward to hierarchy, value set, and organization structure metadata. A simple lookup of active definitions follows:
SELECT calendar_entry_id, name, type, start_date, end_date FROM per_calendar_entries WHERE business_group_id = :p_bg ORDER BY name;- Joining the hierarchy for reporting:
SELECT c.name, h.* FROM per_calendar_entries c, per_gen_hierarchy h WHERE c.hierarchy_id = h.hierarchy_id; - Enumerating the organizations applicable to an entry via the child list table:
SELECT c.name, l.* FROM per_calendar_entries c, per_cal_entry_org_list l WHERE c.calendar_entry_id = l.calendar_entry_id; - Retrieving the values attached to an entry:
SELECT v.* FROM per_cal_entries_v… , per_cal_entry_values v WHERE v.calendar_entry_id = c.calendar_entry_id;
Because the primary index includes ZD_EDITION_NAME, queries on 12.2.2 should be aware of editioning when filtering by identifier. Effective-dating checks using START_DATE/END_DATE are appropriate for determining whether an entry applies to a given reporting period.
Related Objects
The following objects are directly related through documented primary- and foreign-key relationships.
PER_GEN_HIERARCHY— referenced byPER_CALENDAR_ENTRIES.HIERARCHY_ID.FRM_PART_VALUE_SETS— referenced byPER_CALENDAR_ENTRIES.VALUE_SET_ID.PER_ORGANIZATION_STRUCTURES— referenced byPER_CALENDAR_ENTRIES.ORGANIZATION_STRUCTURE_ID.PER_ORG_STRUCTURE_VERSIONS— referenced byPER_CALENDAR_ENTRIES.ORG_STRUCTURE_VERSION_ID.PER_CAL_ENTRY_GEO_LIST— child table referencingCALENDAR_ENTRY_ID.PER_CAL_ENTRY_ORG_LIST— child table referencingCALENDAR_ENTRY_ID.PER_CAL_ENTRY_VALUES— child table referencingCALENDAR_ENTRY_ID.
These relationships define the entry's definitional context and its enumerations of geographies, organizations, and values, and they form the basis for joins in any extraction or reporting exercise against PER calendar data.
-
Table: PER_CALENDAR_ENTRIES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CALENDAR_ENTRIES, object_name:PER_CALENDAR_ENTRIES, status:VALID, product: PER - Human Resources , description: Calendar Entries , implementation_dba_data: HR.PER_CALENDAR_ENTRIES ,
-
Table: PER_CALENDAR_ENTRIES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CALENDAR_ENTRIES, object_name:PER_CALENDAR_ENTRIES, status:VALID, product: PER - Human Resources , description: Calendar Entries , implementation_dba_data: HR.PER_CALENDAR_ENTRIES ,
-
APPS.PER_ENV_BUS SQL Statements
12.1.1
-
APPS.PER_ENV_BUS SQL Statements
12.2.2
-
VIEW: HR.PER_CALENDAR_ENTRIES#
12.2.2
owner:HR, object_type:VIEW, object_name:PER_CALENDAR_ENTRIES#, status:VALID,
-
APPS.PER_ENT_BUS SQL Statements
12.1.1
-
VIEW: APPS.HRBV_CALENDAR_ENTRIES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:HRBV_CALENDAR_ENTRIES_V, status:VALID,
-
VIEW: APPS.HRBV_CALENDAR_ENTRIES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:HRBV_CALENDAR_ENTRIES_V, status:VALID,
-
VIEW: APPS.PER_CAL_EVENT_ELIGIBILITY_V
12.2.2
-
SYNONYM: PUBLIC.PER_CALENDAR_ENTRIES
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PER_CALENDAR_ENTRIES, status:VALID,
-
VIEW: APPS.PER_CALENDAR_ENTRIES_V
12.2.2
-
TRIGGER: APPS.PER_CALENDAR_ENTRIES+
12.2.2
-
VIEW: APPS.PER_CAL_EVENT_ELIGIBILITY_V
12.1.1
-
TRIGGER: APPS.PER_CALENDAR_ENTRIES+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PER_CALENDAR_ENTRIES+, status:VALID,
-
APPS.PER_ENT_SHD SQL Statements
12.1.1
-
APPS.HR_CAL_EVENT_MAPPING_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.PER_CALENDAR_ENTRIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_CALENDAR_ENTRIES, status:VALID,
-
APPS.PER_ENT_BUS SQL Statements
12.2.2
-
APPS.PER_ENT_SHD SQL Statements
12.2.2
-
VIEW: APPS.PER_CALENDAR_ENTRIES_V
12.1.1
-
APPS.HR_CAL_EVENT_MAPPING_PKG SQL Statements
12.1.1
-
VIEW: APPS.HRBV_CALENDAR_ENTRIES_V
12.1.1
-
VIEW: APPS.HRBV_CALENDAR_ENTRIES_V
12.2.2
-
SYNONYM: APPS.PER_CALENDAR_ENTRIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_CALENDAR_ENTRIES, status:VALID,
-
APPS.PER_CALENDAR_ENTRIES_LOAD_PKG SQL Statements
12.2.2
-
APPS.PER_CALENDAR_ENTRIES_LOAD_PKG SQL Statements
12.1.1
-
VIEW: HR.PER_CALENDAR_ENTRIES#
12.2.2
-
TABLE: HR.PER_CALENDAR_ENTRIES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CALENDAR_ENTRIES, object_name:PER_CALENDAR_ENTRIES, status:VALID,
-
Table: PER_CAL_ENTRY_GEO_LIST
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CAL_ENTRY_GEO_LIST, object_name:PER_CAL_ENTRY_GEO_LIST, status:VALID, product: PER - Human Resources , description: Calendar Entry Geo Coverage Cache , implementation_dba_data: HR.PER_CAL_ENTRY_GEO_LIST ,
-
Table: PER_CAL_ENTRY_GEO_LIST
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CAL_ENTRY_GEO_LIST, object_name:PER_CAL_ENTRY_GEO_LIST, status:VALID, product: PER - Human Resources , description: Calendar Entry Geo Coverage Cache , implementation_dba_data: HR.PER_CAL_ENTRY_GEO_LIST ,
-
FUNCTION: APPS.PER_CALENDAR_ENTRIES=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:PER_CALENDAR_ENTRIES=, status:VALID,
-
FUNCTION: APPS.PER_CALENDAR_ENTRIES=
12.2.2
-
APPS.PER_ENT_INS SQL Statements
12.1.1
-
APPS.PER_ENT_INS SQL Statements
12.2.2
-
Table: PER_CAL_ENTRY_ORG_LIST
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CAL_ENTRY_ORG_LIST, object_name:PER_CAL_ENTRY_ORG_LIST, status:VALID, product: PER - Human Resources , description: Calendar Entry Org Coverage Cache , implementation_dba_data: HR.PER_CAL_ENTRY_ORG_LIST ,
-
PACKAGE BODY: APPS.PER_CALENDAR_ENTRIES_LOAD_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_CALENDAR_ENTRIES_LOAD_PKG, status:VALID,
-
Table: PER_CAL_ENTRY_ORG_LIST
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CAL_ENTRY_ORG_LIST, object_name:PER_CAL_ENTRY_ORG_LIST, status:VALID, product: PER - Human Resources , description: Calendar Entry Org Coverage Cache , implementation_dba_data: HR.PER_CAL_ENTRY_ORG_LIST ,
-
Table: PER_GEN_HIERARCHY
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GEN_HIERARCHY, object_name:PER_GEN_HIERARCHY, status:VALID, product: PER - Human Resources , implementation_dba_data: HR.PER_GEN_HIERARCHY ,
-
Table: PER_CAL_ENTRY_VALUES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CAL_ENTRY_VALUES, object_name:PER_CAL_ENTRY_VALUES, status:VALID, product: PER - Human Resources , description: Calendar Entry Values , implementation_dba_data: HR.PER_CAL_ENTRY_VALUES ,
-
Table: PER_GEN_HIERARCHY
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GEN_HIERARCHY, object_name:PER_GEN_HIERARCHY, status:VALID, product: PER - Human Resources , implementation_dba_data: HR.PER_GEN_HIERARCHY ,
-
TABLE: HR.PER_CALENDAR_ENTRIES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CALENDAR_ENTRIES, object_name:PER_CALENDAR_ENTRIES, status:VALID,
-
PACKAGE BODY: APPS.PER_CAL_ENTRY_VALUES_LOAD_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_CAL_ENTRY_VALUES_LOAD_PKG, status:VALID,
-
PACKAGE BODY: APPS.PER_ENV_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_ENV_BUS, status:VALID,
-
PACKAGE BODY: APPS.PER_ENT_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_ENT_SHD, status:VALID,
-
PACKAGE BODY: APPS.PER_ENT_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_ENT_SHD, status:VALID,
-
Table: PER_CAL_ENTRY_VALUES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CAL_ENTRY_VALUES, object_name:PER_CAL_ENTRY_VALUES, status:VALID, product: PER - Human Resources , description: Calendar Entry Values , implementation_dba_data: HR.PER_CAL_ENTRY_VALUES ,
-
TRIGGER: APPS.PER_CALENDAR_ENTRIES_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:PER_CALENDAR_ENTRIES_WHO, status:VALID,
-
TRIGGER: APPS.PER_CALENDAR_ENTRIES_WHO
12.1.1
-
PACKAGE BODY: APPS.HR_CALENDAR_ENTRY_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_CALENDAR_ENTRY_API, status:VALID,
-
PACKAGE BODY: APPS.HR_CALENDAR_ENTRY_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_CALENDAR_ENTRY_API, status:VALID,