Search Results hxt_tim_summary_fmv
Overview
HXT_TIM_SUMMARY_FMV is a read-only Oracle EBS view owned by the APPS schema, classified under the HXT (Time and Labor) product family. In Oracle EBS 12.1.1 and 12.2.2 it exposes a consolidated, denormalized snapshot of timecard activity, linking each timecard record to the assignment, organization, payroll, time period, rotation plan, and approver context in which it was processed. The "_FMV" suffix conventionally denotes a "Flat/Formatted Materialized View" style object intended primarily for reporting and integration rather than for transactional processing.
Rather than forcing report developers to join the underlying HR and Time and Labor tables manually, the view pre-resolves the effective-dated relationships between people, assignments, time periods, and payrolls. This makes it a convenient single source for approved timecard summaries, approval audit trails, and organization-level time reporting. Because the view references only other views, synonyms, and packaged functions (not tables directly), it is a logical reporting layer, and its data always reflects the current state of the base tables at query time.
Underlying Base Objects
The view is defined over the following documented base objects:
- PER_PEOPLE_F — supplies person attributes (employee number, full name) and the approver's name via an outer join.
- PER_ASSIGNMENTS — provides the assignment, organization, and business group linkage.
- PER_TIME_PERIODS — provides the time period and its END_DATE, which anchors the effective-date logic.
- HXT_TIMECARDS — the primary transactional source (approval person, approval timestamp, timecard ID).
- HXT_PER_AEI_DDF_V — the assignment extra-information view supplying the rotation plan reference.
- HXT_ROTATION_PLANS — provides the rotation plan name.
- HR_ORGANIZATION_UNITS — supplies the organization name and organization business group.
- PAY_PAYROLLS_F — supplies the payroll ID and payroll name.
- HR_GENERAL / HR_PERSON_NAME / HR_SECURITY — packaged utilities and security referenced within the definition.
The joins rely heavily on the BETWEEN effective-date pattern, ensuring that each row reflects only the person, assignment, and rotation-plan versions valid as of the time period end date. The approver person is joined with an outer join, so timecards with no approver still appear.
Key Columns
- ORGANIZATION_ID / ORGANIZATION_NAME — the assignment's organization and its descriptive name.
- ASG_BUS_GRP_ID / ORG_BUS_GRP_ID / PAY_BUS_GRP_ID / EMP_BUS_GRP_ID / APP_BUS_GRP_ID — business group identifiers from each source, useful for multi-org security filtering.
- PERSON_ID / EMPLOYEE_NUMBER / FULL_NAME — the worker identity.
- TIM_ID / TIM_ROW_ID — the timecard identifier and its ROWID.
- TIME_PERIOD_ID / END_DATE — the time period and its end date.
- PAYROLL_ID / PAYROLL_NAME — the payroll the timecard is associated with.
- APPROV_PERSON_ID / APPROV_PERSON_NAME / APPROVED_TIMESTAMP — approval audit information.
- HXT_ROTATION_PLAN_ID / ROTATION_PLAN_NAME — rotation plan context where applicable.
- CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE / LAST_UPDATE_LOGIN — standard audit lineage columns.
Common Use Cases and Queries
This view is typically used for timecard approval reporting, organization roll-ups, and payroll-period reconciliation extracts.
- Approved timecards by organization: filter on ORGANIZATION_ID and APPROVED_TIMESTAMP IS NOT NULL to list approved entries.
- Approval audit trail: select EMPLOYEE_NUMBER, FULL_NAME, APPROV_PERSON_NAME, APPROVED_TIMESTAMP ordered by END_DATE.
- Payroll reconciliation: group by PAYROLL_NAME and END_DATE to count timecards per period.
Sample query:
SELECT employee_number, full_name, organization_name, payroll_name, end_date, approv_person_name, approved_timestamp FROM apps.hxt_tim_summary_fmv WHERE organization_id = :org_id AND approved_timestamp IS NOT NULL ORDER BY end_date;
Because the view performs several effective-dated joins, queries should always constrain ORGANIZATION_ID or a business-group column to maintain acceptable performance in large multi-org environments.
-
View: HXT_TIM_SUMMARY_FMV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_TIM_SUMMARY_FMV, object_name:HXT_TIM_SUMMARY_FMV, status:VALID, product: HXT - Time and Labor , implementation_dba_data: APPS.HXT_TIM_SUMMARY_FMV ,
-
View: HXT_TIM_SUMMARY_FMV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_TIM_SUMMARY_FMV, object_name:HXT_TIM_SUMMARY_FMV, status:VALID, product: HXT - Time and Labor , implementation_dba_data: APPS.HXT_TIM_SUMMARY_FMV ,
-
SYNONYM: PUBLIC.HXT_TIM_SUMMARY_FMV
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:HXT_TIM_SUMMARY_FMV, status:VALID,
-
VIEW: APPS.HXT_TIM_SUMMARY_FMV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_TIM_SUMMARY_FMV, object_name:HXT_TIM_SUMMARY_FMV, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.HXT_ROTATION_PLANS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HXT_ROTATION_PLANS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.HXT_ROTATION_PLANS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HXT_ROTATION_PLANS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.HXT_PER_AEI_DDF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_PER_AEI_DDF_V, object_name:HXT_PER_AEI_DDF_V, status:VALID,
-
VIEW: APPS.HXT_PER_AEI_DDF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_PER_AEI_DDF_V, object_name:HXT_PER_AEI_DDF_V, status:VALID,
-
VIEW: APPS.HXT_TIM_SUMMARY_FMV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_TIM_SUMMARY_FMV, object_name:HXT_TIM_SUMMARY_FMV, status:VALID,
-
VIEW: APPS.HXT_TIMECARDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_TIMECARDS, object_name:HXT_TIMECARDS, status:VALID,
-
VIEW: APPS.HXT_TIMECARDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_TIMECARDS, object_name:HXT_TIMECARDS, status:VALID,
-
VIEW: APPS.PER_ASSIGNMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS, object_name:PER_ASSIGNMENTS, status:VALID,
-
VIEW: APPS.PER_ASSIGNMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS, object_name:PER_ASSIGNMENTS, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
eTRM - HXT Tables and Views
12.1.1
description: A location to put an employee's work shifts on which all earnings are based. ,
-
eTRM - HXT Tables and Views
12.2.2
description: A location to put an employee's work shifts on which all earnings are based. ,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.PER_TIME_PERIODS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_TIME_PERIODS, status:VALID,
-
VIEW: APPS.PAY_PAYROLLS_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PAYROLLS_F, object_name:PAY_PAYROLLS_F, status:VALID,
-
SYNONYM: APPS.PER_TIME_PERIODS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_TIME_PERIODS, status:VALID,
-
VIEW: APPS.PAY_PAYROLLS_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PAYROLLS_F, object_name:PAY_PAYROLLS_F, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
eTRM - HXT Tables and Views
12.1.1
description: A location to put an employee's work shifts on which all earnings are based. ,
-
eTRM - HXT Tables and Views
12.2.2
description: A location to put an employee's work shifts on which all earnings are based. ,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - PAY Tables and Views
12.1.1
description: Temporary table used to hold invalid location addresses. ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - PAY Tables and Views
12.1.1
description: Temporary table used to hold invalid location addresses. ,