Search Results ja_cn_journal_lines_req
Overview
The JA_CN_JOURNAL_LINES_REQ table is a staging and temporary holding object within the Oracle E-Business Suite Asia/Pacific Localizations module (product code JA), specifically supporting the China (CN) localization requirements. It stores journal lines for the current user session, itemizing them together with information about related subsidiary accounts where applicable. The table serves as an intermediate repository during the creation, validation, and reporting of journal entries, allowing the Chinese localization processes to assemble detailed line-level data—including account segment breakdowns, project and third-party attributions, and currency conversion details—before those lines are committed to the general ledger or consumed by downstream statutory reporting.
The object resides in the JA schema and is documented as VALID at release levels 12.1.1 and 12.2.2. The documented physical schema contains 74 columns. From a data modeling perspective, the ETRM metadata classifies this object heuristically as standalone, meaning it participates in no foreign-key relationships to other tables except for a single reference from LEGAL_ENTITY_ID to FV_LEGAL_ENTITIES. In Data Vault terms this suggests the table behaves less like a conventional satellite and more like a self-contained transaction or staging hub, since its key structure is not decomposed into referenced hubs and links. Analysts should therefore treat it as a transient work table rather than a durable master or transactional entity.
Key Information Stored
Although the table comprises 74 columns, the most significant attributes cluster into identification, accounting, and attribution groups.
- Identification and context:
JE_HEADER_ID,JE_LINE_NUM,JOURNAL_NUMBER,LINE_NUMBER,JE_CATEGORY,PERIOD_NAME, andDEFAULT_EFFECTIVE_DATEanchor each row to a journal header and accounting period. - Ledger and entity:
SET_OF_BOOKS_IDandLEDGER_IDidentify the ledger, whileLEGAL_ENTITY_IDis the single documented foreign key, referencingFV_LEGAL_ENTITIES. This is the principal business-key candidate linking journal lines to a legal entity. - Accounting amounts:
ENTERED_DR,ENTERED_CR,ACCOUNTED_DR, andACCOUNTED_CRcapture the debit and credit values in both entered and functional currencies. - Account flexfield:
CODE_COMBINATION_IDplus the full rangeSEGMENT1throughSEGMENT30, alongside convenience columnsCOMPANY_SEGMENT,ACCOUNT_SEGMENT, andCOST_CENTER. - Currency conversion:
CURRENCY_CODE,CURRENCY_CONVERSION_RATE, andCURRENCY_CONVERSION_TYPE. - Project and third-party attribution:
PROJECT_ID,PROJECT_NUMBER,PROJECT_SOURCE,THIRD_PARTY_ID,THIRD_PARTY_NUMBER,THIRD_PARTY_TYPE,PERSONNEL_ID, andPERSONNEL_NUMBER. - Audit and workflow:
STATUS,POPULATE_CODE,REQUEST_ID, the standardCREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE, andLAST_UPDATE_LOGINcolumns, plus journal lifecycle columns such asJOURNAL_CREATED_BY,JOURNAL_APPROVER,JOURNAL_POSTED_BY, andJOURNAL_POSTER.
The metadata does not document a formal primary key or unique index; the surrogate identifier is typically derived from the combination of JE_HEADER_ID and JE_LINE_NUM (or LINE_NUMBER), which functions as the practical business key.
Common Use Cases and Queries
The table is most commonly accessed during localization reporting and diagnostic reconciliation of journal data prior to posting. Typical use cases include verifying that entered and accounted amounts balance within a session, auditing third-party and project attributions, and confirming currency conversion values for foreign-currency journals. A representative query retrieves all lines for a given legal entity and period:
SELECT je_header_id, je_line_num, journal_number, account_segment, entered_dr, entered_cr, accounted_dr, accounted_cred FROM ja.ja_cn_journal_lines_req WHERE legal_entity_id = :entity_id AND period_name = :period;- Balancing check:
SELECT SUM(entered_dr) - SUM(entered_cr) FROM ja.ja_cn_journal_lines_req WHERE je_header_id = :header_id; - Status-driven listing:
SELECT * FROM ja.ja_cn_journal_lines_req WHERE status = :status AND request_id = :request_id;
Because the table is session-scoped, queries should generally be filtered by REQUEST_ID or CREATED_BY to avoid retrieving stale rows from prior runs.
Related Objects
- FV_LEGAL_ENTITIES — referenced by
JA_CN_JOURNAL_LINES_REQ.LEGAL_ENTITY_ID; the sole documented foreign-key relationship. - GL_JE_HEADERS and GL_JE_LINES — the general ledger targets that consume prepared journal data; joined via
JE_HEADER_IDand line numbers. - GL_CODE_COMBINATIONS — referenced through
CODE_COMBINATION_IDfor account validation. - GL_LEDGERS / GL_SETS_OF_BOOKS — resolved via
LEDGER_IDandSET_OF_BOOKS_ID. - FND_CONCURRENT_REQUESTS — tied through
REQUEST_IDfor session traceability. - JA_CN_JOURNAL_HEADERS-style companion objects and JA localization report programs that read this staging table during Chinese statutory journal generation.
-
Table: JA_CN_JOURNAL_LINES_REQ
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JA_CN_JOURNAL_LINES_REQ, object_name:JA_CN_JOURNAL_LINES_REQ, status:VALID, product: JA - Asia/Pacific Localizations , description: The 'JA_CN_JOURNAL_LINES_REQ' table stores temporarily journal lines of current session, which itemized with information of related subsidiary accounts if any , implementation_dba_data: JA.JA_CN_JOURNAL_LINES_REQ ,
-
Table: JA_CN_JOURNAL_LINES_REQ
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JA_CN_JOURNAL_LINES_REQ, object_name:JA_CN_JOURNAL_LINES_REQ, status:VALID, product: JA - Asia/Pacific Localizations , description: The 'JA_CN_JOURNAL_LINES_REQ' table stores temporarily journal lines of current session, which itemized with information of related subsidiary accounts if any , implementation_dba_data: JA.JA_CN_JOURNAL_LINES_REQ ,
-
SYNONYM: APPS.JA_CN_JOURNAL_LINES_REQ
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JA_CN_JOURNAL_LINES_REQ, status:VALID,
-
SYNONYM: APPS.JA_CN_JOURNAL_LINES_REQ
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JA_CN_JOURNAL_LINES_REQ, status:VALID,
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG SQL Statements
12.1.1
-
VIEW: JA.JA_CN_JOURNAL_LINES_REQ#
12.2.2
owner:JA, object_type:VIEW, object_name:JA_CN_JOURNAL_LINES_REQ#, status:VALID,
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
TABLE: JA.JA_CN_JOURNAL_LINES_REQ
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JA_CN_JOURNAL_LINES_REQ, object_name:JA_CN_JOURNAL_LINES_REQ, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: JA.JA_CN_JOURNAL_LINES_REQ#
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.JA_CN_ACC_JE_ITEMIZATION_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_ACC_JE_ITEMIZATION_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_ACC_JE_ITEMIZATION_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_ACC_JE_ITEMIZATION_PKG, status:VALID,
-
TABLE: JA.JA_CN_JOURNAL_LINES_REQ
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JA_CN_JOURNAL_LINES_REQ, object_name:JA_CN_JOURNAL_LINES_REQ, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.JA_CN_ACC_JE_ITEMIZATION_PKG
12.1.1
-
PACKAGE BODY: APPS.JA_CN_ACC_JE_ITEMIZATION_PKG
12.2.2
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on JA_CN_JOURNAL_LINES_REQ
12.1.1
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on JA_CN_JOURNAL_LINES_REQ
12.2.2
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on JA_CN_JOURNAL_LINES
12.1.1
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on JA_CN_JOURNAL_LINES
12.2.2
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on PER_ALL_PEOPLE_F
12.1.1
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on PER_ALL_PEOPLE_F
12.2.2
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on FND_FILE
12.1.1
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on XLA_ANALYTICAL_DTLS_B
12.2.2
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on JA_CN_JOURNALS_OF_PERIOD
12.1.1
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on FND_FILE
12.2.2
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on JA_CN_JOURNALS_OF_PERIOD
12.2.2
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on GL_JE_LINES
12.1.1
-
APPS.JA_CN_ACC_JE_ITEMIZATION_PKG dependencies on GL_JE_LINES
12.2.2
-
eTRM - JA Tables and Views
12.1.1
description: The 'JA_CN_SYSTEM_PARAMETERS_ALL' table stores information defined by 'System Options' form, 'Electronic Accounting Book Export' program will get most data from data in the table. A legal entity can only have one record in the table. ,
-
eTRM - JA Tables and Views
12.2.2
description: The 'JA_CN_VOUCHER_NUMBER' table stores the voucher number of GL journal lines. ,
-
eTRM - JA Tables and Views
12.1.1
description: The 'JA_CN_SYSTEM_PARAMETERS_ALL' table stores information defined by 'System Options' form, 'Electronic Accounting Book Export' program will get most data from data in the table. A legal entity can only have one record in the table. ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - JA Tables and Views
12.2.2
description: The 'JA_CN_VOUCHER_NUMBER' table stores the voucher number of GL journal lines. ,
-
12.1.1 DBA Data
12.1.1