Search Results bne_mappings_b
Overview
BNE_MAPPINGS_B is a core configuration table in the BNE (Web Applications Desktop Integrator) product of Oracle E-Business Suite, documented as VALID in both 12.1.1 and 12.2.2. It stores the definition of mappings between spreadsheet contents and interface columns, forming the metadata backbone that Web ADI uses to translate user-entered or uploaded spreadsheet values into the columns of an Oracle EBS interface table. Each row associates a mapping definition with a specific integrator and, where relevant, a reporting interface, enabling Web ADI to construct the layout, validations, and column-to-attribute relationships presented to end users.
From a Data Vault modeling perspective, the mined FK structure classifies BNE_MAPPINGS_B as satellite-leaning. This is a modeling suggestion rather than a physical implementation: the table behaves largely as descriptive metadata hanging off the integrator and reporting-interface hubs, with its child detail rows in BNE_MAPPING_LINES representing the finer-grained link and descriptive content. The table is owned by the BNE schema and carries a single-table primary key constraint, BNE_MAPPINGS_B_PK, defined on the composite of MAPPING_CODE and APPLICATION_ID.
Key Information Stored
The documented physical schema for 12.2.2 contains 14 columns. The most operationally significant are:
- MAPPING_CODE and APPLICATION_ID — together the composite primary key (BNE_MAPPINGS_B_PK) and the core business identifiers for a mapping definition.
- INTEGRATOR_APP_ID and INTEGRATOR_CODE — identify the parent Web ADI integrator to which the mapping belongs.
- REPORTING_INTERFACE_APP_ID and REPORTING_INTERFACE_CODE — identify the reporting interface associated with the mapping.
- REPORTING_FLAG — indicates whether the mapping participates in reporting interface behavior.
- OBJECT_VERSION_NUMBER — supports optimistic locking for concurrent updates.
- ZD_EDITION_NAME — the editioning column used by EBS 12.2 online patching; it is part of the unique index BNE_MAPPINGS_B_UK1 (APPLICATION_ID, MAPPING_CODE, ZD_EDITION_NAME).
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, LAST_UPDATE_DATE — standard EBS audit columns tracking who created and last modified each definition.
Note that the composite primary key differs from the business-key candidate surfaced by the unique index: BNE_MAPPINGS_B_UK1 adds ZD_EDITION_NAME, reflecting the 12.2 editioning model.
Common Use Cases and Queries
Typical scenarios include auditing which mappings exist for a given integrator, tracing a mapping to its interface, and diagnosing Web ADI layout or upload failures. A representative query joining the parent integrator and interface follows:
SELECT m.mapping_code, m.integrator_code, m.reporting_interface_code, m.reporting_flag, m.last_update_date FROM bne_mappings_b m WHERE m.integrator_app_id = :app_id AND m.integrator_code = :integrator_code;SELECT m.mapping_code, l.* FROM bne_mappings_b m JOIN bne_mapping_lines l ON l.application_id = m.application_id AND l.mapping_code = m.mapping_code WHERE m.mapping_code = :mapping_code;SELECT m.* FROM bne_mappings_b m WHERE m.reporting_flag = 'Y' AND m.application_id = :app_id;
Reporting use cases center on inventorying mapping definitions per integrator, verifying edition-scoped rows in 12.2 (ZD_EDITION_NAME), and supporting migration or comparison of Web ADI configurations across environments.
Related Objects
The most significant related objects, based on documented foreign key relationships, are:
- BNE_MAPPING_LINES — child detail table; joins on APPLICATION_ID and MAPPING_CODE.
- BNE_INTERFACES_B — parent interface definition; referenced via REPORTING_INTERFACE_APP_ID and REPORTING_INTERFACE_CODE.
- BNE_INTEGRATORS_B — parent integrator definition; referenced via INTEGRATOR_APP_ID and INTEGRATOR_CODE.
- BNE_MAPPINGS_TL — translation table for mapping names/descriptions (by convention in BNE).
- BNE_MAPPINGS_VL — the multilingual view commonly used for reporting and lookups.
Collectively these objects define the Web ADI mapping metadata model, with BNE_MAPPINGS_B serving as the parent anchor for mapping lines and the join point to interfaces and integrators.
-
Table: BNE_MAPPINGS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_MAPPINGS_B, object_name:BNE_MAPPINGS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of Mappings between Contents and Interface Columns , implementation_dba_data: BNE.BNE_MAPPINGS_B ,
-
Table: BNE_MAPPINGS_B
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_MAPPINGS_B, object_name:BNE_MAPPINGS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of Mappings between Contents and Interface Columns , implementation_dba_data: BNE.BNE_MAPPINGS_B ,
-
VIEW: BNE.BNE_MAPPINGS_B#
12.2.2
owner:BNE, object_type:VIEW, object_name:BNE_MAPPINGS_B#, status:VALID,
-
SYNONYM: APPS.BNE_MAPPINGS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BNE_MAPPINGS_B, status:VALID,
-
TRIGGER: APPS.BNE_MAPPINGS_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:BNE_MAPPINGS_B+, status:VALID,
-
SYNONYM: APPS.BNE_MAPPINGS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BNE_MAPPINGS_B, status:VALID,
-
VIEW: BNE.BNE_MAPPINGS_B#
12.2.2
-
APPS.BNE_MAPPINGS_PKG SQL Statements
12.2.2
-
VIEW: APPS.BNE_MAPPINGS_VL
12.1.1
-
VIEW: APPS.BNE_MAPPINGS_VL
12.2.2
-
APPS.BNE_MAPPINGS_PKG SQL Statements
12.1.1
-
TRIGGER: APPS.BNE_MAPPINGS_B+
12.2.2
-
TABLE: BNE.BNE_MAPPINGS_B
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_MAPPINGS_B, object_name:BNE_MAPPINGS_B, status:VALID,
-
TABLE: BNE.BNE_MAPPINGS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_MAPPINGS_B, object_name:BNE_MAPPINGS_B, status:VALID,
-
FUNCTION: APPS.BNE_MAPPINGS_B=
12.2.2
-
Table: BNE_MAPPINGS_TL
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_MAPPINGS_TL, object_name:BNE_MAPPINGS_TL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Translations for BNE_MAPPINGS_B , implementation_dba_data: BNE.BNE_MAPPINGS_TL ,
-
Table: BNE_MAPPINGS_TL
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_MAPPINGS_TL, object_name:BNE_MAPPINGS_TL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Translations for BNE_MAPPINGS_B , implementation_dba_data: BNE.BNE_MAPPINGS_TL ,
-
Table: BNE_MAPPING_LINES
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_MAPPING_LINES, object_name:BNE_MAPPING_LINES, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of individual column mappings , implementation_dba_data: BNE.BNE_MAPPING_LINES ,
-
Table: BNE_MAPPING_LINES
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_MAPPING_LINES, object_name:BNE_MAPPING_LINES, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of individual column mappings , implementation_dba_data: BNE.BNE_MAPPING_LINES ,
-
FUNCTION: APPS.BNE_MAPPINGS_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:BNE_MAPPINGS_B=, status:VALID,
-
Table: BNE_INTERFACES_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_INTERFACES_B, object_name:BNE_INTERFACES_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of a single Interface of an Integrator , implementation_dba_data: BNE.BNE_INTERFACES_B ,
-
Table: BNE_INTEGRATORS_B
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_INTEGRATORS_B, object_name:BNE_INTEGRATORS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of Integrator , implementation_dba_data: BNE.BNE_INTEGRATORS_B ,
-
Table: BNE_INTERFACES_B
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_INTERFACES_B, object_name:BNE_INTERFACES_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of a single Interface of an Integrator , implementation_dba_data: BNE.BNE_INTERFACES_B ,
-
PACKAGE BODY: APPS.BNE_CONTENT_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_CONTENT_UTILS, status:VALID,
-
PACKAGE BODY: APPS.BNE_MAPPINGS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_MAPPINGS_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
View: BNE_MAPPINGS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BNE.BNE_MAPPINGS_VL, object_name:BNE_MAPPINGS_VL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: BNE_MAPPINGS_VL is a standard translation view over the BNE_MAPPINGS entity. , implementation_dba_data: APPS.BNE_MAPPINGS_VL ,
-
PACKAGE BODY: APPS.BNE_CONTENT_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_CONTENT_UTILS, status:VALID,
-
PACKAGE BODY: APPS.BNE_MAPPINGS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_MAPPINGS_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.BNE_MAPPINGS_PKG
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
View: BNE_MAPPINGS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BNE.BNE_MAPPINGS_VL, object_name:BNE_MAPPINGS_VL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: BNE_MAPPINGS_VL is a standard translation view over the BNE_MAPPINGS entity. , implementation_dba_data: APPS.BNE_MAPPINGS_VL ,
-
PACKAGE BODY: APPS.BNE_MAPPINGS_PKG
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
Table: BNE_INTEGRATORS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_INTEGRATORS_B, object_name:BNE_INTEGRATORS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of Integrator , implementation_dba_data: BNE.BNE_INTEGRATORS_B ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.BNE_CONTENT_UTILS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FEM_WEBADI_TABLES_UTILS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FEM_WEBADI_TABLES_UTILS_PVT, status:VALID,
-
APPS.BNE_CONTENT_UTILS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PQP_RIW_WEBADI_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQP_RIW_WEBADI_UTILS, status:VALID,
-
PACKAGE BODY: APPS.PQP_RIW_WEBADI_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQP_RIW_WEBADI_UTILS, status:VALID,
-
PACKAGE BODY: APPS.BNE_INTEGRATOR_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_INTEGRATOR_UTILS, status:VALID,