Search Results pay_us_fed_liability_types_v
Overview
PAY_US_FED_LIABILITY_TYPES_V is an APPS-owned database view in the Oracle E-Business Suite Payroll (PAY) product family. It exposes US federal tax liability element types alongside their associated tax type and balance attributes, giving payroll developers, report authors, and integration specialists a single denormalized source for federal withholding liability configuration. The view carries a VALID status and is shipped in both the 12.1.1 and 12.2.2 releases.
Rather than storing data, the view joins payroll element type definitions to US federal tax types and tax balance rows, filtered to the federal domain and the liability balance category. Its practical purpose is to answer configuration questions such as which payroll elements represent employer-side federal liabilities, what balance category each maps to, and what reporting name and processing priority apply. Because it returns the element type identifier and effective dating, it is also suitable for date-effective lookups during payroll processing analysis and for reconciliation of tax liability balances against general ledger postings.
Underlying Base Objects
The view is defined over four synonym-referenced base objects in the APPS schema:
- PAY_ELEMENT_TYPES_F — the core element type definition table, supplying element name, element type identifier, effective start and end dates, business group, processing priority, and legislation code.
- PAY_ELEMENT_TYPES_F_TL — the translated (language) table for element types, joined on ELEMENT_TYPE_ID with the condition PETTL.LANGUAGE = USERENV('LANG') so that names resolve in the session language.
- PAY_US_TAX_TYPES — the US tax type definition, providing TAX_TYPE_ID, TAX_TYPE_CODE, TAX_DOMAIN_CODE, and LIMIT_TAX_FLAG.
- PAY_US_TAX_BALANCES — the US tax balance definition, supplying BALANCE_CATEGORY_CODE, EE_OR_ER_CODE, and USER_REPORTING_NAME.
The joins are driven by ELEMENT_TYPE_ID between the element type and its translation, and by TAX_TYPE_ID between the tax type and tax balance. Two binding filters restrict the result set: TAX_DOMAIN_CODE = 'FEDERAL' and BALANCE_CATEGORY_CODE = 'LIABILITY'.
Key Columns
- TAX_TYPE_ID — primary identifier of the federal tax type.
- TAX_TYPE_CODE — code of the tax type; matched to the uppercase element name after stripping the '_ER' suffix.
- TAX_DOMAIN_CODE — constrained to 'FEDERAL' in this view.
- LIMIT_TAX_FLAG — indicates whether the tax is subject to a wage limit.
- BALANCE_CATEGORY_CODE — constrained to 'LIABILITY'.
- EE_OR_ER_CODE — distinguishes employee versus employer liability.
- USER_REPORTING_NAME — the reporting label for the liability.
- ELEMENT_NAME — the payroll element name; the view matches only 'MEDICARE_ER', 'FUTA', and 'SS_ER'.
- ELEMENT_TYPE_ID — identifier of the element type; the principal join key.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — date-effective boundaries of the element type.
- BUSINESS_GROUP_ID — the business group owning the element type.
- PROCESSING_PRIORITY — relative processing order for the element.
- LEGISLATION_CODE — the legislative context of the element type.
Common Use Cases and Queries
The view is typically used to audit employer federal liability element configuration, to source reporting names for balance reconciliation, and to validate effective dating of federal liability elements prior to a payroll run or upgrade.
SELECT element_name,
tax_type_code,
ee_or_er_code,
user_reporting_name,
processing_priority,
effective_start_date,
effective_end_date
FROM apps.pay_us_fed_liability_types_v
ORDER BY processing_priority;
SELECT element_type_id,
element_name,
business_group_id,
legislation_code
FROM apps.pay_us_fed_liability_types_v
WHERE SYSDATE BETWEEN effective_start_date AND NVL(effective_end_date, SYSDATE);
SELECT t.element_name, t.user_reporting_name
FROM apps.pay_us_fed_liability_types_v t
WHERE t.ee_or_er_code = 'ER';
Oracle proprietorship applies to all referenced objects; the view should be queried read-only and its filters treated as fixed constraints when building downstream reports.
-
View: PAY_US_FED_LIABILITY_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITY_TYPES_V, object_name:PAY_US_FED_LIABILITY_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_LIABILITY_TYPES_V ,
-
View: PAY_US_FED_LIABILITY_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITY_TYPES_V, object_name:PAY_US_FED_LIABILITY_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_LIABILITY_TYPES_V ,
-
SYNONYM: PUBLIC.PAY_US_FED_LIABILITY_TYPES_V
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PAY_US_FED_LIABILITY_TYPES_V, status:VALID,
-
VIEW: APPS.PAY_US_FED_LIABILITY_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITY_TYPES_V, object_name:PAY_US_FED_LIABILITY_TYPES_V, status:VALID,
-
SYNONYM: APPS.PAY_US_TAX_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_US_TAX_TYPES, status:VALID,
-
VIEW: APPS.PAY_US_ASG_RUN_FED_LIAB_RBR_V
12.1.1
-
SYNONYM: APPS.PAY_US_TAX_BALANCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_US_TAX_BALANCES, status:VALID,
-
VIEW: APPS.PAY_US_ASG_RUN_FED_LIAB_RBR_V
12.2.2
-
SYNONYM: APPS.PAY_US_TAX_BALANCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_US_TAX_BALANCES, status:VALID,
-
VIEW: APPS.PAY_US_FED_LIABILITIES_RBR_V
12.1.1
-
VIEW: APPS.PAY_US_FED_LIABILITIES_RBR_V
12.2.2
-
SYNONYM: APPS.PAY_US_TAX_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_US_TAX_TYPES, status:VALID,
-
VIEW: APPS.PAY_US_FED_LIABILITIES_V
12.1.1
-
PACKAGE BODY: APPS.PAY_US_TAX_BAL_SUMMARY_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_US_TAX_BAL_SUMMARY_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAY_US_TAX_BAL_SUMMARY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_US_TAX_BAL_SUMMARY_PKG, status:VALID,
-
VIEW: APPS.PAY_US_FED_LIABILITIES_V
12.2.2
-
VIEW: APPS.PAY_US_FED_LIABILITY_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITY_TYPES_V, object_name:PAY_US_FED_LIABILITY_TYPES_V, status:VALID,
-
View: PAY_US_ASG_RUN_FED_LIAB_RBR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_ASG_RUN_FED_LIAB_RBR_V, object_name:PAY_US_ASG_RUN_FED_LIAB_RBR_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_ASG_RUN_FED_LIAB_RBR_V ,
-
View: PAY_US_ASG_RUN_FED_LIAB_RBR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_ASG_RUN_FED_LIAB_RBR_V, object_name:PAY_US_ASG_RUN_FED_LIAB_RBR_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_ASG_RUN_FED_LIAB_RBR_V ,
-
View: PAY_US_FED_LIABILITIES_RBR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITIES_RBR_V, object_name:PAY_US_FED_LIABILITIES_RBR_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_LIABILITIES_RBR_V ,
-
View: PAY_US_FED_LIABILITIES_RBR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITIES_RBR_V, object_name:PAY_US_FED_LIABILITIES_RBR_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_LIABILITIES_RBR_V ,
-
View: PAY_US_FED_LIABILITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITIES_V, object_name:PAY_US_FED_LIABILITIES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_LIABILITIES_V ,
-
VIEW: APPS.PAY_US_FED_LIABILITIES_RBR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITIES_RBR_V, object_name:PAY_US_FED_LIABILITIES_RBR_V, status:VALID,
-
VIEW: APPS.PAY_US_FED_LIABILITIES_RBR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITIES_RBR_V, object_name:PAY_US_FED_LIABILITIES_RBR_V, status:VALID,
-
View: PAY_US_FED_LIABILITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITIES_V, object_name:PAY_US_FED_LIABILITIES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_LIABILITIES_V ,
-
VIEW: APPS.PAY_US_FED_LIABILITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITIES_V, object_name:PAY_US_FED_LIABILITIES_V, status:VALID,
-
VIEW: APPS.PAY_US_FED_LIABILITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITIES_V, object_name:PAY_US_FED_LIABILITIES_V, status:VALID,
-
VIEW: APPS.PAY_US_ASG_RUN_FED_LIAB_RBR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_ASG_RUN_FED_LIAB_RBR_V, object_name:PAY_US_ASG_RUN_FED_LIAB_RBR_V, status:VALID,
-
VIEW: APPS.PAY_US_ASG_RUN_FED_LIAB_RBR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_ASG_RUN_FED_LIAB_RBR_V, object_name:PAY_US_ASG_RUN_FED_LIAB_RBR_V, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_TYPES_F_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_TYPES_F_TL, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_TYPES_F_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_TYPES_F_TL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.PAY_US_TAX_BAL_SUMMARY_PKG dependencies on PAY_US_FED_LIABILITY_TYPES_V
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.PAY_US_TAX_BAL_SUMMARY_PKG dependencies on PAY_US_FED_LIABILITY_TYPES_V
12.1.1
-
APPS.PAY_US_TAX_BAL_SUMMARY_PKG SQL Statements
12.1.1
-
APPS.PAY_US_TAX_BAL_SUMMARY_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.PAY_ELEMENT_TYPES_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_TYPES_F, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_TYPES_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_TYPES_F, status:VALID,
-
PACKAGE BODY: APPS.PAY_US_TAX_BAL_SUMMARY_PKG
12.1.1
-
PACKAGE BODY: APPS.PAY_US_TAX_BAL_SUMMARY_PKG
12.2.2
-
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. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
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. ,