Search Results frm_documents_b
Overview
FRM_DOCUMENTS_B is the base table that stores the un-translated portions of a Report Manager document within the Oracle E-Business Suite Report Manager (FRM) module. In Oracle EBS 12.1.1 and 12.2.2, the Report Manager subsystem manages publishing, distribution, and lifecycle of concurrent request output, and FRM_DOCUMENTS_B serves as the master (header) record for each document registered in that repository. Because the table stores language-independent data, all translatable descriptive attributes are held separately in the companion table FRM_DOCUMENTS_TL, following the standard EBS "_B"/"_TL" multilingual pattern.
The object is owned by the FRM schema and is documented as VALID, with a physical definition of 14 columns. Based on the foreign-key topology mined from the ETRM metadata, the table exhibits hub-leaning characteristics: it holds the durable identity of a document (its DOCUMENT_ID) and references a parent directory, while being referenced by dependent detail and translation tables. This suggests a Data Vault modeling classification of a hub, with FRM_DOCUMENT_DETAILS and FRM_DOCUMENTS_TL behaving as satellites or dependent child entities.
Key Information Stored
The table is anchored by its primary key, FRM_DOCUMENTS_B_PK, defined on DOCUMENT_ID. A separate unique index, FRM_DOCUMENTS_B_UK1, is also defined on DOCUMENT_ID, confirming it as the business-key candidate in addition to the surrogate identifier. The most significant columns are:
- DOCUMENT_ID — Surrogate primary key uniquely identifying each Report Manager document.
- DIRECTORY_ID — Foreign key to FRM_DIRECTORY_B, placing the document within the Report Manager directory hierarchy.
- SEQUENCE_NUMBER — Ordering attribute for documents within their parent context.
- EXPANDED_FLAG — Indicates whether the document node is expanded in the Report Manager tree display.
- DS_APP_SHORT_NAME — Application short name of the data source associated with the document.
- DATA_SOURCE_CODE — Code identifying the data source that produced or owns the document.
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the EBS framework for concurrent update control.
- ARCHIVED_FLAG — Marks whether the document has been archived.
- END_DATE — Effective end date supporting date-tracked (datetracked) lifecycle management.
- CREATION_DATE / CREATED_BY / LAST_UPDATE_DATE / LAST_UPDATED_BY / LAST_UPDATE_LOGIN — Standard EBS audit columns recording who created and last modified the row and when.
The "_B" designation confirms it holds base (non-translated) attributes only; user-facing names and descriptions reside in FRM_DOCUMENTS_TL.
Common Use Cases and Queries
Typical scenarios include reporting on published report documents, tracing a document to its directory, and reconciling document headers with their translated and detail rows. A representative join retrieves translated document identity against a directory:
- SELECT b.document_id, t.document_name, b.data_source_code FROM frm_documents_b b, frm_documents_tl t WHERE b.document_id = t.document_id AND t.language = USERENV('LANG');
- Join to FRM_DIRECTORY_B on b.directory_id = d.directory_id to list documents by directory.
- Filter active documents with b.end_date IS NULL and b.archived_flag = 'N' when reconciling the current Report Manager repository.
Because the table carries audit and datetrack columns, it also supports change audits of document registration and archival status over time.
Related Objects
- FRM_DIRECTORY_B — Parent table referenced via FRM_DOCUMENTS_B.DIRECTORY_ID; defines the directory containing the document.
- FRM_DOCUMENTS_TL — Translation table; references DOCUMENT_ID and holds translatable document text.
- FRM_DOCUMENT_DETAILS — Detail table; references DOCUMENT_ID and stores document-level detail rows.
- FRM_DOCUMENTS_B_PK / FRM_DOCUMENTS_B_UK1 — Primary key constraint and unique index on DOCUMENT_ID.
- Report Manager concurrent programs and publishing APIs — Create and resolve document headers recorded in this table during request output processing.
-
Table: FRM_DOCUMENTS_B
12.2.2
owner:FRM, object_type:TABLE, fnd_design_data:FRM.FRM_DOCUMENTS_B, object_name:FRM_DOCUMENTS_B, status:VALID, product: FRM - Report Manager , description: Stores the un-translated parts of a Report Manager document. , implementation_dba_data: FRM.FRM_DOCUMENTS_B ,
-
Table: FRM_DOCUMENTS_B
12.1.1
owner:FRM, object_type:TABLE, fnd_design_data:FRM.FRM_DOCUMENTS_B, object_name:FRM_DOCUMENTS_B, status:VALID, product: FRM - Report Manager , description: Stores the un-translated parts of a Report Manager document. , implementation_dba_data: FRM.FRM_DOCUMENTS_B ,
-
SYNONYM: APPS.FRM_DOCUMENTS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FRM_DOCUMENTS_B, status:VALID,
-
APPS.FRM_DOCUMENTS_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.FRM_DOCUMENTS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FRM_DOCUMENTS_B, status:VALID,
-
VIEW: FRM.FRM_DOCUMENTS_B#
12.2.2
owner:FRM, object_type:VIEW, object_name:FRM_DOCUMENTS_B#, status:VALID,
-
VIEW: FRM.FRM_DOCUMENTS_B#
12.2.2
-
VIEW: APPS.FRM_DOCUMENTS_VL
12.1.1
-
VIEW: APPS.FRM_DOCUMENTS_VL
12.2.2
-
APPS.FRM_DOCUMENTS_PKG SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
Table: FRM_DIRECTORY_B
12.2.2
owner:FRM, object_type:TABLE, fnd_design_data:FRM.FRM_DIRECTORY_B, object_name:FRM_DIRECTORY_B, status:VALID, product: FRM - Report Manager , description: Stores the un-translated parts of the Report Manager directory hierarchy. , implementation_dba_data: FRM.FRM_DIRECTORY_B ,
-
eTRM - FRM Tables and Views
12.1.1
description: Stores the java class path and name of datasource to XML Publisher adaptor. ,
-
TABLE: FRM.FRM_DOCUMENTS_B
12.1.1
owner:FRM, object_type:TABLE, fnd_design_data:FRM.FRM_DOCUMENTS_B, object_name:FRM_DOCUMENTS_B, status:VALID,
-
Table: FRM_DOCUMENT_DETAILS
12.2.2
owner:FRM, object_type:TABLE, fnd_design_data:FRM.FRM_DOCUMENT_DETAILS, object_name:FRM_DOCUMENT_DETAILS, status:VALID, product: FRM - Report Manager , description: Stores the detail level information about a document or document set. , implementation_dba_data: FRM.FRM_DOCUMENT_DETAILS ,
-
Table: FRM_DIRECTORY_B
12.1.1
owner:FRM, object_type:TABLE, fnd_design_data:FRM.FRM_DIRECTORY_B, object_name:FRM_DIRECTORY_B, status:VALID, product: FRM - Report Manager , description: Stores the un-translated parts of the Report Manager directory hierarchy. , implementation_dba_data: FRM.FRM_DIRECTORY_B ,
-
TABLE: FRM.FRM_DOCUMENTS_B
12.2.2
owner:FRM, object_type:TABLE, fnd_design_data:FRM.FRM_DOCUMENTS_B, object_name:FRM_DOCUMENTS_B, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.FRM_DOCUMENTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FRM_DOCUMENTS_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
Table: FRM_DOCUMENTS_TL
12.1.1
owner:FRM, object_type:TABLE, fnd_design_data:FRM.FRM_DOCUMENTS_TL, object_name:FRM_DOCUMENTS_TL, status:VALID, product: FRM - Report Manager , description: Stores the translated parts of a Report Manager document. , implementation_dba_data: FRM.FRM_DOCUMENTS_TL ,
-
Table: FRM_DOCUMENTS_TL
12.2.2
owner:FRM, object_type:TABLE, fnd_design_data:FRM.FRM_DOCUMENTS_TL, object_name:FRM_DOCUMENTS_TL, status:VALID, product: FRM - Report Manager , description: Stores the translated parts of a Report Manager document. , implementation_dba_data: FRM.FRM_DOCUMENTS_TL ,
-
Table: FRM_DOCUMENT_DETAILS
12.1.1
owner:FRM, object_type:TABLE, fnd_design_data:FRM.FRM_DOCUMENT_DETAILS, object_name:FRM_DOCUMENT_DETAILS, status:VALID, product: FRM - Report Manager , description: Stores the detail level information about a document or document set. , implementation_dba_data: FRM.FRM_DOCUMENT_DETAILS ,
-
PACKAGE BODY: APPS.FRM_DOCUMENTS_PKG
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: FRM_DOCUMENTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FRM.FRM_DOCUMENTS_VL, object_name:FRM_DOCUMENTS_VL, status:VALID, product: FRM - Report Manager , description: FRM_DOCUMENTS_VL is a standard translation view over the FRM_DOCUMENTS entity. , implementation_dba_data: APPS.FRM_DOCUMENTS_VL ,
-
eTRM - FRM Tables and Views
12.2.2
description: Stores the java class path and name of datasource to XML Publisher adaptor. ,
-
View: FRM_DOCUMENTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FRM.FRM_DOCUMENTS_VL, object_name:FRM_DOCUMENTS_VL, status:VALID, product: FRM - Report Manager , description: FRM_DOCUMENTS_VL is a standard translation view over the FRM_DOCUMENTS entity. , implementation_dba_data: APPS.FRM_DOCUMENTS_VL ,
-
PACKAGE BODY: APPS.FRM_DOCUMENTS_PKG
12.2.2
-
PACKAGE BODY: APPS.FRM_DOCUMENTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FRM_DOCUMENTS_PKG, status:VALID,
-
VIEW: APPS.FRM_DOCUMENTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FRM.FRM_DOCUMENTS_VL, object_name:FRM_DOCUMENTS_VL, status:VALID,
-
VIEW: APPS.FRM_DOCUMENTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FRM.FRM_DOCUMENTS_VL, object_name:FRM_DOCUMENTS_VL, status:VALID,
-
eTRM - FRM Tables and Views
12.1.1
description: Stores the java class path and name of datasource to XML Publisher adaptor. ,
-
eTRM - FRM Tables and Views
12.2.2
description: Stores the java class path and name of datasource to XML Publisher adaptor. ,
-
APPS.FRM_DOCUMENTS_PKG dependencies on FRM_DOCUMENTS_B
12.1.1
-
APPS.FRM_DOCUMENTS_PKG dependencies on FRM_DOCUMENTS_B
12.2.2
-
APPS.FRM_DOCUMENTS_PKG dependencies on FRM_DOCUMENTS_TL
12.2.2
-
APPS.FRM_DOCUMENTS_PKG dependencies on FRM_DOCUMENTS_TL
12.1.1
-
APPS.FRM_DOCUMENTS_PKG dependencies on FND_LOAD_UTIL
12.2.2
-
APPS.FRM_DOCUMENTS_PKG dependencies on FND_LOAD_UTIL
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1