Search Results fed_override_rate
Overview
APPS.PAY_CA_EMP_FED_TAX_INFO_D is a reporting view in Oracle EBS Payroll (Oracle HRMS) that exposes Canadian employee federal tax information. The view is defined over the date-tracked (datetracked) table PAY_CA_EMP_FED_TAX_INFO_F and enriches it with descriptive lookups and audit information. Its primary purpose is to provide a denormalized, user-readable representation of each employee's federal tax election records, including effective-dated attributes such as tax credit amounts, exemption flags, additional tax, prescribed zone deductions, and CPP/EI election details.
The view is particularly relevant to the search term "ca_tax_calc_method". The column TAX_CALC_METHOD is stored as a lookup code on the underlying table, and the view resolves it to a meaningful description through the CALCULATION_METHOD column. This resolution joins the base table to HR_LOOKUPS where LOOKUP_TYPE = 'CA_TAX_CALC_METHOD'. Similarly, the employee's province of employment is resolved through a second join to HR_LOOKUPS using LOOKUP_TYPE = 'CA_PROVINCE'. Because the lookup joins are outer joins (+), records are returned even when a corresponding lookup row is absent.
Underlying Base Objects
The documented base objects referenced by the view are:
- PAY_CA_EMP_FED_TAX_INFO_F (accessed via synonym) — the primary date-tracked entity table holding Canadian employee federal tax information. Each row is keyed by EMP_FED_TAX_INF_ID with EFFECTIVE_START_DATE and EFFECTIVE_END_DATE defining the datetrack validity window.
- HR_LOOKUPS (view) — used twice (aliased HRL and HRL1) to resolve the tax calculation method (CA_TAX_CALC_METHOD) and the employment province (CA_PROVINCE) into descriptive meanings.
- FND_USER (synonym) — joined through an outer join on LAST_UPDATED_BY to retrieve the USER_NAME of the last updater.
- HR_API (package) — referenced as part of the view's metadata, consistent with HRMS date-tracked objects that are maintained through the HR_API business process APIs.
The view therefore functions as a read-optimized layer that shields consumers from the numeric lookup codes and surrogate user IDs stored on the base entity.
Key Columns
- EMP_FED_TAX_INF_ID — primary identifier for the federal tax information record.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — datetrack window establishing when the record is effective.
- TAX_CALC_METHOD — the stored lookup code for the federal tax calculation method; this is the column associated with the "ca_tax_calc_method" query.
- CALCULATION_METHOD — the descriptive MEANING value resolved from CA_TAX_CALC_METHOD, providing the human-readable calculation method.
- EMPLOYMENT_PROVINCE_NAME — the descriptive province name resolved from the CA_PROVINCE lookup.
- TAX_CREDIT_AMOUNT, ADDITIONAL_TAX, ANNUAL_DEDN — monetary federal tax parameters.
- BASIC_EXEMPTION_FLAG, CPP_QPP_EXEMPT_FLAG, FED_EXEMPT_FLAG, EI_EXEMPT_FLAG — exemption indicators for federal tax, CPP/QPP, and EI.
- FED_OVERRIDE_AMOUNT, FED_OVERRIDE_RATE, FED_LSF_AMOUNT — override and labour-sponsored fund amounts.
- CPP_ELECTION_DATE, CPP_REVOCATION_DATE — CPP election lifecycle dates.
- TOTAL_EXPENSE_BY_COMMISSION, TOTAL_REMNRTN_BY_COMMISSION, PRESCRIBED_ZONE_DEDN_AMT, OTHER_FEDTAX_CREDITS — commission, prescribed zone, and other credit amounts.
- LAST_UPDATE_DATE, LAST_UPDATED_BY — audit columns, with LAST_UPDATED_BY resolved to USER_NAME.
Common Use Cases and Queries
Typical usage includes payroll reporting, tax configuration audits, and integration extracts that require decoded calculation methods and province names. A representative query to find employees by tax calculation method is:
- SELECT emp_fed_tax_inf_id, calculation_method, employment_province_name, effective_start_date, effective_end_date FROM apps.pay_ca_emp_fed_tax_info_d WHERE tax_calc_method = :p_method;
- Auditing exemptions: SELECT * FROM apps.pay_ca_emp_fed_tax_info_d WHERE fed_exempt_flag = 'Y' AND effective_end_date = HR_API.g_high_date;
- Reporting CPP elections: SELECT emp_fed_tax_inf_id, cpp_election_date, cpp_revocation_date FROM apps.pay_ca_emp_fed_tax_info_d WHERE cpp_election_date IS NOT NULL;
- Resolving the latest record per employee by filtering on the high date and ordering by effective_start_date DESC.
Because the view exposes the datetracked table directly, queries should always constrain on the effective dates to return the correct version of the tax information for the reporting period required.
-
VIEW: APPS.PAY_CA_EMP_FED_TAX_INFO_D
12.1.1
-
View: PAY_CA_EMP_FED_TAX_INFO_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_FED_TAX_INFO_D, object_name:PAY_CA_EMP_FED_TAX_INFO_D, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_CA_EMP_FED_TAX_INFO_D ,
-
View: PAY_CA_EMP_FED_TAX_INFO_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_FED_TAX_INFO_D, object_name:PAY_CA_EMP_FED_TAX_INFO_D, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_CA_EMP_FED_TAX_INFO_D ,
-
VIEW: APPS.PAY_CA_EMP_FED_TAX_INFO_D
12.2.2
-
View: PAY_CA_EMP_FED_TAX_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_FED_TAX_INFO_V, object_name:PAY_CA_EMP_FED_TAX_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_CA_EMP_FED_TAX_INFO_V ,
-
VIEW: HR.PAY_CA_EMP_FED_TAX_INFO_F#
12.2.2
-
VIEW: APPS.PAY_CA_EMP_FED_TAX_INFO_V
12.2.2
-
VIEW: APPS.PAY_CA_EMP_ALL_FEDTAX_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_ALL_FEDTAX_INFO_V, object_name:PAY_CA_EMP_ALL_FEDTAX_INFO_V, status:VALID,
-
View: PAY_CA_EMP_FED_TAX_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_FED_TAX_INFO_V, object_name:PAY_CA_EMP_FED_TAX_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_CA_EMP_FED_TAX_INFO_V ,
-
APPS.PAY_CFT_SHD SQL Statements
12.1.1
-
VIEW: APPS.PAY_CA_EMP_FED_TAX_INFO_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_FED_TAX_INFO_D, object_name:PAY_CA_EMP_FED_TAX_INFO_D, status:VALID,
-
VIEW: APPS.PAY_CA_EMP_FED_TAX_INFO_V
12.1.1
-
VIEW: APPS.PAY_CA_EMP_FED_TAX_INFO_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_FED_TAX_INFO_D, object_name:PAY_CA_EMP_FED_TAX_INFO_D, status:VALID,
-
VIEW: APPS.PAY_CA_EMP_ALL_FEDTAX_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_ALL_FEDTAX_INFO_V, object_name:PAY_CA_EMP_ALL_FEDTAX_INFO_V, status:VALID,
-
APPS.PAY_CFT_SHD SQL Statements
12.2.2
-
VIEW: HR.PAY_CA_EMP_FED_TAX_INFO_F#
12.2.2
owner:HR, object_type:VIEW, object_name:PAY_CA_EMP_FED_TAX_INFO_F#, status:VALID,
-
VIEW: APPS.PAY_CA_EMP_FED_TAX_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_FED_TAX_INFO_V, object_name:PAY_CA_EMP_FED_TAX_INFO_V, status:VALID,
-
VIEW: APPS.PAY_CA_EMP_FED_TAX_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_FED_TAX_INFO_V, object_name:PAY_CA_EMP_FED_TAX_INFO_V, status:VALID,
-
View: PAY_CA_EMP_ALL_FEDTAX_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_ALL_FEDTAX_INFO_V, object_name:PAY_CA_EMP_ALL_FEDTAX_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_CA_EMP_ALL_FEDTAX_INFO_V ,
-
View: PAY_CA_EMP_ALL_FEDTAX_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_EMP_ALL_FEDTAX_INFO_V, object_name:PAY_CA_EMP_ALL_FEDTAX_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_CA_EMP_ALL_FEDTAX_INFO_V ,
-
TABLE: HR.PAY_CA_EMP_FED_TAX_INFO_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_CA_EMP_FED_TAX_INFO_F, object_name:PAY_CA_EMP_FED_TAX_INFO_F, status:VALID,
-
TABLE: HR.PAY_CA_EMP_FED_TAX_INFO_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_CA_EMP_FED_TAX_INFO_F, object_name:PAY_CA_EMP_FED_TAX_INFO_F, status:VALID,
-
APPS.PAY_CFT_INS SQL Statements
12.2.2
-
APPS.PAY_CFT_INS SQL Statements
12.1.1
-
APPS.PAY_CFT_UPD SQL Statements
12.1.1
-
APPS.PAY_CFT_UPD SQL Statements
12.2.2
-
APPS.PAY_CA_EMP_TAX_INF SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PAY_CFT_SHD
12.1.1
-
PACKAGE BODY: APPS.PAY_CFT_SHD
12.2.2
-
APPS.PAY_CA_EMP_TAX_INF SQL Statements
12.2.2
-
APPS.PAY_CA_CONT_CALC SQL Statements
12.1.1
-
APPS.PAY_CA_CONT_CALC SQL Statements
12.2.2
-
PACKAGE: APPS.PAY_CFT_SHD
12.1.1
-
PACKAGE: APPS.PAY_CFT_SHD
12.2.2
-
PACKAGE BODY: APPS.PAY_CFT_INS
12.2.2
-
PACKAGE BODY: APPS.PAY_CFT_INS
12.1.1
-
PACKAGE BODY: APPS.PAY_CA_CONT_CALC
12.2.2
-
PACKAGE BODY: APPS.PAY_CA_CONT_CALC
12.1.1
-
PACKAGE BODY: APPS.PAY_CFT_UPD
12.1.1
-
PACKAGE BODY: APPS.PAY_CFT_UPD
12.2.2
-
PACKAGE BODY: APPS.PAY_CA_EMP_TAX_INF
12.1.1
-
APPS.PAY_CA_EMP_TAX_INF dependencies on PAY_CA_EMP_FED_TAX_INFO_F
12.1.1
-
PACKAGE BODY: APPS.PAY_CA_EMP_TAX_INF
12.2.2
-
APPS.PAY_CA_EMP_TAX_INF dependencies on PAY_CA_EMP_FED_TAX_INFO_F
12.2.2
-
APPS.PAY_CA_CONT_CALC dependencies on PAY_CONTINUOUS_CALC
12.2.2
-
APPS.PAY_CA_CONT_CALC dependencies on PAY_CONTINUOUS_CALC
12.1.1
-
eTRM - PAY Tables and Views
12.1.1
description: Temporary table used to hold invalid location addresses. ,
-
eTRM - PAY Tables and Views
12.2.2
description: Temporary table used to hold invalid location addresses. ,