Search Results statement_group_id
Overview
The table AMW.AMW_FIN_STMNT_ITEMS_TL is a translation (TL) table within the Oracle E-Business Suite Financial Statement Generator / AMW schema. It stores the language-dependent names of financial statement items that are imported into the AMW module. Because Oracle EBS implements multilingual support through paired base and translation tables, the base table holds the source-language records, while this TL table holds one row per installed language, each carrying the translated NAME of a given financial item. The table resides in the APPS_TS_TX_DATA tablespace and is owned by the AMW schema, with a status of VALID in the 12.1.1 ETRM documentation (also applicable to 12.2.2).
From a Data Vault modeling perspective, the heuristic classification of this object is standalone. It does not reference any other database object through an enforced foreign-key relationship other than its optional link to FND_SECURITY_GROUPS via SECURITY_GROUP_ID. This means the table is largely self-contained, with its uniqueness governed entirely by its composite primary key rather than by a hub-and-satellite structure. The absence of parent dependencies and child dependencies within the catalog reinforces that AMW_FIN_STMNT_ITEMS_TL is a leaf-level descriptive object.
Key Information Stored
The most significant columns define both the identity of a translated financial item and the audit context surrounding it:
- STATEMENT_GROUP_ID (NUMBER) — A Set ID that groups all financial statements imported during the same import run. This is a leading component of the primary key and of the unique index
AMW_FIN_STMNT_ITEMS_TL_U1. - FINANCIAL_STATEMENT_ID (NUMBER) — Identifies the parent financial statement to which the item belongs.
- FINANCIAL_ITEM_ID (NUMBER) — The surrogate identifier of the financial item itself.
- LANGUAGE (VARCHAR2) — The language of the translated name stored on this row. Combined with the three IDs above, it forms the composite primary key.
- NAME (VARCHAR2, 240) — The translated display name of the financial item; the primary payload of the TL table.
- SOURCE_LANGUAGE / SOURCE_LANG (VARCHAR2) — The originating language from which the translation was derived.
- SECURITY_GROUP_ID (NUMBER) — Used in hosted environments; the only documented foreign key, referencing
FND_SECURITY_GROUPS. - OBJECT_VERSION_NUMBER (NUMBER) — Supports optimistic locking for concurrent updates.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard WHO audit columns tracking record creation and modification.
The composite primary key is AMW_FIN_STMNT_ITEMS_TL_PK (STATEMENT_GROUP_ID, FINANCIAL_STATEMENT_ID, FINANCIAL_ITEM_ID, LANGUAGE). The unique index AMW_FIN_STMNT_ITEMS_TL_U1 mirrors these same four columns, confirming they are the business-key candidates for this object.
Common Use Cases and Queries
Typical usage centers on resolving a financial item's display name for a specific language, or enumerating all translated items within an import group. A common pattern filters by the identifier columns indexed in the unique key:
- Retrieve the translated name for a single item:
SELECT NAME FROM AMW.AMW_FIN_STMNT_ITEMS_TL WHERE STATEMENT_GROUP_ID = :gid AND FINANCIAL_STATEMENT_ID = :sid AND FINANCIAL_ITEM_ID = :iid AND LANGUAGE = USERENV('LANG'); - List all items (with English names) for a given statement group:
SELECT FINANCIAL_STATEMENT_ID, FINANCIAL_ITEM_ID, NAME FROM AMW.AMW_FIN_STMNT_ITEMS_TL WHERE STATEMENT_GROUP_ID = :gid AND LANGUAGE = 'US'; - Cross-reference the base table to detect missing translations: join
AMW_FIN_STMNT_ITEMS_BtoAMW_FIN_STMNT_ITEMS_TLon the four key columns and filter where the TL row is null. - Compare source and target language values for QA of an import run using
SOURCE_LANGUAGEversusLANGUAGE.
Reporting use cases include multilingual financial statement listings, translation completeness audits, and tracking which items were loaded in a specific import batch. Because NAME is length-limited to 240 characters, truncation checks are also a valid QA query.
Related Objects
The documented metadata identifies a limited set of relationships. The most significant related objects are:
- AMW.AMW_FIN_STMNT_ITEMS_TL (APPS synonym) — The APPS-schema synonym referencing this table, used by concurrency-enabled forms and reports.
- FND_SECURITY_GROUPS — Referenced via the foreign key
SECURITY_GROUP_ID, used in hosted (multi-tenant) environments to scope data. - AMW_FIN_STMNT_ITEMS_B — The base (non-translated) table assumed to hold source-language names; joins on STATEMENT_GROUP_ID, FINANCIAL_STATEMENT_ID, FINANCIAL_ITEM_ID, and LANGUAGE.
- AMW.AMW_FIN_STMNT_ITEMS_TL_PK — The composite primary key constraint enforcing uniqueness on the four key columns.
- AMW.AMW_FIN_STMNT_ITEMS_TL_U1 — The unique index replicating the business key on
APPS_TS_TX_IDX.
Practical joins therefore occur primarily between this TL table and its base counterpart, with secondary filtering through the security group reference. No other dependencies are documented in the ETRM metadata for this object.
-
APPS.AMW_FINSTMT_CERT_MIG_PKG SQL Statements
12.1.1
-
TABLE: AMW.AMW_FIN_STMNT_ITEMS_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_ITEMS_TL, object_name:AMW_FIN_STMNT_ITEMS_TL, status:VALID,
-
TABLE: AMW.AMW_FIN_STMNT_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_TL, object_name:AMW_FIN_STMNT_TL, status:VALID,
-
TABLE: AMW.AMW_FIN_ITEM_ACC_RISK
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ITEM_ACC_RISK, object_name:AMW_FIN_ITEM_ACC_RISK, status:VALID,
-
VIEW: APPS.RCI_FINANCIAL_LINE_V
12.1.1
-
TABLE: AMW.AMW_FIN_ITEM_ACC_CTRL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ITEM_ACC_CTRL, object_name:AMW_FIN_ITEM_ACC_CTRL, status:VALID,
-
TABLE: AMW.AMW_FIN_ITEM_FLAT
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ITEM_FLAT, object_name:AMW_FIN_ITEM_FLAT, status:VALID,
-
TABLE: AMW.AMW_FIN_ITEMS_KEY_ACC
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ITEMS_KEY_ACC, object_name:AMW_FIN_ITEMS_KEY_ACC, status:VALID,
-
TABLE: AMW.AMW_FIN_STMNT_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_B, object_name:AMW_FIN_STMNT_B, status:VALID,
-
TABLE: AMW.AMW_FIN_STMNT_ITEMS_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_ITEMS_B, object_name:AMW_FIN_STMNT_ITEMS_B, status:VALID,
-
TABLE: AMW.AMW_FIN_CERT_SCOPE
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_CERT_SCOPE, object_name:AMW_FIN_CERT_SCOPE, status:VALID,
-
Table: AMW_FIN_STMNT_TL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Holds translated value for the names Financial Statements , implementation_dba_data: Not implemented in this database ,
-
Table: AMW_FIN_STMNT_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_TL, object_name:AMW_FIN_STMNT_TL, status:VALID, product: AMW - Internal Controls Manager , description: Holds translated value for the names Financial Statements , implementation_dba_data: AMW.AMW_FIN_STMNT_TL ,
-
Table: AMW_FIN_ITEMS_KEY_ACC
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ITEMS_KEY_ACC, object_name:AMW_FIN_ITEMS_KEY_ACC, status:VALID, product: AMW - Internal Controls Manager , description: Hold information on the Key Accounts, which are Mapped to a Financial Item for Reporting in Oracle ICM , implementation_dba_data: AMW.AMW_FIN_ITEMS_KEY_ACC ,
-
Table: AMW_FIN_STMNT_ITEMS_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_ITEMS_TL, object_name:AMW_FIN_STMNT_ITEMS_TL, status:VALID, product: AMW - Internal Controls Manager , description: Holds translated value for the names of Financial Items , implementation_dba_data: AMW.AMW_FIN_STMNT_ITEMS_TL ,
-
Table: AMW_FIN_STMNT_ITEMS_TL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Holds translated value for the names of Financial Items , implementation_dba_data: Not implemented in this database ,
-
Table: AMW_FIN_STMNT_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_B, object_name:AMW_FIN_STMNT_B, status:VALID, product: AMW - Internal Controls Manager , description: Stores a List of Financial Statements that has been imported to Oracle ICM , implementation_dba_data: AMW.AMW_FIN_STMNT_B ,
-
Table: AMW_FIN_ITEMS_KEY_ACC
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Hold information on the Key Accounts, which are Mapped to a Financial Item for Reporting in Oracle ICM , implementation_dba_data: Not implemented in this database ,
-
Table: AMW_FIN_STMNT_B
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Stores a List of Financial Statements that has been imported to Oracle ICM , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_FIN_STMNT_KEY_ACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_KEY_ACCT_V, object_name:AMW_FIN_STMNT_KEY_ACCT_V, status:VALID,
-
APPS.AMW_IMPORT_STMNTS_ACCS_PKG SQL Statements
12.1.1
-
VIEW: APPS.AMW_FIN_STMNT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_VL, object_name:AMW_FIN_STMNT_VL, status:VALID,
-
VIEW: APPS.AMW_FIN_STMNT_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_ITEMS_VL, object_name:AMW_FIN_STMNT_ITEMS_VL, status:VALID,
-
View: RCI_FINANCIAL_LINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.RCI_FINANCIAL_LINE_V, object_name:RCI_FINANCIAL_LINE_V, status:VALID, product: AMW - Internal Controls Manager , description: This View contains the definition for the Organization Financial Line Item dimension , implementation_dba_data: APPS.RCI_FINANCIAL_LINE_V ,
-
View: AMW_CERTIFICATION_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CERTIFICATION_VL, object_name:AMW_CERTIFICATION_VL, status:VALID, product: AMW - Internal Controls Manager , description: This view returns information about Certification , implementation_dba_data: APPS.AMW_CERTIFICATION_VL ,
-
View: RCI_FINANCIAL_LINE_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This View contains the definition for the Organization Financial Line Item dimension , implementation_dba_data: Not implemented in this database ,
-
View: AMW_FIN_STMNT_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_ITEMS_VL, object_name:AMW_FIN_STMNT_ITEMS_VL, status:VALID, product: AMW - Internal Controls Manager , description: Holds All Financial Items in a Financial Statements , implementation_dba_data: APPS.AMW_FIN_STMNT_ITEMS_VL ,
-
View: AMW_FIN_STMNT_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Stores a List of Financial Statements that has been imported to Oracle ICM , implementation_dba_data: Not implemented in this database ,
-
TABLE: AMW.RCI_SIG_ACCT_EVAL_F
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.RCI_SIG_ACCT_EVAL_F, object_name:RCI_SIG_ACCT_EVAL_F, status:VALID,
-
View: AMW_FIN_STMNT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_VL, object_name:AMW_FIN_STMNT_VL, status:VALID, product: AMW - Internal Controls Manager , description: Stores a List of Financial Statements that has been imported to Oracle ICM , implementation_dba_data: APPS.AMW_FIN_STMNT_VL ,
-
View: AMW_FIN_STMNT_ITEMS_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Holds All Financial Items in a Financial Statements , implementation_dba_data: Not implemented in this database ,
-
TABLE: AMW.AMW_CERTIFICATION_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_CERTIFICATION_B, object_name:AMW_CERTIFICATION_B, status:VALID,
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_MIG_PKG
12.1.1
-
View: AMW_CERTIFICATION_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This view returns information about Certification , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_CERTIFICATION_PKG SQL Statements
12.1.1
-
APPS.AMW_FIN_STMNT_ITEMS_PKG SQL Statements
12.1.1
-
APPS.AMW_FIN_STMNT_PKG SQL Statements
12.1.1
-
TABLE: AMW.RCI_COMPL_ENV_CHG_SUMM_F
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.RCI_COMPL_ENV_CHG_SUMM_F, object_name:RCI_COMPL_ENV_CHG_SUMM_F, status:VALID,
-
VIEW: APPS.AMW_CERTIFICATION_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CERTIFICATION_VL, object_name:AMW_CERTIFICATION_VL, status:VALID,
-
PACKAGE BODY: APPS.AMW_IMPORT_STMNTS_ACCS_PKG
12.1.1
-
View: AMW_FIN_STMNT_KEY_ACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_KEY_ACCT_V, object_name:AMW_FIN_STMNT_KEY_ACCT_V, status:VALID, product: AMW - Internal Controls Manager , description: Stores a List of Natural/Key Accounts and how it form the hierarchy within a Financial Statement in Oracle ICM , implementation_dba_data: APPS.AMW_FIN_STMNT_KEY_ACCT_V ,
-
PACKAGE BODY: APPS.AMW_FIN_STMNT_PKG
12.1.1
-
View: AMW_FIN_STMNT_KEY_ACCT_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Stores a List of Natural/Key Accounts and how it form the hierarchy within a Financial Statement in Oracle ICM , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.AMW_FIN_STMNT_ITEMS_PKG
12.1.1
-
APPS.RCI_SIG_ACCT_EVAL_SUMM_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_CERTIFICATION_PKG
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG SQL Statements
12.1.1
-
APPS.RCI_COMPL_ENV_CHG_SUMM_PKG SQL Statements
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.RCI_COMPL_ENV_CHG_SUMM_PKG
12.1.1