Search Results je_it_list_lines_all
Overview
The JE_IT_LIST_LINES_ALL table resides in the JE schema and belongs to the Oracle E-Business Suite European Localizations module (product code JE). It stores the detail-level extract data used to produce the Italian Annual Supplier and Customer Listing (the Elenchi Intrastat-adjacent "Spesometro"-style annual communication of VAT-relevant transactions to the Italian tax authority). Each row represents a single reporting line derived from a source transaction or transaction distribution, capturing the taxable base, VAT amount, and classification attributes required by the Italian declaration format.
From a Data Vault modeling perspective, the mined foreign-key structure suggests this object behaves as a satellite (or, given the presence of descriptive measure columns tied to a transaction grain, potentially a link-satellite hybrid). It carries descriptive and financial attributes rather than serving as a pure hub of business keys, which supports treating it as a satellite dependent on a transaction-party link.
Key Information Stored
The table contains 34 documented columns at the 12.2.2 schema level. The most operationally significant columns are:
- PERIOD_NAME — the accounting period governing the extract line.
- ORG_ID — the operating unit that owns the reporting transaction.
- PARTY_ID — the supplier or customer party to which the listed transaction pertains.
- TRX_TYPE_CODE / TRX_TYPE_ID — the classification of the source transaction (e.g., invoice, credit note);
TRX_TYPE_IDis a foreign key toIGI_EXP_TRX_TYPE. - DOC_SEQ_ID / DOC_SEQ_NUM — the document sequence identifier and number used to reference the source document.
- TRX_DATE, TRX_ID, TRX_NUM, TRX_DIST_ID — the date, transaction identifier, transaction number, and distribution identifier of the underlying transaction line.
- TAXABLE_AMT, VAT_AMT, NON_TAXABLE_AMT, EXEMPT_AMT — the standard reporting amount buckets for the current document.
- TAXABLE_VAT_AMT, TAXABLE_VAT_INV_AMT — VAT-specific taxable and invoiced taxable amounts.
- CM_TAXABLE_AMT, CM_VAT_AMT, CM_NON_TAXABLE_AMT, CM_EXEMPT_AMT, CM_TAXABLE_VAT_AMT, CM_TAXABLE_VAT_INV_AMT — the corresponding credit-memo (correction) amount buckets for the same categories.
- YEAR_OF_DECLARATION — the declaration year to which the line belongs.
- VAT_REPORTING_ENTITY_ID — a foreign key to
JG_ZZ_VAT_REP_ENTITIES, identifying the VAT reporting entity. - TAX_RATE_ID — the tax rate associated with the line.
- LAST_UPDATE_DATE, CREATION_DATE, CREATED_BY, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard WHO audit columns.
The documented metadata does not identify an explicit single-column surrogate primary key; business-key candidates would naturally comprise the combination of PERIOD_NAME, ORG_ID, TRX_ID, TRX_DIST_ID, and YEAR_OF_DECLARATION, which together should uniquely identify a reported line.
Common Use Cases and Queries
The table is queried primarily for Italian annual listing reporting, reconciliation against subledger transactions, and audit of VAT declaration amounts. Typical SQL patterns filter by declaration year, operating unit, and party:
- Extracting declaration lines for a given year and operating unit:
SELECT * FROM JE.JE_IT_LIST_LINES_ALL WHERE YEAR_OF_DECLARATION = :year AND ORG_ID = :org_id; - Summarizing VAT by party:
SELECT PARTY_ID, SUM(TAXABLE_AMT) taxable, SUM(VAT_AMT) vat FROM JE.JE_IT_LIST_LINES_ALL WHERE YEAR_OF_DECLARATION = :year GROUP BY PARTY_ID; - Reconciling credit-memo corrections against originals by joining on
TRX_DIST_IDand comparing CM_* amounts to base amounts. - Reporting by VAT reporting entity:
SELECT VAT_REPORTING_ENTITY_ID, SUM(TAXABLE_VAT_INV_AMT) FROM JE.JE_IT_LIST_LINES_ALL GROUP BY VAT_REPORTING_ENTITY_ID;
Related Objects
The foreign-key metadata anchors this table to the following related objects:
- IGI_EXP_TRX_TYPE — referenced via
JE_IT_LIST_LINES_ALL.TRX_TYPE_ID = IGI_EXP_TRX_TYPE.TRX_TYPE_ID; classifies transaction types. - JG_ZZ_VAT_REP_ENTITIES — referenced via
JE_IT_LIST_LINES_ALL.VAT_REPORTING_ENTITY_ID = JG_ZZ_VAT_REP_ENTITIES.VAT_REPORTING_ENTITY_ID; defines the VAT reporting entity. - Related JE Italian localization extract objects (header-level listing tables and concurrent program output) consume the lines produced here.
- Underlying subledger sources such as AP/AR transaction and distribution tables supply the TRX_ID and TRX_DIST_ID values used for drill-down.
-
Table: JE_IT_LIST_LINES_ALL
12.1.1
owner:JE, object_type:TABLE, fnd_design_data:JE.JE_IT_LIST_LINES_ALL, object_name:JE_IT_LIST_LINES_ALL, status:VALID, product: JE - European Localizations , description: JE_IT_LIST_LINES_ALL table contains Italian Annual Supplier and Customer listing extract detail data , implementation_dba_data: JE.JE_IT_LIST_LINES_ALL ,
-
Table: JE_IT_LIST_LINES_ALL
12.2.2
owner:JE, object_type:TABLE, fnd_design_data:JE.JE_IT_LIST_LINES_ALL, object_name:JE_IT_LIST_LINES_ALL, status:VALID, product: JE - European Localizations , description: JE_IT_LIST_LINES_ALL table contains Italian Annual Supplier and Customer listing extract detail data , implementation_dba_data: JE.JE_IT_LIST_LINES_ALL ,
-
SYNONYM: APPS.JE_IT_LIST_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JE_IT_LIST_LINES_ALL, status:VALID,
-
SYNONYM: APPS.JE_IT_LIST_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JE_IT_LIST_LINES_ALL, status:VALID,
-
VIEW: JE.JE_IT_LIST_LINES_ALL#
12.2.2
owner:JE, object_type:VIEW, object_name:JE_IT_LIST_LINES_ALL#, status:VALID,
-
VIEW: JE.JE_IT_LIST_LINES_ALL#
12.2.2
-
TABLE: JE.JE_IT_LIST_LINES_ALL
12.1.1
owner:JE, object_type:TABLE, fnd_design_data:JE.JE_IT_LIST_LINES_ALL, object_name:JE_IT_LIST_LINES_ALL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
TABLE: JE.JE_IT_LIST_LINES_ALL
12.2.2
owner:JE, object_type:TABLE, fnd_design_data:JE.JE_IT_LIST_LINES_ALL, object_name:JE_IT_LIST_LINES_ALL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.JE_IT_LISTING_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JE_IT_LISTING_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.JE_IT_LISTING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JE_IT_LISTING_PKG, status:VALID,
-
APPS.JE_IT_LISTING_PKG SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.JE_IT_LISTING_PKG
12.1.1
-
APPS.JE_IT_LISTING_PKG dependencies on JE_IT_LIST_LINES_ALL
12.1.1
-
APPS.JE_IT_LISTING_PKG dependencies on JE_IT_LIST_LINES_ALL
12.1.1
-
eTRM - JE Tables and Views
12.1.1
-
eTRM - JE Tables and Views
12.2.2
-
APPS.JE_IT_LISTING_PKG dependencies on HZ_CUST_ACCT_SITES_ALL
12.1.1
-
APPS.JE_IT_LISTING_PKG dependencies on HZ_CUST_SITE_USES_ALL
12.1.1
-
APPS.JE_IT_LISTING_PKG dependencies on AP_SUPPLIER_SITES_ALL
12.1.1
-
APPS.JE_IT_LISTING_PKG dependencies on HZ_PARTIES
12.1.1
-
APPS.JE_IT_LISTING_PKG dependencies on AP_SUPPLIERS
12.1.1
-
APPS.JE_IT_LISTING_PKG dependencies on HZ_CUST_ACCOUNTS
12.1.1
-
APPS.JE_IT_LISTING_PKG dependencies on JE_IT_LIST_PARTIES_ALL
12.1.1
-
eTRM - JE Tables and Views
12.1.1
-
APPS.JE_IT_LISTING_PKG dependencies on JE_IT_LIST_HDR_ALL
12.1.1
-
eTRM - JE Tables and Views
12.2.2
-
APPS.JE_IT_LISTING_PKG dependencies on FND_LOG
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.JE_IT_LISTING_PKG dependencies on JE_IT_LISTING_PKG
12.1.1
-
12.1.1 DBA Data
12.1.1