Search Results jai_cmn_rg_exc_inv_nos
Overview
The table JAI_CMN_RG_EXC_INV_NOS is a core setup table within the Oracle E-Business Suite Asia/Pacific Localizations module (JA). Its primary function is to store configuration rules that govern the automated generation of excise invoice numbers. This is a critical component for legal compliance in jurisdictions, such as India, where excise invoicing follows specific regulatory formats and sequences based on various organizational parameters. The table acts as a control mechanism, ensuring that generated invoice numbers are unique, sequential, and correctly aligned with the applicable financial year, location, and transaction type as mandated by local tax authorities.
Key Information Stored
The table's structure is designed to define a unique numbering rule through a combination of key columns. The primary identifier is the system-generated EXC_INV_NUM_ID. The business logic is encapsulated in a unique key constraint (JAI_CMN_RG_EXC_INV_NOS_UK1), which combines several columns to prevent duplicate rules. These columns include ORGANIZATION_ID (inventory organization), LOCATION_ID (HR location), FIN_YEAR (the applicable financial year), TRANSACTION_TYPE, and ORDER_INVOICE_TYPE. Crucially, as indicated by the user's search term, the REGISTER_CODE column is also part of this unique key. This code typically represents a specific excise register or range, allowing for further granularity in numbering sequences based on the type of excisable activity or product category.
Common Use Cases and Queries
The primary use case is the dynamic generation of an excise invoice number during transaction posting (e.g., a shipment). A typical process would query this table to find the active numbering rule. A common SQL pattern for validation or reporting would involve joining to related setup tables:
SELECT ein.organization_id,
ein.location_id,
ein.fin_year,
ein.register_code,
ein.last_used_number
FROM jai_cmn_rg_exc_inv_nos ein,
jai_cmn_fin_years fy
WHERE ein.organization_id = :p_org_id
AND ein.location_id = :p_location_id
AND ein.transaction_type = :p_txn_type
AND ein.fin_year = fy.fin_year
AND SYSDATE BETWEEN fy.start_date AND fy.end_date;
This query finds the valid rule for a given context, ensuring the financial year is current. Administrators may also run queries to audit setup by REGISTER_CODE or to identify gaps in configuration across different organizational units.
Related Objects
JAI_CMN_RG_EXC_INV_NOS maintains documented foreign key relationships with other localization tables, ensuring referential integrity for its setup data.
- JAI_CMN_FIN_YEARS: The table validates the
FIN_YEARcolumn. The relationship joins onJAI_CMN_RG_EXC_INV_NOS.FIN_YEAR = JAI_CMN_FIN_YEARS.FIN_YEARand also referencesORGANIZATION_ID. - HR_LOCATIONS_ALL: The table validates the
LOCATION_IDcolumn. The relationship joins onJAI_CMN_RG_EXC_INV_NOS.LOCATION_ID = HR_LOCATIONS_ALL.LOCATION_ID.
These relationships ensure that numbering rules are defined only for valid financial years and operational locations already established in the system.
-
Table: JAI_CMN_RG_EXC_INV_NOS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_RG_EXC_INV_NOS, object_name:JAI_CMN_RG_EXC_INV_NOS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores setup information to generate excise invoice numbers , implementation_dba_data: JA.JAI_CMN_RG_EXC_INV_NOS ,
-
Table: JAI_CMN_RG_EXC_INV_NOS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_RG_EXC_INV_NOS, object_name:JAI_CMN_RG_EXC_INV_NOS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores setup information to generate excise invoice numbers , implementation_dba_data: JA.JAI_CMN_RG_EXC_INV_NOS ,
-
APPS.JAI_AR_IMPORT_POPU_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.2.2
-
APPS.JAI_AR_TRX_HEADERS_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.2.2
-
APPS.JAI_AR_RCTA_TRIGGER_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.2.2
-
APPS.JAI_AR_IMPORT_SYNC_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.2.2
-
APPS.JAI_AR_RCTA_TRIGGER_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.1.1
-
APPS.JAI_OM_WSH_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.2.2
-
APPS.JAI_AR_RCTLA_TRIGGER_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.2.2
-
APPS.JAI_CMN_SETUP_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.1.1
-
APPS.JAI_AR_RCTLA_TRIGGER_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.1.1
-
APPS.JAI_OM_WSH_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.1.1
-
APPS.JAI_CMN_SETUP_PKG dependencies on JAI_CMN_RG_EXC_INV_NOS
12.2.2
-
APPS.JAI_CMN_SETUP_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.JAI_CMN_RG_EXC_INV_NOS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JAI_CMN_RG_EXC_INV_NOS, status:VALID,
-
VIEW: JA.JAI_CMN_RG_EXC_INV_NOS#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_CMN_RG_EXC_INV_NOS#, status:VALID,
-
SYNONYM: APPS.JAI_CMN_RG_EXC_INV_NOS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JAI_CMN_RG_EXC_INV_NOS, status:VALID,
-
APPS.JAI_CMN_SETUP_PKG SQL Statements
12.2.2
-
VIEW: JA.JAI_CMN_RG_EXC_INV_NOS#
12.2.2
-
PACKAGE BODY: APPS.JAI_CMN_SETUP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_CMN_SETUP_PKG, status:VALID,
-
Table: JAI_CMN_FIN_YEARS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_FIN_YEARS, object_name:JAI_CMN_FIN_YEARS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores information financial year information of organizations , implementation_dba_data: JA.JAI_CMN_FIN_YEARS ,
-
Table: JAI_CMN_FIN_YEARS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_FIN_YEARS, object_name:JAI_CMN_FIN_YEARS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores information financial year information of organizations , implementation_dba_data: JA.JAI_CMN_FIN_YEARS ,
-
TABLE: JA.JAI_CMN_RG_EXC_INV_NOS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_RG_EXC_INV_NOS, object_name:JAI_CMN_RG_EXC_INV_NOS, status:VALID,
-
TABLE: JA.JAI_CMN_RG_EXC_INV_NOS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_RG_EXC_INV_NOS, object_name:JAI_CMN_RG_EXC_INV_NOS, status:VALID,
-
PACKAGE BODY: APPS.JAI_CMN_SETUP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_CMN_SETUP_PKG, status:VALID,
-
PACKAGE BODY: APPS.JAI_AR_RCTA_TRIGGER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_AR_RCTA_TRIGGER_PKG, status:VALID,
-
PACKAGE BODY: APPS.JAI_OM_WSH_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_OM_WSH_PKG, status:VALID,
-
PACKAGE BODY: APPS.JAI_OM_WSH_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_OM_WSH_PKG, status:VALID,
-
PACKAGE BODY: APPS.JAI_AR_TRX_HEADERS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_AR_TRX_HEADERS_PKG, status:VALID,
-
PACKAGE BODY: APPS.JAI_AR_IMPORT_SYNC_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_AR_IMPORT_SYNC_PKG, status:VALID,
-
PACKAGE BODY: APPS.JAI_AR_RCTLA_TRIGGER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_AR_RCTLA_TRIGGER_PKG, status:VALID,
-
PACKAGE BODY: APPS.JAI_AR_IMPORT_POPU_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_AR_IMPORT_POPU_PKG, status:VALID,
-
PACKAGE BODY: APPS.JAI_AR_RCTA_TRIGGER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_AR_RCTA_TRIGGER_PKG, status:VALID,
-
PACKAGE BODY: APPS.JAI_AR_RCTLA_TRIGGER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_AR_RCTLA_TRIGGER_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.JAI_CMN_SETUP_PKG
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
Table: HR_LOCATIONS_ALL
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_LOCATIONS_ALL, object_name:HR_LOCATIONS_ALL, status:VALID, product: PER - Human Resources , description: Work location definitions. , implementation_dba_data: HR.HR_LOCATIONS_ALL ,
-
12.2.2 DBA Data
12.2.2
-
Table: HR_LOCATIONS_ALL
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_LOCATIONS_ALL, object_name:HR_LOCATIONS_ALL, status:VALID, product: PER - Human Resources , description: Work location definitions. , implementation_dba_data: HR.HR_LOCATIONS_ALL ,
-
PACKAGE BODY: APPS.JAI_CMN_SETUP_PKG
12.2.2
-
TABLE: JA.JAI_OM_WSH_LINES_ALL
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_OM_WSH_LINES_ALL, object_name:JAI_OM_WSH_LINES_ALL, status:VALID,
-
TABLE: JA.JAI_OM_WSH_LINES_ALL
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_OM_WSH_LINES_ALL, object_name:JAI_OM_WSH_LINES_ALL, status:VALID,
-
APPS.JAI_CMN_SETUP_PKG dependencies on FND_FILE
12.1.1
-
APPS.JAI_AR_IMPORT_SYNC_PKG SQL Statements
12.2.2
-
APPS.JAI_CMN_SETUP_PKG dependencies on FND_FILE
12.2.2
-
APPS.JAI_AR_TRX_HEADERS_PKG SQL Statements
12.2.2
-
APPS.JAI_AR_RCTA_TRIGGER_PKG SQL Statements
12.1.1