Search Results bne_graphs_b
Overview
BNE_GRAPHS_B is the foundational base table within the BNE (Web Applications Desktop Integrator) module of Oracle E-Business Suite, holding configuration definitions for the graphical elements rendered against Web ADI integrators. In EBS releases 12.1.1 and 12.2.2, Web ADI uses this object to persist the metadata that governs how data charts and graphs are presented to end users when they interact with integrator-based spreadsheet and web interfaces. Each row describes a single graph definition associated with a given integrator and layout, providing the structural blueprint consumed at runtime to render visualizations.
From a Data Vault modeling perspective, the mined foreign key structure suggests a satellite-leaning classification. The table's identity is anchored through its composite primary key to parent business entities (integrators and layouts) rather than acting as an independent hub or a pure many-to-many link. This heuristic reflects its descriptive, attribute-bearing role relative to those parent keys.
Key Information Stored
The table is keyed by BNE_GRAPHS_B_PK, a composite surrogate-free natural key of (APPLICATION_ID, INTEGRATOR_CODE, SEQUENCE_NUM). A second unique index, BNE_GRAPHS_B_UK1, extends this with ZD_EDITION_NAME, reflecting the editioning support introduced in 12.2.x. The most significant columns include:
- APPLICATION_ID, INTEGRATOR_CODE, SEQUENCE_NUM — the composite primary key identifying a graph definition within its integrator context.
- LAYOUT_APP_ID, LAYOUT_CODE — the foreign key pair linking the graph to its parent layout in BNE_LAYOUTS_B, defining where the graph appears.
- GRAPH_DIMENSION_CODE, GRAPH_TYPE_CODE — control the shape and category of the rendered visualization (for example, dimension and chart family).
- AUTO_GRAPH_FLAG — indicates whether the graph is generated automatically versus manually configured.
- OBJECT_VERSION_NUMBER — supports optimistic locking during concurrent updates.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, LAST_UPDATE_DATE — standard WHO audit columns for change tracking.
- ZD_EDITION_NAME — editioning discriminator for Online Patching in 12.2.x.
Common Use Cases and Queries
Consultants and developers query BNE_GRAPHS_B to inventory graph definitions for a given integrator, to troubleshoot rendering issues, and to migrate configuration between environments. A typical diagnostic query enumerates graphs and their layout associations:
SELECT SEQUENCE_NUM, LAYOUT_CODE, GRAPH_TYPE_CODE, GRAPH_DIMENSION_CODE, AUTO_GRAPH_FLAG FROM BNE_GRAPHS_B WHERE APPLICATION_ID = :app_id AND INTEGRATOR_CODE = :code;- Joining to parent tables to confirm integrity:
... JOIN BNE_LAYOUTS_B l ON g.LAYOUT_APP_ID = l.APPLICATION_ID AND g.LAYOUT_CODE = l.LAYOUT_CODE; - Audit reporting using CREATION_DATE / LAST_UPDATE_DATE to identify recently modified graph configurations.
Reporting against AUTO_GRAPH_FLAG helps administrators identify which visualizations are system-generated versus user-authored.
Related Objects
The following objects participate in the documented foreign key relationships:
- BNE_INTEGRATORS_B — parent integrator definition, joined on APPLICATION_ID and INTEGRATOR_CODE.
- BNE_LAYOUTS_B — parent layout definition, joined on LAYOUT_APP_ID and LAYOUT_CODE.
- BNE_GRAPH_COLUMNS — child table referencing APPLICATION_ID, INTEGRATOR_CODE, and GRAPH_SEQ_NUM, holding the column bindings for each graph.
Together these objects form the graph configuration hierarchy within Web ADI, with BNE_GRAPHS_B acting as the central descriptor between integrators, layouts, and their constituent graph columns.
-
Table: BNE_GRAPHS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_GRAPHS_B, object_name:BNE_GRAPHS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: base table for graphs information , implementation_dba_data: BNE.BNE_GRAPHS_B ,
-
VIEW: BNE.BNE_GRAPHS_B#
12.2.2
owner:BNE, object_type:VIEW, object_name:BNE_GRAPHS_B#, status:VALID,
-
SYNONYM: APPS.BNE_GRAPHS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BNE_GRAPHS_B, status:VALID,
-
TRIGGER: APPS.BNE_GRAPHS_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:BNE_GRAPHS_B+, status:VALID,
-
SYNONYM: APPS.BNE_GRAPHS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BNE_GRAPHS_B, status:VALID,
-
APPS.BNE_GRAPHS_PKG SQL Statements
12.1.1
-
VIEW: BNE.BNE_GRAPHS_B#
12.2.2
-
VIEW: APPS.BNE_GRAPHS_VL
12.1.1
-
VIEW: APPS.BNE_GRAPHS_VL
12.2.2
-
TRIGGER: APPS.BNE_GRAPHS_B+
12.2.2
-
APPS.BNE_GRAPHS_PKG SQL Statements
12.2.2
-
FUNCTION: APPS.BNE_GRAPHS_B=
12.2.2
-
Table: BNE_GRAPHS_TL
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_GRAPHS_TL, object_name:BNE_GRAPHS_TL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Translations for BNE_GRAPHS_B , implementation_dba_data: BNE.BNE_GRAPHS_TL ,
-
PACKAGE BODY: APPS.BNE_GRAPHS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_GRAPHS_PKG, status:VALID,
-
View: BNE_GRAPHS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BNE.BNE_GRAPHS_VL, object_name:BNE_GRAPHS_VL, status:VALID, product: BNE - Web Applications Desktop Integrator , implementation_dba_data: APPS.BNE_GRAPHS_VL ,
-
FUNCTION: APPS.BNE_GRAPHS_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:BNE_GRAPHS_B=, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
TABLE: BNE.BNE_GRAPHS_B
12.1.1
owner:BNE, object_type:TABLE, object_name:BNE_GRAPHS_B, status:VALID,
-
Table: BNE_GRAPH_COLUMNS
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_GRAPH_COLUMNS, object_name:BNE_GRAPH_COLUMNS, status:VALID, product: BNE - Web Applications Desktop Integrator , description: base table for graphs information , implementation_dba_data: BNE.BNE_GRAPH_COLUMNS ,
-
12.2.2 DBA Data
12.2.2
-
TABLE: BNE.BNE_GRAPHS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_GRAPHS_B, object_name:BNE_GRAPHS_B, status:VALID,
-
Table: BNE_LAYOUTS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_LAYOUTS_B, object_name:BNE_LAYOUTS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of an instance of the display of an Integrator , implementation_dba_data: BNE.BNE_LAYOUTS_B ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.BNE_GRAPHS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_GRAPHS_PKG, 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
-
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.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.BNE_GRAPHS_PKG
12.2.2
-
PACKAGE BODY: APPS.BNE_GRAPHS_PKG
12.1.1
-
PACKAGE BODY: APPS.BNE_INTEGRATOR_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_INTEGRATOR_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,
-
VIEW: APPS.BNE_GRAPHS_VL
12.1.1
owner:APPS, object_type:VIEW, object_name:BNE_GRAPHS_VL, status:VALID,
-
VIEW: APPS.BNE_GRAPHS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BNE.BNE_GRAPHS_VL, object_name:BNE_GRAPHS_VL, status:VALID,
-
TABLE: BNE.BNE_GRAPHS_TL
12.1.1
owner:BNE, object_type:TABLE, object_name:BNE_GRAPHS_TL, status:VALID,
-
TABLE: BNE.BNE_GRAPHS_TL
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_GRAPHS_TL, object_name:BNE_GRAPHS_TL, status:VALID,
-
eTRM - BNE Tables and Views
12.2.2
description: Translations for BNE_VIEWERS_B ,
-
APPS.BNE_GRAPHS_PKG dependencies on BNE_GRAPHS_B
12.2.2
-
APPS.BNE_INTEGRATOR_UTILS dependencies on BNE_GRAPHS_B
12.1.1
-
APPS.BNE_GRAPHS_PKG dependencies on BNE_GRAPHS_B
12.1.1
-
APPS.BNE_INTEGRATOR_UTILS dependencies on BNE_GRAPHS_B
12.2.2
-
APPS.BNE_INTEGRATOR_UTILS SQL Statements
12.1.1
-
APPS.BNE_INTEGRATOR_UTILS SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,