Search Results bne_param_list_items
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
BNE_PARAM_LIST_ITEMS is a Web Applications Desktop Integrator (BNE) configuration table in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the individual parameter items that make up a parameter list. Where a parameter list defines an ordered grouping of parameters, each row in this table represents one parameter within that list, including its sequence, the parameter definition it resolves to, and an optional constant default value. The table is owned by the BNE schema and is documented as VALID in the ETRM metadata.
From a data-modeling perspective, the mined structure suggests a satellite-leaning classification. The table carries descriptive and value attributes (parameter name, attribute reference, default values) attached to a parent parameter list identifier, rather than acting as an independent hub of business entities or a pure associative link. This classification is a heuristic suggestion mined from the foreign key structure, not an authoritative Data Vault design assertion.
Key Information Stored
The primary key is defined by the constraint BNE_PARAM_LIST_ITEMS_PK over three columns:
- APPLICATION_ID – identifies the owning application, the leading key component.
- PARAM_LIST_CODE – the parameter list to which this item belongs, tying the row to the parent list.
- SEQUENCE_NUM – the ordinal position of the item within the list, defining parameter ordering.
A unique index, BNE_PARAM_LIST_ITEMS_UK1 (APPLICATION_ID, PARAM_LIST_CODE, SEQUENCE_NUM, ZD_EDITION_NAME), extends the primary key with the ZD_EDITION_NAME column, indicating an editioning or versioning dimension. This is a business-key candidate for tools that key on the natural identifier plus edition rather than the surrogate composite key.
The remaining columns hold the substantive content:
- PARAM_DEFN_APP_ID and PARAM_DEFN_CODE – resolve the item to its parameter definition.
- PARAM_NAME – the display name used in the desktop integrator UI.
- ATTRIBUTE_APP_ID and ATTRIBUTE_CODE – reference the BNE_ATTRIBUTES definition that supplies the parameter's metadata.
- STRING_VALUE, DATE_VALUE, NUMBER_VALUE, BOOLEAN_VALUE_FLAG, FORMULA_VALUE, DESC_VALUE – typed default value slots, allowing a parameter item to hold a scalar, a formula, or a description depending on the parameter's data type.
- OBJECT_VERSION_NUMBER, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN – standard EBS concurrency and audit columns.
Common Use Cases and Queries
Typical reporting and diagnostic scenarios include auditing which parameters belong to a given list and their default values, tracing how a parameter item resolves to its attribute definition, and reviewing the ordering of parameters presented to the user.
SELECT pli.param_list_code,
pli.sequence_num,
pli.param_name,
pli.param_defn_code,
pli.attribute_code,
pli.string_value,
pli.formula_value
FROM bne.bne_param_list_items pli
WHERE pli.application_id = :app_id
AND pli.param_list_code = :list_code
ORDER BY pli.sequence_num;
Joining to BNE_ATTRIBUTES resolves the attribute metadata behind each parameter item, which is useful when validating that defaults match the declared attribute data type. Because the table is edition-aware, queries against 12.2.2 environments should consider ZD_EDITION_NAME to avoid returning rows from an inactive edition.
Related Objects
- BNE_ATTRIBUTES – referenced via ATTRIBUTE_CODE and ATTRIBUTE_APP_ID; supplies the attribute definition for each parameter item.
- BNE_PARAM_GROUP_ITEMS – references this table through APPLICATION_ID, PARAM_LIST_CODE, and PARAM_SEQ_NUM, forming the parent-to-child relationship by which a group item resolves to a specific parameter item.
- The parameter definition reference – the PARAM_DEFN_APP_ID and PARAM_DEFN_CODE columns resolve to the parameter definition entity documented in the metadata as a referenced foreign key.
- The owning application reference – APPLICATION_ID participates both as a primary key component and as a foreign reference, linking each item to its application context.
Because the table is an internal BNE configuration object, it is typically accessed through the Desktop Integrator setup forms and APIs rather than modified directly. Direct DML should be avoided in favor of supported configuration paths.
-
Table: BNE_PARAM_LIST_ITEMS
12.1.1
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_LIST_ITEMS
12.2.2
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 ,
-
VIEW: BNE.BNE_PARAM_LIST_ITEMS#
12.2.2
owner:BNE, object_type:VIEW, object_name:BNE_PARAM_LIST_ITEMS#, status:VALID,
-
APPS.BNE_LCT_TOOLS_PKG SQL Statements
12.2.2
-
APPS.BNE_PARAM_LIST_ITEMS_PKG SQL Statements
12.2.2
-
APPS.BNE_LCT_TOOLS_PKG SQL Statements
12.1.1
-
APPS.BNE_PARAM_LIST_ITEMS_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.BNE_PARAM_LIST_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BNE_PARAM_LIST_ITEMS, status:VALID,
-
SYNONYM: APPS.BNE_PARAM_LIST_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BNE_PARAM_LIST_ITEMS, status:VALID,
-
TRIGGER: APPS.BNE_PARAM_LIST_ITEMS+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:BNE_PARAM_LIST_ITEMS+, status:VALID,
-
TRIGGER: APPS.BNE_PARAM_LIST_ITEMS+
12.2.2
-
VIEW: BNE.BNE_PARAM_LIST_ITEMS#
12.2.2
-
APPS.HR_INTEGRATION_UTILS SQL Statements
12.1.1
-
APPS.HR_INTEGRATION_UTILS SQL Statements
12.2.2
-
FUNCTION: APPS.BNE_PARAM_LIST_ITEMS=
12.2.2
-
TABLE: BNE.BNE_PARAM_LIST_ITEMS
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_LIST_ITEMS, object_name:BNE_PARAM_LIST_ITEMS, status:VALID,
-
TABLE: BNE.BNE_PARAM_LIST_ITEMS
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_LIST_ITEMS, object_name:BNE_PARAM_LIST_ITEMS, status:VALID,
-
FUNCTION: APPS.BNE_PARAM_LIST_ITEMS=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:BNE_PARAM_LIST_ITEMS=, status:VALID,
-
PACKAGE BODY: APPS.BNE_PARAM_LIST_ITEMS_PKG
12.1.1
-
PACKAGE BODY: APPS.BNE_PARAM_LIST_ITEMS_PKG
12.2.2
-
Table: 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, product: BNE - Web Applications Desktop Integrator , description: Definition of parameter UI metadata , implementation_dba_data: BNE.BNE_PARAM_DEFNS_B ,
-
PACKAGE: APPS.BNE_PARAMETER_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:BNE_PARAMETER_UTILS, status:VALID,
-
PACKAGE BODY: APPS.BNE_PARAMETER_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_PARAMETER_UTILS, status:VALID,
-
Table: BNE_PARAM_GROUP_ITEMS
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_GROUP_ITEMS, object_name:BNE_PARAM_GROUP_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_GROUP_ITEMS ,
-
Table: BNE_PARAM_GROUP_ITEMS
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_GROUP_ITEMS, object_name:BNE_PARAM_GROUP_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_GROUP_ITEMS ,
-
PACKAGE: APPS.BNE_PARAMETER_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:BNE_PARAMETER_UTILS, status:VALID,
-
Table: BNE_ATTRIBUTES
12.2.2
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.1.1
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 BODY: APPS.BNE_LCT_TOOLS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_LCT_TOOLS_PKG, status:VALID,
-
PACKAGE BODY: APPS.BNE_LCT_TOOLS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_LCT_TOOLS_PKG, status:VALID,
-
PACKAGE BODY: APPS.BNE_PARAMETER_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_PARAMETER_UTILS, status:VALID,
-
PACKAGE BODY: APPS.BNE_PARAM_LIST_ITEMS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_PARAM_LIST_ITEMS_PKG, status:VALID,
-
PACKAGE BODY: APPS.BNE_PARAM_LIST_ITEMS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_PARAM_LIST_ITEMS_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
-
12.2.2 DBA Data
12.2.2
-
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
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.BNE_PARAMETER_UTILS SQL Statements
12.2.2
-
Table: BNE_PARAM_LISTS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_PARAM_LISTS_B, object_name:BNE_PARAM_LISTS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of a list of parameters , implementation_dba_data: BNE.BNE_PARAM_LISTS_B ,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.BNE_PARAMETER_UTILS
12.2.2
-
APPS.BNE_PARAMETER_UTILS SQL Statements
12.1.1
-
PACKAGE: APPS.BNE_PARAMETER_UTILS
12.1.1