Search Results paybv_us_county_archive
Overview
The PAYBV_US_COUNTY_ARCHIVE view is a read-only reporting object owned by the APPS schema within the Oracle E-Business Suite Payroll (PAY) module. It is designed to expose archived United States county-level tax information associated with employee assignment actions. The view consolidates county tax withholding, subject wages, and head tax liability data that Oracle Payroll captures during the payroll action information lifecycle. Because the view is defined WITH READ ONLY, it is intended strictly for query and reporting purposes and cannot be used to modify underlying payroll data. It is valid in both Oracle EBS 12.1.1 and 12.2.2.
In practice, this view serves as a denormalized, human-readable window into the US COUNTY action information category, translating opaque numeric action-information slots into meaningfully named columns suitable for audit reports, tax remittance extracts, and payroll reconciliation queries.
Underlying Base Objects
The view is defined over the synonym PAY_ACTION_INFORMATION (base table typically owned by the APPLSYS or PAY schema) and invokes two packaged PL/SQL functions:
- PAY_ACTION_INFORMATION (PAI) — The primary base object. The view filters this table on
ACTION_INFORMATION_CATEGORY = 'US COUNTY', selecting only rows relevant to county tax actions. The action-information slotsACTION_INFORMATION1throughACTION_INFORMATION7, along withACTION_INFORMATION30, are mapped to named county tax columns. - PAY_US_EMPLOYEE_PAYSLIP_WEB.GET_JURISDICTION_NAME — A package function that resolves the jurisdiction code into a descriptive jurisdiction name.
- PAY_AC_UTIL.GET_STATE_ABBREV — A package function returning the two-character state abbreviation derived from the jurisdiction code.
Because two PL/SQL functions are called per row, query performance depends on the volume of US COUNTY action-information records being evaluated.
Key Columns
- ACTION_NUMBER — Sourced from
ACTION_CONTEXT_ID; identifies the archived action context. - TAX_UNIT_ID / EFFECTIVE_DATE / ASSIGNMENT_ID — Link the county tax record to the tax unit, the effective date, and the specific employee assignment.
- JURISDICTION_CODE / JURISDICTION_NAME / STATE — The county jurisdiction identifier plus resolved descriptive name and state abbreviation.
- COUNTY_GROSS — From
ACTION_INFORMATION7; the county gross wage amount. - COUNTY_WITHHELD — From
ACTION_INFORMATION1; county tax withheld. - COUNTY_SUBJ_WHABLE / COUNTY_SUBJ_NWABLE — Subject-withholdable and subject-non-withholdable wages (slots 2 and 3).
- COUNTY_PRE_TAX_REDNS — Pre-tax deductions from slot 4.
- COUNTY_SUBJECT — Computed as withholdable plus non-withholdable subject wages.
- COUNTY_REDUCED_SUBJECT — Computed as withholdable subject less pre-tax deductions.
- HEAD_TAX_LIABILITY / HEAD_TAX_WITHHELD — Head tax amounts from slots 5 and 6.
- NON_RESIDENT_FLAG — From
ACTION_INFORMATION30; indicates non-resident tax treatment.
All numeric slots are wrapped in NVL(...,0) and TO_NUMBER to guarantee numeric output.
Common Use Cases and Queries
Typical scenarios include generating county tax withholding reconciliations, preparing non-resident head-tax reports, and auditing archived payroll actions by assignment.
SELECT ACTION_NUMBER, ASSIGNMENT_ID, EFFECTIVE_DATE,
JURISDICTION_NAME, STATE, COUNTY_GROSS,
COUNTY_WITHHELD, HEAD_TAX_WITHHELD
FROM APPS.PAYBV_US_COUNTY_ARCHIVE
WHERE ASSIGNMENT_ID = :p_assignment_id
AND EFFECTIVE_DATE BETWEEN :p_start AND :p_end;
SELECT STATE, SUM(COUNTY_WITHHELD) TOTAL_WITHHELD FROM APPS.PAYBV_US_COUNTY_ARCHIVE WHERE NON_RESIDENT_FLAG = 'Y' GROUP BY STATE;
-
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: 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 ,
-
SYNONYM: PUBLIC.PAYBV_US_COUNTY_ARCHIVE
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PAYBV_US_COUNTY_ARCHIVE, status:VALID,
-
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,
-
PACKAGE: APPS.PAY_AC_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PAY_AC_UTIL, status:VALID,
-
PACKAGE: APPS.PAY_AC_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PAY_AC_UTIL, status:VALID,
-
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,
-
PACKAGE: APPS.PAY_US_EMPLOYEE_PAYSLIP_WEB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PAY_US_EMPLOYEE_PAYSLIP_WEB, status:VALID,
-
PACKAGE: APPS.PAY_US_EMPLOYEE_PAYSLIP_WEB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PAY_US_EMPLOYEE_PAYSLIP_WEB, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.PAY_ACTION_INFORMATION
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ACTION_INFORMATION, status:VALID,
-
SYNONYM: APPS.PAY_ACTION_INFORMATION
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ACTION_INFORMATION, status:VALID,
-
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. ,
-
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. ,