Search Results county_gross
Overview
The PAY_US_COUNTY_ACTION_INFO_V view is a reporting and integration object owned by the APPS schema within the Oracle E-Business Suite Payroll (PAY) product. Its documented purpose is to retrieve United States county-level tax information from the archiver. In Oracle Payroll, county tax results for a payroll run are written to the action information infrastructure as part of the payroll action processing cycle, and this view provides a pre-joined, presentation-ready projection of those archived results. Because it exposes a stable set of typed columns with meaningful aliases, the view is intended to serve as a query surface for payroll reporting, payroll-to-general-ledger reconciliation, and downstream integration extracts, rather than as a transactional entry point. The view is consistent across EBS 12.1.1 and 12.2.2, since the underlying PAY schemas for US payroll taxation were not structurally re-architected between these releases. When a user searches for the term "county_gross," this view is the primary documented object that surfaces that datum as an aliased column.
Underlying Base Objects
The view is defined over two documented referenced objects. The first is the table PAY_ACTION_INFORMATION (presented to the APPS schema as a synonym), which stores the action context, jurisdiction, assignment, and the generic ACTION_INFORMATIONn columns that carry county tax values. The view restricts this table with the predicate ACTION_INFORMATION_CATEGORY = 'US COUNTY', so only county-level tax rows are returned. The second referenced object is the packaged function library PAY_US_EMPLOYEE_PAYSLIP_WEB, specifically the GET_JURISDICTION_NAME function, which resolves a jurisdiction code into a descriptive name. The view therefore combines a filtered relational source with a lookup function invoked per row, giving consumers both the coded and the human-readable jurisdiction identifiers. Because the source is the archiver-oriented action information store, the view reflects payroll results as archived at the conclusion of processing rather than live, in-flight calculations.
Key Columns
EFFECTIVE_DATE— the effective date of the county tax action line.JURISDICTION_CODE— the county taxing authority code.JURISDICTION_NAME— the descriptive name resolved viaGET_JURISDICTION_NAME.ACTION_NUMBER— aliased from ACTION_CONTEXT_ID; identifies the payroll action context.ASSIGNMENT_ID— the assignment to which the county tax result belongs.COUNTY_GROSS— the county gross amount, derived from ACTION_INFORMATION7 and converted with TO_NUMBER; this is the column most directly associated with the search term "county_gross."COUNTY_WITHHELD— tax withheld at the county level (ACTION_INFORMATION1).COUNTY_SUBJ_WHABLEandCOUNTY_SUBJ_NWABLE— subject amounts for withholding-eligible and non-withholding-eligible components (ACTION_INFORMATION2 and ACTION_INFORMATION3).COUNTY_PRE_TAX_REDNS— pre-tax reductions (ACTION_INFORMATION4).COUNTY_SUBJECT— combined subject amount, computed as withholding-eligible plus non-withholding-eligible subject with NVL zero handling.COUNTY_REDUCED_SUBJECT— withholding-eligible subject reduced by pre-tax reductions.HEAD_TAX_LIABILITYandHEAD_TAX_WITHHELD— head tax liability and withheld amounts (ACTION_INFORMATION5 and ACTION_INFORMATION6).NON_RESIDENT_FLAG— non-resident indicator sourced from ACTION_INFORMATION30.
Common Use Cases and Queries
Typical uses include county tax reconciliation for a payroll period, head tax reporting, and non-resident tax analysis by assignment. A representative query retrieving county gross and withheld amounts for an action context is:
SELECT action_number, assignment_id, jurisdiction_code, jurisdiction_name, county_gross, county_withheld FROM pay_us_county_action_info_v WHERE action_number = :p_action_number;SELECT jurisdiction_code, SUM(county_gross) county_gross, SUM(county_withheld) county_withheld FROM pay_us_county_action_info_v GROUP BY jurisdiction_code;SELECT assignment_id, head_tax_liability, head_tax_withheld, non_resident_flag FROM pay_us_county_action_info_v WHERE non_resident_flag IS NOT NULL;
Because the derived numeric columns apply TO_NUMBER conversions without explicit error handling, consumers should be aware that non-numeric or null source values may affect results, and aggregation queries should generally be filtered by action context or effective date to bound the data set.
-
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: 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: APPS.PAY_US_COUNTY_ACTION_INFO_V
12.1.1
-
VIEW: APPS.PAYBV_US_COUNTY_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.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: 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.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.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.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,
-
APPS.PAY_ARCHIVER_REPORT_PKG SQL Statements
12.1.1
-
APPS.PAY_ARCHIVER_REPORT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PAY_ARCHIVER_REPORT_PKG
12.1.1
-
PACKAGE BODY: APPS.PAY_ARCHIVER_REPORT_PKG
12.2.2
-
APPS.PAY_ARCHIVER_REPORT_PKG dependencies on PAY_US_COUNTY_ACTION_INFO_V
12.1.1
-
APPS.PAY_ARCHIVER_REPORT_PKG dependencies on PAY_US_COUNTY_ACTION_INFO_V
12.2.2
-
APPS.PAY_ARCHIVER_REPORT_PKG dependencies on HR_UTILITY
12.1.1
-
APPS.PAY_ARCHIVER_REPORT_PKG dependencies on HR_UTILITY
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. ,