Search Results zx_sync_hdr_input_v
Overview
ZX_SYNC_HDR_INPUT_V is a seeded Oracle E-Business Suite view owned by the APPS schema and registered under the FND – Application Object Library product. Its status is VALID in both 12.1.1 and 12.2.2 environments. Despite the FND ownership classification, the view is functionally part of the E-Business Tax (ZX) synchronization infrastructure: the "SYNC_HDR_INPUT" naming convention indicates it serves as a header-level input staging view for the tax synchronization engine that moves transaction tax data between the ETRM and the transaction tables.
The view presents a unified header projection combining tax determinants, transaction identifiers, and a wide set of provider-specific header extension attributes. Rather than exposing foreign keys alone, it flattens pre-processing context and external provider metadata into a single consumable structure. This makes it suitable for downstream concurrent programs, tax synchronization flows, and diagnostic reporting where a consolidated header record is required without repeated joins.
Underlying Base Objects
The documented view metadata identifies three referenced base objects, all exposed to APPS as synonyms:
- ZX_LINES_DET_FACTORS – Supplies line-level tax determinant factors such as internal organization, event class mapping, transaction identifiers, tax event type, and document sequencing values.
- ZX_PRVDR_HDR_EXTNS_GT – A global temporary table holding external tax provider header extension values, including the numbered varchar, number, and date attribute columns.
- ZX_TRX_PRE_PROC_OPTIONS_GT – A global temporary table carrying tax pre-processing options, contributing legal entity and establishment identifiers along with application short name context.
Because two of the three sources are global temporary tables, the view is session-scoped in practice: rows are only meaningful within the session that populated the temporary tables, typically a tax synchronization concurrent request. The join aligns transaction header determinants with provider extensions and pre-processing option values on common keys such as TRX_ID and EVENT_CLASS_MAPPING_ID.
Key Columns
- INTERNAL_ORGANIZATION_ID – Operating unit / organization owning the transaction.
- LEGAL_ENTITY_NUMBER and ESTABLISHMENT_NUMBER – Legal entity and establishment identifiers used in tax determination.
- EVENT_CLASS_MAPPING_ID – Maps the transaction to its tax event class.
- TRX_ID, TRX_NUMBER, TRX_DESCRIPTION, TRX_DUE_DATE – Core transaction header identifiers and descriptive attributes.
- APPLICATION_SHORT_NAME – Source application (for example, AR or AP).
- TAX_EVENT_TYPE_CODE – Tax event type driving determination logic.
- DOC_SEQ_VALUE – Document sequence value assigned to the transaction.
- HEADER_EXT_VARCHAR_ATTRIBUTE1–30 – Provider-supplied character header extensions.
- HEADER_EXT_NUMBER_ATTRIBUTE1–10 – Provider-supplied numeric header extensions.
- HEADER_EXT_DATE_ATTRIBUTE… – Provider-supplied date header extensions.
Common Use Cases and Queries
Typical uses include debugging tax synchronization runs, validating that header extensions are correctly passed from the provider interface, and auditing determinant values applied to a transaction.
To inspect header determinants for a specific transaction:
SELECT trx_number, tax_event_type_code, legal_entity_number, establishment_number FROM zx_sync_hdr_input_v WHERE trx_id = :p_trx_id;
To review provider header extensions:
SELECT trx_id, header_ext_varchar_attribute1, header_ext_number_attribute1 FROM zx_sync_hdr_input_v WHERE internal_organization_id = :p_org_id;
Because the view depends on session-level global temporary tables, queries outside the populating session generally return no rows; it should therefore be used within the synchronization flow or immediately after the driving request completes in the same session.
-
View: ZX_SYNC_HDR_INPUT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_SYNC_HDR_INPUT_V, object_name:ZX_SYNC_HDR_INPUT_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_SYNC_HDR_INPUT_V ,
-
View: ZX_SYNC_HDR_INPUT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_SYNC_HDR_INPUT_V, object_name:ZX_SYNC_HDR_INPUT_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_SYNC_HDR_INPUT_V ,
-
SYNONYM: APPS.ZX_TRX_PRE_PROC_OPTIONS_GT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ZX_TRX_PRE_PROC_OPTIONS_GT, status:VALID,
-
PACKAGE BODY: APPS.ZX_VERTEX_TAX_SERVICE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ZX_VERTEX_TAX_SERVICE_PKG, status:VALID,
-
SYNONYM: APPS.ZX_PRVDR_HDR_EXTNS_GT
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ZX_PRVDR_HDR_EXTNS_GT, status:VALID,
-
SYNONYM: APPS.ZX_PRVDR_HDR_EXTNS_GT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ZX_PRVDR_HDR_EXTNS_GT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.ZX_TRX_PRE_PROC_OPTIONS_GT
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ZX_TRX_PRE_PROC_OPTIONS_GT, status:VALID,
-
PACKAGE BODY: APPS.ZX_VERTEX_TAX_SERVICE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ZX_VERTEX_TAX_SERVICE_PKG, status:VALID,
-
PACKAGE BODY: APPS.ZX_TAXWARE_TAX_SERVICE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ZX_TAXWARE_TAX_SERVICE_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.ZX_TAXWARE_TAX_SERVICE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ZX_TAXWARE_TAX_SERVICE_PKG, status:VALID,
-
VIEW: APPS.ZX_SYNC_HDR_INPUT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_SYNC_HDR_INPUT_V, object_name:ZX_SYNC_HDR_INPUT_V, status:VALID,
-
VIEW: APPS.ZX_SYNC_HDR_INPUT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_SYNC_HDR_INPUT_V, object_name:ZX_SYNC_HDR_INPUT_V, status:VALID,
-
SYNONYM: APPS.ZX_LINES_DET_FACTORS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ZX_LINES_DET_FACTORS, status:VALID,
-
APPS.ZX_VERTEX_TAX_SERVICE_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.ZX_LINES_DET_FACTORS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ZX_LINES_DET_FACTORS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.ZX_TAXWARE_TAX_SERVICE_PKG SQL Statements
12.1.1
-
APPS.ZX_TAXWARE_TAX_SERVICE_PKG SQL Statements
12.2.2
-
APPS.ZX_VERTEX_TAX_SERVICE_PKG SQL Statements
12.2.2
-
APPS.ZX_VERTEX_TAX_SERVICE_PKG dependencies on ZX_SYNC_HDR_INPUT_V
12.2.2
-
APPS.ZX_VERTEX_TAX_SERVICE_PKG dependencies on ZX_SYNC_HDR_INPUT_V
12.1.1
-
APPS.ZX_TAXWARE_TAX_SERVICE_PKG dependencies on ZX_SYNC_HDR_INPUT_V
12.1.1
-
APPS.ZX_TAXWARE_TAX_SERVICE_PKG dependencies on ZX_SYNC_HDR_INPUT_V
12.2.2
-
PACKAGE BODY: APPS.ZX_VERTEX_TAX_SERVICE_PKG
12.1.1
-
PACKAGE BODY: APPS.ZX_VERTEX_TAX_SERVICE_PKG
12.2.2
-
PACKAGE BODY: APPS.ZX_TAXWARE_TAX_SERVICE_PKG
12.1.1
-
PACKAGE BODY: APPS.ZX_TAXWARE_TAX_SERVICE_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
APPS.ZX_TAXWARE_TAX_SERVICE_PKG dependencies on FND_LOG
12.1.1
-
APPS.ZX_TAXWARE_TAX_SERVICE_PKG dependencies on FND_LOG
12.2.2
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
APPS.ZX_VERTEX_TAX_SERVICE_PKG dependencies on FND_LOG
12.1.1
-
APPS.ZX_VERTEX_TAX_SERVICE_PKG dependencies on FND_LOG
12.2.2
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,