Search Results jg_zz_vat_rep_status
Overview
JG_ZZ_VAT_REP_STATUS is a table in the JG (Regional Localizations) product schema of Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. It stores the reporting status of a Tax Registration Number (TRN) by tax calendar period and by source, effectively acting as the control record that tracks where a given VAT reporting entity stands within the reporting lifecycle for a specific period. The lifecycle stages captured are selection, allocation, final reporting, and archival, each represented by a dedicated status flag, process identifier, and process date. The table therefore serves as the transactional backbone that links a reporting entity, its reporting period, and the concurrent programs that processed it.
From a Data Vault modeling perspective, the mined foreign-key structure suggests a satellite-leaning classification. The table carries descriptive state (status flags, process dates, amounts) keyed by a reporting entity and period combination, and it is referenced by downstream detail-fact style tables. This is a heuristic suggestion rather than a documented Oracle position, but it is useful when designing integration or warehouse extraction patterns.
Key Information Stored
The primary key is the surrogate identifier REPORTING_STATUS_ID, enforced by constraint JG_ZZ_VAT_REP_STATUS_PK. Two unique indexes document the business-key candidates: JG_ZZ_VAT_REP_STATUS_U1 on REPORTING_STATUS_ID, and JG_ZZ_VAT_REP_STATUS_U2 on the composite VAT_REPORTING_ENTITY_ID, TAX_CALENDAR_PERIOD, and SOURCE. The composite unique index is the more meaningful natural key, since it defines the grain as one row per reporting entity, period, and source.
Among the 33 documented columns, the most significant are:
VAT_REPORTING_ENTITY_ID— identifies the reporting entity to which the status record belongs.TAX_REGISTRATION_NUMBER— the TRN whose reporting status is being tracked.TAX_CALENDAR_NAME,TAX_CALENDAR_YEAR,TAX_CALENDAR_PERIOD— the tax calendar and period context.PERIOD_START_DATEandPERIOD_END_DATE— the date range of the reporting period.SOURCE— distinguishes the origin or type of data being reported.SELECTION_STATUS_FLAG,ALLOCATION_STATUS_FLAG,FINAL_REPORTING_STATUS_FLAG,ARCHIVAL_STATUS_FLAG— the four lifecycle status indicators.SELECTION_PROCESS_ID,ALLOCATION_PROCESS_ID,FINAL_REPORTING_PROCESS_ID,ARCHIVAL_PROCESS_ID— process identifiers for each stage.SELECTION_PROCESS_DATE,ALLOCATION_PROCESS_DATE,FINAL_REPORTING_PROCESS_DATE,ARCHIVAL_PROCESS_DATE— timestamps for each processing stage.REQUEST_ID,PROGRAM_ID,PROGRAM_APPLICATION_ID,PROGRAM_LOGIN_ID— concurrent program execution context.CREDIT_BALANCE_AMT— an amount associated with the reporting status record.
Standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) are also present.
Common Use Cases and Queries
The table is typically queried to determine whether a reporting entity's VAT submission for a given period has completed each lifecycle stage. A common pattern joins the entity and calendar columns to filter incomplete reporting cycles:
- Identifying periods where
FINAL_REPORTING_STATUS_FLAGis not set, to drive follow-up processing. - Auditing the timing of each stage by comparing the four process-date columns.
- Tracing a specific run back to the concurrent request using
REQUEST_IDjoined toFND_CONCURRENT_REQUESTS. - Reconciling downstream report and transaction detail rows against their parent status record via
REPORTING_STATUS_ID.
Sample query skeleton:
SELECT s.taX_registration_number,
s.tax_calendar_period,
s.source,
s.final_reporting_status_flag
FROM jg.jg_zz_vat_rep_status s
WHERE s.vat_reporting_entity_id = :entity_id
AND s.tax_calendar_year = :year
Related Objects
The foreign keys documented in the ETRM metadata establish the following primary relationships:
JG_ZZ_VAT_REP_ENTITIES— joined onVAT_REPORTING_ENTITY_IDto obtain entity and registration details.FND_CONCURRENT_REQUESTS— joined onREQUEST_IDto trace the program run that created the status record.FND_LOGINS— joined onPROGRAM_LOGIN_IDto identify the login session of the program.JG_ZZ_VAT_FINAL_REPORTS— references this table onREPORTING_STATUS_ID, holding the finalized report output.JG_ZZ_VAT_TRX_DETAILS— references this table onREPORTING_STATUS_ID, holding the transaction-level detail associated with the status record.
Together these objects form the VAT reporting chain: entity definition, status control, transaction detail, and final report output, all anchored by the reporting status identifier.
-
Table: JG_ZZ_VAT_REP_STATUS
12.1.1
owner:JG, object_type:TABLE, fnd_design_data:JG.JG_ZZ_VAT_REP_STATUS, object_name:JG_ZZ_VAT_REP_STATUS, status:VALID, product: JG - Regional Localizations , description: Stores the reporting status of the Tax Registration Number by period and source. , implementation_dba_data: JG.JG_ZZ_VAT_REP_STATUS ,
-
Table: JG_ZZ_VAT_REP_STATUS
12.2.2
owner:JG, object_type:TABLE, fnd_design_data:JG.JG_ZZ_VAT_REP_STATUS, object_name:JG_ZZ_VAT_REP_STATUS, status:VALID, product: JG - Regional Localizations , description: Stores the reporting status of the Tax Registration Number by period and source. , implementation_dba_data: JG.JG_ZZ_VAT_REP_STATUS ,
-
APPS.JG_ZZ_JOURNAL_AR_PKG SQL Statements
12.2.2
-
APPS.JG_ZZ_VAT_YEARLY_EXT_PKG SQL Statements
12.2.2
-
APPS.JG_ZZ_SUMMARY_ALL_PKG SQL Statements
12.2.2
-
VIEW: JG.JG_ZZ_VAT_REP_STATUS#
12.2.2
owner:JG, object_type:VIEW, object_name:JG_ZZ_VAT_REP_STATUS#, status:VALID,
-
Table: JG_ZZ_VAT_REP_ENTITIES
12.1.1
owner:JG, object_type:TABLE, fnd_design_data:JG.JG_ZZ_VAT_REP_ENTITIES, object_name:JG_ZZ_VAT_REP_ENTITIES, status:VALID, product: JG - Regional Localizations , description: Captures configuration information for legal entities for VAT reporting. , implementation_dba_data: JG.JG_ZZ_VAT_REP_ENTITIES ,
-
Table: JG_ZZ_VAT_REP_ENTITIES
12.2.2
owner:JG, object_type:TABLE, fnd_design_data:JG.JG_ZZ_VAT_REP_ENTITIES, object_name:JG_ZZ_VAT_REP_ENTITIES, status:VALID, product: JG - Regional Localizations , description: Captures configuration information for legal entities for VAT reporting. , implementation_dba_data: JG.JG_ZZ_VAT_REP_ENTITIES ,
-
APPS.JG_ZZ_SUMMARY_ALL_PKG SQL Statements
12.1.1
-
APPS.JG_ZZ_VAT_REP_FINAL_REPORTING SQL Statements
12.1.1
-
APPS.JG_ZZ_JOURNAL_AR_PKG SQL Statements
12.1.1
-
APPS.JG_ZZ_VAT_REP_UTILITY SQL Statements
12.1.1
-
APPS.JG_ZZ_VAT_REP_UTILITY SQL Statements
12.2.2
-
SYNONYM: APPS.JG_ZZ_VAT_REP_STATUS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JG_ZZ_VAT_REP_STATUS, status:VALID,
-
APPS.JG_ZZ_VAT_REP_FINAL_REPORTING SQL Statements
12.2.2
-
APPS.JG_ZZ_SUMMARY_AP_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.JG_ZZ_VAT_REP_STATUS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JG_ZZ_VAT_REP_STATUS, status:VALID,
-
VIEW: JG.JG_ZZ_VAT_REP_STATUS#
12.2.2
-
APPS.JG_ZZ_JOURNAL_AP_PKG SQL Statements
12.1.1
-
APPS.JG_ZZ_JOURNAL_AP_PKG SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.JG_ZZ_JOURNAL_AP_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JG_ZZ_JOURNAL_AP_PKG, status:VALID,
-
PACKAGE: APPS.JG_ZZ_JOURNAL_AR_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JG_ZZ_JOURNAL_AR_PKG, status:VALID,
-
APPS.JE_ES_MODELO_EXT_PKG SQL Statements
12.2.2
-
PACKAGE: APPS.JG_ZZ_VAT_SELECTION_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JG_ZZ_VAT_SELECTION_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.JG_ZZ_VAT_ALLOC_PRC_PKG SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
Table: JG_ZZ_VAT_FINAL_REPORTS
12.1.1
owner:JG, object_type:TABLE, fnd_design_data:JG.JG_ZZ_VAT_FINAL_REPORTS, object_name:JG_ZZ_VAT_FINAL_REPORTS, status:VALID, product: JG - Regional Localizations , description: Stores details of final print generation of reports, by entity and period , implementation_dba_data: JG.JG_ZZ_VAT_FINAL_REPORTS ,
-
Table: JG_ZZ_VAT_FINAL_REPORTS
12.2.2
owner:JG, object_type:TABLE, fnd_design_data:JG.JG_ZZ_VAT_FINAL_REPORTS, object_name:JG_ZZ_VAT_FINAL_REPORTS, status:VALID, product: JG - Regional Localizations , description: Stores details of final print generation of reports, by entity and period , implementation_dba_data: JG.JG_ZZ_VAT_FINAL_REPORTS ,
-
Table: JG_ZZ_VAT_TRX_DETAILS
12.2.2
owner:JG, object_type:TABLE, fnd_design_data:JG.JG_ZZ_VAT_TRX_DETAILS, object_name:JG_ZZ_VAT_TRX_DETAILS, status:VALID, product: JG - Regional Localizations , description: Contains AP, AR and GL Transactions selected for VAT reporting , implementation_dba_data: JG.JG_ZZ_VAT_TRX_DETAILS ,
-
Table: JG_ZZ_VAT_TRX_DETAILS
12.1.1
owner:JG, object_type:TABLE, fnd_design_data:JG.JG_ZZ_VAT_TRX_DETAILS, object_name:JG_ZZ_VAT_TRX_DETAILS, status:VALID, product: JG - Regional Localizations , description: Contains AP, AR and GL Transactions selected for VAT reporting , implementation_dba_data: JG.JG_ZZ_VAT_TRX_DETAILS ,
-
PACKAGE: APPS.JG_ZZ_JOURNAL_AP_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JG_ZZ_JOURNAL_AP_PKG, status:VALID,
-
PACKAGE: APPS.JG_ZZ_VAT_PRE_REP_PROC_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JG_ZZ_VAT_PRE_REP_PROC_PKG, status:VALID,
-
PACKAGE BODY: APPS.JG_ZZ_COMMON_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JG_ZZ_COMMON_PKG, status:VALID,
-
PACKAGE BODY: APPS.JG_ZZ_AUDIT_AR_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JG_ZZ_AUDIT_AR_PKG, status:VALID,
-
PACKAGE: APPS.JG_ZZ_JOURNAL_AR_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JG_ZZ_JOURNAL_AR_PKG, status:VALID,
-
PACKAGE: APPS.JG_ZZ_VAT_PRE_REP_PROC_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JG_ZZ_VAT_PRE_REP_PROC_PKG, status:VALID,
-
PACKAGE BODY: APPS.JG_ZZ_COMMON_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JG_ZZ_COMMON_PKG, status:VALID,
-
PACKAGE BODY: APPS.JG_ZZ_AUDIT_AR_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JG_ZZ_AUDIT_AR_PKG, status:VALID,
-
PACKAGE BODY: APPS.JG_ZZ_TURNOVER_AR_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JG_ZZ_TURNOVER_AR_PKG, status:VALID,
-
PACKAGE BODY: APPS.JG_ZZ_VAT_REP_FINAL_REPORTING
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JG_ZZ_VAT_REP_FINAL_REPORTING, status:VALID,
-
PACKAGE: APPS.JG_ZZ_VAT_SELECTION_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JG_ZZ_VAT_SELECTION_PKG, status:VALID,
-
PACKAGE BODY: APPS.JG_ZZ_VAT_REP_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JG_ZZ_VAT_REP_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.JG_ZZ_JOURNAL_AR_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JG_ZZ_JOURNAL_AR_PKG, status:VALID,
-
PACKAGE BODY: APPS.JG_ZZ_VAT_REP_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JG_ZZ_VAT_REP_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.JE_ES_MODELO_EXT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JE_ES_MODELO_EXT_PKG, status:VALID,