Search Results bne_stylesheets_b
Overview
BNE_STYLESHEETS_B is a core configuration table within the BNE schema (Web Applications Desktop Integrator, commonly known as Web ADI or ADI) in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the definition of a collection of stylesheets — logical groupings of layout and formatting attributes used by Desktop Integrator to render spreadsheet-based integrators, journals, and upload templates consistently. Each row represents one stylesheet definition, scoped by application, and serves as the header record for the broader stylesheet configuration model.
Under a heuristic Data Vault classification mined from the foreign key structure, this object is assessed as standalone. No dependent FK relationships were identified, which suggests the table operates as an independent reference of style definitions rather than as a transactional hub or link. Practically, this means it is best treated as a reference/definition table that other BNE objects consume by code value rather than through enforced referential integrity.
Key Information Stored
The table carries 12 documented columns. The most operationally significant are:
- APPLICATION_ID — the owning Oracle application, part of both the primary key and the unique business key; it scopes stylesheet codes to a product/application context.
- STYLESHEET_CODE — the human-readable identifier for the stylesheet definition; also part of the PK and UK.
- ZD_EDITION_NAME — the edition (data-vault style) discriminator, completing the unique index BNE_STYLESHEETS_B_UK1.
- DEFAULT_FLAG — indicates whether this stylesheet is the default used when no explicit style is chosen.
- READ_ONLY_FLAG — controls whether the stylesheet may be modified by end users or is locked for system use.
- IMAGE_FILE_NAME — the associated image/preview file rendered in the Desktop Integrator UI.
- OBJECT_VERSION_NUMBER — optimistic locking/versioning column used by the OAF/BC4J framework.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, LAST_UPDATE_DATE — standard EBS WHO (Who columns) audit trail fields.
The surrogate primary key is BNE_STYLESHEETS_B_PK (APPLICATION_ID, STYLESHEET_CODE). The unique index BNE_STYLESHEETS_B_UK1 (APPLICATION_ID, STYLESHEET_CODE, ZD_EDITION_NAME) is the business-key candidate, adding the edition name to the PK columns.
Common Use Cases and Queries
Typical scenarios include auditing which stylesheets are configured per application, identifying the default stylesheet, and validating that codes are unique within an application. A reporting query to list active definitions:
SELECT application_id, stylesheet_code, default_flag, read_only_flag, image_file_name FROM bne.bne_stylesheets_b WHERE default_flag = 'Y';SELECT a.application_name, s.stylesheet_code, s.default_flag FROM bne.bne_stylesheets_b s, fnd_application_vl a WHERE s.application_id = a.application_id ORDER BY a.application_name, s.stylesheet_code;SELECT stylesheet_code, COUNT(*) FROM bne.bne_stylesheets_b GROUP BY stylesheet_code HAVING COUNT(*) > 1;— used to detect cross-application duplicate codes.
Because the object is standalone, joins to related BNE stylesheet attribute tables are driven by APPLICATION_ID and STYLESHEET_CODE rather than enforced FK constraints.
Related Objects
The following objects are most relevant to BNE_STYLESHEETS_B, joined on the composite key columns APPLICATION_ID and STYLESHEET_CODE:
- BNE_STYLESHEET_COLS / BNE_STYLESHEETS_TL — the child/translated definition tables that reference the stylesheet by code.
- BNE_LAYOUTS_B — layouts that bind to a stylesheet for rendering.
- BNE_INTEGRATORS_B — integrator definitions that consume stylesheets during upload/download.
- BNE_CONTENT_COLS_B — content/column metadata associated with a stylesheet.
- FND_APPLICATION / FND_APPLICATION_VL — source of the APPLICATION_ID and application name for reporting.
- FND_STYLESHEET / Desktop Integrator setup APIs — the configuration and generation routines that read stylesheet definitions.
These relationships are logical rather than FK-enforced, consistent with the standalone classification.
-
Table: BNE_STYLESHEETS_B
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_STYLESHEETS_B, object_name:BNE_STYLESHEETS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of a collection of Styles , implementation_dba_data: BNE.BNE_STYLESHEETS_B ,
-
Table: BNE_STYLESHEETS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_STYLESHEETS_B, object_name:BNE_STYLESHEETS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of a collection of Styles , implementation_dba_data: BNE.BNE_STYLESHEETS_B ,
-
VIEW: BNE.BNE_STYLESHEETS_B#
12.2.2
owner:BNE, object_type:VIEW, object_name:BNE_STYLESHEETS_B#, status:VALID,
-
APPS.BNE_STYLESHEETS_PKG SQL Statements
12.1.1
-
VIEW: APPS.BNE_STYLESHEETS_VL
12.2.2
-
SYNONYM: APPS.BNE_STYLESHEETS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BNE_STYLESHEETS_B, status:VALID,
-
SYNONYM: APPS.BNE_STYLESHEETS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BNE_STYLESHEETS_B, status:VALID,
-
TRIGGER: APPS.BNE_STYLESHEETS_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:BNE_STYLESHEETS_B+, status:VALID,
-
VIEW: BNE.BNE_STYLESHEETS_B#
12.2.2
-
APPS.BNE_STYLESHEETS_PKG SQL Statements
12.2.2
-
VIEW: APPS.BNE_STYLESHEETS_VL
12.1.1
-
TRIGGER: APPS.BNE_STYLESHEETS_B+
12.2.2
-
TABLE: BNE.BNE_STYLESHEETS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_STYLESHEETS_B, object_name:BNE_STYLESHEETS_B, status:VALID,
-
TABLE: BNE.BNE_STYLESHEETS_B
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_STYLESHEETS_B, object_name:BNE_STYLESHEETS_B, status:VALID,
-
Table: BNE_STYLESHEETS_TL
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_STYLESHEETS_TL, object_name:BNE_STYLESHEETS_TL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Translations for BNE_STYLESHEETS_B , implementation_dba_data: BNE.BNE_STYLESHEETS_TL ,
-
FUNCTION: APPS.BNE_STYLESHEETS_B=
12.2.2
-
Table: BNE_STYLESHEETS_TL
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_STYLESHEETS_TL, object_name:BNE_STYLESHEETS_TL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Translations for BNE_STYLESHEETS_B , implementation_dba_data: BNE.BNE_STYLESHEETS_TL ,
-
FUNCTION: APPS.BNE_STYLESHEETS_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:BNE_STYLESHEETS_B=, status:VALID,
-
Table: BNE_STYLES
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_STYLES, object_name:BNE_STYLES, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of a named Stylesheet Style , implementation_dba_data: BNE.BNE_STYLES ,
-
12.2.2 DBA Data
12.2.2
-
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 ,
-
PACKAGE BODY: APPS.BNE_STYLESHEETS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_STYLESHEETS_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.BNE_STYLESHEETS_PKG
12.1.1
-
View: BNE_STYLESHEETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BNE.BNE_STYLESHEETS_VL, object_name:BNE_STYLESHEETS_VL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: BNE_STYLESHEETS_VL is a standard translation view over the BNE_STYLESHEETS entity. , implementation_dba_data: APPS.BNE_STYLESHEETS_VL ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.BNE_STYLESHEETS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_STYLESHEETS_PKG, status:VALID,
-
View: BNE_STYLESHEETS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BNE.BNE_STYLESHEETS_VL, object_name:BNE_STYLESHEETS_VL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: BNE_STYLESHEETS_VL is a standard translation view over the BNE_STYLESHEETS entity. , implementation_dba_data: APPS.BNE_STYLESHEETS_VL ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.BNE_STYLESHEETS_PKG
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.BNE_STYLESHEETS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BNE.BNE_STYLESHEETS_VL, object_name:BNE_STYLESHEETS_VL, status:VALID,
-
VIEW: APPS.BNE_STYLESHEETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BNE.BNE_STYLESHEETS_VL, object_name:BNE_STYLESHEETS_VL, status:VALID,
-
TABLE: BNE.BNE_STYLESHEETS_TL
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_STYLESHEETS_TL, object_name:BNE_STYLESHEETS_TL, status:VALID,
-
TABLE: BNE.BNE_STYLESHEETS_TL
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_STYLESHEETS_TL, object_name:BNE_STYLESHEETS_TL, status:VALID,
-
eTRM - BNE Tables and Views
12.2.2
description: Translations for BNE_VIEWERS_B ,
-
eTRM - BNE Tables and Views
12.1.1
description: Translations for BNE_VIEWERS_B ,
-
APPS.BNE_STYLESHEETS_PKG dependencies on BNE_STYLESHEETS_B
12.1.1
-
APPS.BNE_STYLESHEETS_PKG dependencies on BNE_STYLESHEETS_B
12.2.2
-
eTRM - BNE Tables and Views
12.2.2
description: Translations for BNE_VIEWERS_B ,
-
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,
-
eTRM - BNE Tables and Views
12.1.1
description: Translations for BNE_VIEWERS_B ,