Search Results bne_param_defns_b
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
BNE_PARAM_DEFNS_B is a core configuration table in the BNE (Web Applications Desktop Integrator) product of Oracle E-Business Suite, documented as valid in both release 12.1.1 and 12.2.2. It stores the definition of parameter UI metadata, meaning it holds the declarative specification of how individual parameters are rendered, validated, defaulted and resolved within BNE-based functionality such as Web ADI integrators, desktop integration layouts and parameter-driven concurrent or web processes. The table is owned by the BNE schema and is composed of 35 documented columns in the 12.2.2 physical schema.
From a Data Vault modeling perspective, the heuristic classification mined from the foreign key structure is satellite-leaning. This suggests the table is best understood as descriptive attribute context attached to one or more parent business keys, rather than as an independent hub or an associative link. The presence of OBJECT_VERSION_NUMBER and audit columns reinforces its role as a versioned, maintainable definition store rather than a transactional fact table.
Key Information Stored
The surrogate primary key is BNE_PARAM_DEFNS_B_PK, defined on (APPLICATION_ID, PARAM_DEFN_CODE). A separate unique index, BNE_PARAM_DEFNS_B_UK1, is defined on (APPLICATION_ID, PARAM_DEFN_CODE, ZD_EDITION_NAME), making it the documented business-key candidate; the ZD_EDITION_NAME column participates in edition-based redefinition semantics in 12.2.x. The most significant columns are:
- APPLICATION_ID and PARAM_DEFN_CODE — the composite identifier scoping each parameter definition to its owning application.
- PARAM_NAME and PARAM_SOURCE — the display name and origin of the parameter.
- PARAM_CATEGORY and DATATYPE — classification and expected data type used for rendering and validation.
- ATTRIBUTE_APP_ID and ATTRIBUTE_CODE — the foreign key link to BNE_ATTRIBUTES, tying the parameter to an underlying attribute definition.
- PARAM_RESOLVER — logic used to resolve the parameter value at runtime.
- DEFAULT_REQUIRED_FLAG, DEFAULT_VISIBLE_FLAG, DEFAULT_USER_MODIFYABLE_FLAG — default UI and behavior controls.
- DEFAULT_STRING, DEFAULT_DATE, DEFAULT_NUMBER, DEFAULT_BOOLEAN_FLAG, DEFAULT_FORMULA — typed default value columns.
- DISPLAY_TYPE, DISPLAY_STYLE, DISPLAY_SIZE, FORMAT_MASK, MAX_SIZE — presentation and formatting metadata.
- HELP_URL — the documentation link presented to end users.
- OBJECT_VERSION_NUMBER and the standard audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) — concurrency control and who-did-what tracking.
- OA_FLEX_APPLICATION_ID, OA_FLEX_CODE, OA_FLEX_NUM — key flexfield references where the parameter is flexfield-driven.
- ZD_EDITION_NAME — edition identifier supporting 12.2.2 online patching and edition-based redefinition.
Common Use Cases and Queries
Typical use cases include auditing parameter definitions, tracing UI behavior, diagnosing default-value issues, and documenting integrator configuration. A common query joins parameters to their attribute definitions:
- Retrieving parameter metadata:
SELECT application_id, param_defn_code, param_name, datatype, display_type FROM bne.bne_param_defns_b WHERE application_id = :app_id; - Locating editable, visible parameters:
SELECT param_defn_code FROM bne.bne_param_defns_b WHERE default_visible_flag = 'Y' AND default_user_modifyable_flag = 'Y'; - Joining to attributes:
SELECT p.param_defn_code, p.param_name, a.attribute_code FROM bne.bne_param_defns_b p, bne.bne_attributes a WHERE p.attribute_app_id = a.application_id AND p.attribute_code = a.attribute_code; - Identifying overrides applied to a definition via BNE_PARAM_OVERRIDES using the shared (APPLICATION_ID, PARAM_DEFN_CODE) keys.
- Edition-scoped reporting restricted by ZD_EDITION_NAME in 12.2.2 environments.
Related Objects
The documented relationships anchor this table within the BNE metadata family:
- BNE_ATTRIBUTES — referenced by BNE_PARAM_DEFNS_B via (ATTRIBUTE_APP_ID, ATTRIBUTE_CODE).
- BNE_PARAM_OVERRIDES — references BNE_PARAM_DEFNS_B via (APPLICATION_ID, PARAM_DEFN_CODE), supplying context-specific overrides.
- BNE_PARAM_LIST_ITEMS — related through PARAM_DEFN_APP_ID and PARAM_DEFN_CODE, holding list-of-values entries for parameters.
- BNE_PARAM_DEFNS_B_PK and BNE_PARAM_DEFNS_B_UK1 — the primary and unique indexes enforcing identity and edition uniqueness.
Collectively these objects form the metadata backbone that drives parameter rendering, validation and persistence across Web ADI integrators in Oracle EBS.
-
Table: BNE_PARAM_DEFNS_B
12.2.2
35 columns
hub-leaning
Explore BNE module →
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_DEFNS_B, object_name:BNE_PARAM_DEFNS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of parameter UI metadata , implementation_dba_data: BNE.BNE_PARAM_DEFNS_B ,
-
Table: BNE_PARAM_DEFNS_B
12.1.1
34 columns
satellite-leaning
Explore BNE module →
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_DEFNS_B, object_name:BNE_PARAM_DEFNS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of parameter UI metadata , implementation_dba_data: BNE.BNE_PARAM_DEFNS_B ,
-
VIEW: BNE.BNE_PARAM_DEFNS_B#
12.2.2
owner:BNE, object_type:VIEW, object_name:BNE_PARAM_DEFNS_B#, status:VALID,
-
APPS.HR_PASSED_SQL SQL Statements
12.2.2
-
TRIGGER: APPS.BNE_PARAM_DEFNS_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:BNE_PARAM_DEFNS_B+, status:VALID,
-
APPS.HR_PASSED_SQL SQL Statements
12.1.1
-
SYNONYM: APPS.BNE_PARAM_DEFNS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BNE_PARAM_DEFNS_B, status:VALID,
-
SYNONYM: APPS.BNE_PARAM_DEFNS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BNE_PARAM_DEFNS_B, status:VALID,
-
TRIGGER: APPS.BNE_PARAM_DEFNS_B+
12.2.2
-
VIEW: APPS.BNE_PARAM_DEFNS_VL
12.2.2
-
VIEW: APPS.BNE_PARAM_DEFNS_VL
12.1.1
-
VIEW: BNE.BNE_PARAM_DEFNS_B#
12.2.2
-
Table: BNE_PARAM_DEFNS_TL
12.2.2
17 columns
standalone
Explore BNE module →
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_DEFNS_TL, object_name:BNE_PARAM_DEFNS_TL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Translations for BNE_PARAM_DEFNS_B , implementation_dba_data: BNE.BNE_PARAM_DEFNS_TL ,
-
Table: BNE_PARAM_DEFNS_TL
12.1.1
16 columns
standalone
Explore BNE module →
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_DEFNS_TL, object_name:BNE_PARAM_DEFNS_TL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Translations for BNE_PARAM_DEFNS_B , implementation_dba_data: BNE.BNE_PARAM_DEFNS_TL ,
-
APPS.HR_INTEGRATION_UTILS SQL Statements
12.2.2
-
FUNCTION: APPS.BNE_PARAM_DEFNS_B=
12.2.2
-
Table: BNE_PARAM_OVERRIDES
12.1.1
19 columns
satellite-leaning
Explore BNE module →
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_OVERRIDES, object_name:BNE_PARAM_OVERRIDES, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of over-ridden parameter definition values , implementation_dba_data: BNE.BNE_PARAM_OVERRIDES ,
-
FUNCTION: APPS.BNE_PARAM_DEFNS_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:BNE_PARAM_DEFNS_B=, status:VALID,
-
PACKAGE: APPS.BNE_PARAMETER_UTILS
12.2.2
used by 1
owner:APPS, object_type:PACKAGE, object_name:BNE_PARAMETER_UTILS, status:VALID,
-
Table: BNE_PARAM_LIST_ITEMS
12.2.2
21 columns
satellite-leaning
Explore BNE module →
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_LIST_ITEMS, object_name:BNE_PARAM_LIST_ITEMS, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of the individual parameter items in a parameter list , implementation_dba_data: BNE.BNE_PARAM_LIST_ITEMS ,
-
Table: BNE_PARAM_OVERRIDES
12.2.2
20 columns
satellite-leaning
Explore BNE module →
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_OVERRIDES, object_name:BNE_PARAM_OVERRIDES, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of over-ridden parameter definition values , implementation_dba_data: BNE.BNE_PARAM_OVERRIDES ,
-
APPS.BNE_PARAM_DEFNS_PKG SQL Statements
12.2.2
-
APPS.BNE_PARAM_DEFNS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BNE_PARAMETER_UTILS
12.2.2
used by 1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_PARAMETER_UTILS, status:VALID,
-
PACKAGE BODY: APPS.BNE_LCT_TOOLS_PKG
12.1.1
used by 43
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_LCT_TOOLS_PKG, status:VALID,
-
PACKAGE BODY: APPS.BNE_LCT_TOOLS_PKG
12.2.2
used by 44
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_LCT_TOOLS_PKG, status:VALID,
-
Table: BNE_ATTRIBUTES
12.1.1
68 columns
hub-leaning
Explore BNE module →
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_ATTRIBUTES, object_name:BNE_ATTRIBUTES, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Generic data stored in parameter lists , implementation_dba_data: BNE.BNE_ATTRIBUTES ,
-
Table: BNE_ATTRIBUTES
12.2.2
69 columns
hub-leaning
Explore BNE module →
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_ATTRIBUTES, object_name:BNE_ATTRIBUTES, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Generic data stored in parameter lists , implementation_dba_data: BNE.BNE_ATTRIBUTES ,
-
PACKAGE: APPS.BNE_PARAMETER_UTILS
12.1.1
used by 1
owner:APPS, object_type:PACKAGE, object_name:BNE_PARAMETER_UTILS, status:VALID,
-
PACKAGE BODY: APPS.BNE_PARAM_DEFNS_PKG
12.1.1
used by 1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_PARAM_DEFNS_PKG, status:VALID,
-
PACKAGE BODY: APPS.BNE_PARAMETER_UTILS
12.1.1
used by 1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_PARAMETER_UTILS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.HR_INTEGRATION_UTILS SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.BNE_PARAM_DEFNS_PKG
12.2.2
used by 1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_PARAM_DEFNS_PKG, status:VALID,
-
TABLE: BNE.BNE_PARAM_DEFNS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_DEFNS_B, object_name:BNE_PARAM_DEFNS_B, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.HR_INTEGRATION_UTILS
12.2.2
used by 1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_INTEGRATION_UTILS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
TABLE: BNE.BNE_PARAM_DEFNS_B
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_DEFNS_B, object_name:BNE_PARAM_DEFNS_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.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.BNE_PARAMETER_UTILS SQL Statements
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.BNE_PARAMETER_UTILS SQL Statements
12.2.2
-
APPS.BNE_LCT_TOOLS_PKG SQL Statements
12.2.2