Search Results head_tax_liability
Overview
APPS.PAYBV_US_COUNTY_ARCHIVE is a read-only Oracle EBS view that exposes archived United States county-level payroll tax information maintained by the Oracle Payroll/Balance Validation (PAYBV) subsystem. It is defined over the PAY_ACTION_INFORMATION table, filtering to records whose ACTION_INFORMATION_CATEGORY equals 'US COUNTY'. Each row represents a discrete county tax transaction or balance snapshot associated with a payroll action, keyed by an action_context_id, a tax_unit_id, an assignment, and an effective date.
The view is intended primarily for reporting, reconciliation, and payroll-to-GL or third-party tax filing integrations. Because it decodes the generic ACTION_INFORMATION1 through ACTION_INFORMATION7 columns into semantically meaningful county tax figures, it provides a consumable interface for analytics and extracts without requiring downstream tools to interpret the raw action-information layout.
Underlying Base Objects
The view text references three documented dependencies:
- PAY_ACTION_INFORMATION (referenced via a synonym) — the driving base table. Every column in the view derives from it, with the exception of the two lookup columns produced by packaged functions. The
WHERE action_information_category = 'US COUNTY'predicate isolates county tax rows. - PAY_AC_UTIL (package) — supplies GET_STATE_ABBREV, used to derive the STATE column from the jurisdiction code.
- PAY_US_EMPLOYEE_PAYSLIP_WEB (package) — supplies GET_JURISDICTION_NAME, used to resolve a human-readable jurisdiction name from the jurisdiction code.
Because it depends on a mutable base table and on packaged function calls, the view is subject to the performance and read-consistency characteristics of PAY_ACTION_INFORMATION. The view is created WITH READ ONLY, so it cannot be used as a DML target.
Key Columns
- ACTION_NUMBER — aliased from ACTION_CONTEXT_ID; identifies the payroll action context.
- TAX_UNIT_ID, EFFECTIVE_DATE, ASSIGNMENT_ID, JURISDICTION_CODE — the natural keys of the county tax record.
- JURISDICTION_NAME, STATE — derived display values returned by the two package functions.
- COUNTY_GROSS (ACTION_INFORMATION7) — county-level gross subject to tax.
- COUNTY_WITHHELD (ACTION_INFORMATION1) — county tax actually withheld.
- COUNTY_SUBJ_WHABLE (ACTION_INFORMATION2) — subject amount that is withholding-eligible.
- COUNTY_SUBJ_NWABLE (ACTION_INFORMATION3) — subject amount that is not withholding-eligible.
- COUNTY_PRE_TAX_REDNS (ACTION_INFORMATION4) — pre-tax reductions applied to the county subject.
- COUNTY_SUBJECT — computed as ACTION_INFORMATION2 + ACTION_INFORMATION3.
- COUNTY_REDUCED_SUBJECT — computed as ACTION_INFORMATION2 − ACTION_INFORMATION4.
- HEAD_TAX_LIABILITY (ACTION_INFORMATION5) and HEAD_TAX_WITHHELD (ACTION_INFORMATION6) — the user's search term maps directly to HEAD_TAX_LIABILITY, the head-of-household or per-head county tax liability amount; the corresponding withheld amount is also exposed.
- NON_RESIDENT_FLAG (ACTION_INFORMATION30) — indicates non-resident tax treatment.
Common Use Cases and Queries
Typical uses include reconciliation of county withholding against payroll results, extraction of county tax detail for filing, and analysis of head tax liability by jurisdiction, employee, or period.
Example: retrieve head tax liability for an employee over a date range.
SELECT action_number,
tax_unit_id,
effective_date,
assignment_id,
jurisdiction_name,
state,
head_tax_liability,
head_tax_withheld
FROM apps.paybv_us_county_archive
WHERE assignment_id = :p_assignment_id
AND effective_date BETWEEN :p_start AND :p_end
ORDER BY effective_date;
Example: aggregate county subject and gross by state and jurisdiction.
SELECT state,
jurisdiction_name,
SUM(county_gross) AS total_gross,
SUM(county_subject) AS total_subject,
SUM(county_withheld) AS total_withheld,
SUM(head_tax_liability) AS total_head_liability
FROM apps.paybv_us_county_archive
WHERE effective_date >= :p_period_start
GROUP BY state, jurisdiction_name
ORDER BY state, jurisdiction_name;
Example: isolate non-resident county tax activity.
SELECT action_number, assignment_id, jurisdiction_name, county_withheld, head_tax_liability FROM apps.paybv_us_county_archive WHERE non_resident_flag IS NOT NULL AND effective_date BETWEEN :p_start AND :p_end;
All queries should limit effective_date ranges to constrain the underlying scan of PAY_ACTION_INFORMATION and to minimize repeated invocation of the packaged lookup functions.
-
VIEW: APPS.PAYBV_US_COUNTY_ARCHIVE
12.2.2
-
View: PAY_US_COUNTY_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_COUNTY_ACTION_INFO_V, object_name:PAY_US_COUNTY_ACTION_INFO_V, status:VALID, product: PAY - Payroll , description: This view retrieves county tax information from the archiver. , implementation_dba_data: APPS.PAY_US_COUNTY_ACTION_INFO_V ,
-
View: PAY_US_CITY_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_CITY_ACTION_INFO_V, object_name:PAY_US_CITY_ACTION_INFO_V, status:VALID, product: PAY - Payroll , description: This view retrieves city tax information from the archiver. , implementation_dba_data: APPS.PAY_US_CITY_ACTION_INFO_V ,
-
View: PAYBV_US_CITY_ARCHIVE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_US_CITY_ARCHIVE, object_name:PAYBV_US_CITY_ARCHIVE, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_US_CITY_ARCHIVE ,
-
View: PAY_US_CITY_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_CITY_ACTION_INFO_V, object_name:PAY_US_CITY_ACTION_INFO_V, status:VALID, product: PAY - Payroll , description: This view retrieves city tax information from the archiver. , implementation_dba_data: APPS.PAY_US_CITY_ACTION_INFO_V ,
-
View: PAYBV_US_COUNTY_ARCHIVE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_US_COUNTY_ARCHIVE, object_name:PAYBV_US_COUNTY_ARCHIVE, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_US_COUNTY_ARCHIVE ,
-
View: PAYBV_US_CITY_ARCHIVE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_US_CITY_ARCHIVE, object_name:PAYBV_US_CITY_ARCHIVE, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_US_CITY_ARCHIVE ,
-
VIEW: APPS.PAYBV_US_COUNTY_ARCHIVE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_US_COUNTY_ARCHIVE, object_name:PAYBV_US_COUNTY_ARCHIVE, status:VALID,
-
VIEW: APPS.PAY_US_COUNTY_ACTION_INFO_V
12.1.1
-
VIEW: APPS.PAY_US_CITY_ACTION_INFO_V
12.1.1
-
VIEW: APPS.PAYBV_US_CITY_ARCHIVE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_US_CITY_ARCHIVE, object_name:PAYBV_US_CITY_ARCHIVE, status:VALID,
-
VIEW: APPS.PAY_US_CITY_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_CITY_ACTION_INFO_V, object_name:PAY_US_CITY_ACTION_INFO_V, status:VALID,
-
VIEW: APPS.PAYBV_US_CITY_ARCHIVE
12.2.2
-
View: PAY_US_COUNTY_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_COUNTY_ACTION_INFO_V, object_name:PAY_US_COUNTY_ACTION_INFO_V, status:VALID, product: PAY - Payroll , description: This view retrieves county tax information from the archiver. , implementation_dba_data: APPS.PAY_US_COUNTY_ACTION_INFO_V ,
-
VIEW: APPS.PAY_US_CITY_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_CITY_ACTION_INFO_V, object_name:PAY_US_CITY_ACTION_INFO_V, status:VALID,
-
View: PAYBV_US_COUNTY_ARCHIVE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_US_COUNTY_ARCHIVE, object_name:PAYBV_US_COUNTY_ARCHIVE, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_US_COUNTY_ARCHIVE ,
-
VIEW: APPS.PAY_US_COUNTY_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_COUNTY_ACTION_INFO_V, object_name:PAY_US_COUNTY_ACTION_INFO_V, status:VALID,
-
VIEW: APPS.PAY_US_COUNTY_ACTION_INFO_V
12.2.2
-
VIEW: APPS.PAY_US_CITY_ACTION_INFO_V
12.2.2
-
VIEW: APPS.PAYBV_US_COUNTY_ARCHIVE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_US_COUNTY_ARCHIVE, object_name:PAYBV_US_COUNTY_ARCHIVE, status:VALID,
-
VIEW: APPS.PAYBV_US_CITY_ARCHIVE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_US_CITY_ARCHIVE, object_name:PAYBV_US_CITY_ARCHIVE, status:VALID,
-
VIEW: APPS.PAYBV_US_CITY_ARCHIVE
12.1.1
-
VIEW: APPS.PAYBV_US_COUNTY_ARCHIVE
12.1.1
-
VIEW: APPS.PAY_US_COUNTY_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_COUNTY_ACTION_INFO_V, object_name:PAY_US_COUNTY_ACTION_INFO_V, status:VALID,
-
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. ,