Search Results bne_integrators_b
Overview
BNE_INTEGRATORS_B is the definition table for Integrators within the Oracle E-Business Suite Web Applications Desktop Integrator (BNE) module. An Integrator in EBS Desktop Integration is the metadata object that binds a spreadsheet-based interface to an Oracle Forms or OAF application, defining how a user creates, uploads, imports, and validates documents such as journals, invoices, or budgets. Each row in BNE_INTEGRATORS_B describes one supported integration, including which parameter lists drive the upload and import program calls, which Java classes resolve and verify layouts, and how date values are formatted in the generated workbook.
The table is owned by the BNE schema and is present and VALID in both 12.1.1 and 12.2.2. The documented 12.2.2 physical schema contains 29 columns and is protected by the primary key constraint BNE_INTEGRATORS_B_PK, defined on the compound business identifiers INTEGRATOR_CODE and APPLICATION_ID. A unique index, BNE_INTEGRATORS_B_UK1, additionally enforces uniqueness on APPLICATION_ID, INTEGRATOR_CODE, and ZD_EDITION_NAME, reflecting the multi-edition (ZD) support introduced in 12.2.x. From a Data Vault modeling perspective, the FK topology mined from the ETRM metadata classifies this object as hub-leaning: it owns the natural business key of an integrator while serving as the parent of numerous satellite-style detail tables.
Key Information Stored
The most consequential columns include:
- INTEGRATOR_CODE and APPLICATION_ID — the compound business key identifying an integrator within its owning application.
- ENABLED_FLAG — controls whether the integrator is active and available to end users.
- UPLOAD_PARAM_LIST_APP_ID / UPLOAD_PARAM_LIST_CODE — the parameter list invoked when a document is uploaded back to the application.
- UPLOAD_SERV_PARAM_LIST_APP_ID / UPLOAD_SERV_PARAM_LIST_CODE — parameters for the server-side upload routine.
- IMPORT_PARAM_LIST_APP_ID / IMPORT_PARAM_LIST_CODE — parameters passed to the import program.
- CREATE_DOC_LIST_APP_ID / CREATE_DOC_LIST_CODE — parameters used when a new document is created.
- SESSION_PARAM_LIST_APP_ID / SESSION_PARAM_LIST_CODE — parameters for session-level initialization.
- UPLOADER_CLASS, LAYOUT_RESOLVER_CLASS, LAYOUT_VERIFIER_CLASS, and SESSION_CONFIG_CLASS — Java classes implementing upload, layout discovery, verification, and session behavior.
- IMPORT_TYPE, DATE_FORMAT, DISPLAY_FLAG, SOURCE, and NEW_SESSION_FLAG — operational attributes governing import execution, workbook formatting, visibility, origin, and session handling.
- OBJECT_VERSION_NUMBER and the standard WHO audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, LAST_UPDATE_DATE).
Common Use Cases and Queries
Typical uses include enumerating active integrators for a given application, resolving the parameter lists that drive an upload, and auditing which Java handler classes are wired to a given integration. A representative query listing enabled integrators:
SELECT i.integrator_code, i.application_id, i.enabled_flag,
i.uploader_class, i.import_type, i.date_format
FROM bne_integrators_b i
WHERE i.enabled_flag = 'Y'
ORDER BY i.application_id, i.integrator_code;
Joining to the parameter lists to inspect upload wiring:
SELECT i.integrator_code, p.param_list_code, p.param_list_app_id
FROM bne_integrators_b i, bne_param_lists_b p
WHERE i.upload_param_list_app_id = p.param_list_app_id
AND i.upload_param_list_code = p.param_list_code;
Integration developers also reference this table when troubleshooting Desktop Integration failures, confirming that the correct resolver/verifier classes and parameter lists are registered for the document type in use.
Related Objects
BNE_INTEGRATORS_B is a parent to a broad set of dependent tables and a child of parameter list definitions:
- BNE_PARAM_LISTS_B — referenced four times via IMPORT_PARAM_LIST, UPLOAD_PARAM_LIST, UPLOAD_SERV_PARAM_LIST, and CREATE_DOC_LIST column pairs.
- BNE_LAYOUTS_B — layout definitions per integrator (INTEGRATOR_APP_ID, INTEGRATOR_CODE).
- BNE_MAPPINGS_B — column-to-interface mappings per integrator.
- BNE_INTERFACES_B — interface definitions associated with the integrator.
- BNE_IMPORT_PROGRAMS — import program registrations keyed on APPLICATION_ID and INTEGRATOR_CODE.
- BNE_CONTENTS_B, BNE_GRAPHS_B, BNE_MENUS_B, BNE_DUPLICATE_PROFILES_B, BNE_INTEGRATOR_VIEWERS, and BNE_ASYNC_UPLOAD_JOBS — all reference the integrator via INTEGRATOR_APP_ID and INTEGRATOR_CODE.
Collectively these relationships establish BNE_INTEGRATORS_B as the central hub of Desktop Integrator configuration metadata.
-
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 ,
-
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_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 ,
-
VIEW: BNE.BNE_INTEGRATORS_B#
12.2.2
owner:BNE, object_type:VIEW, object_name:BNE_INTEGRATORS_B#, status:VALID,
-
TRIGGER: APPS.BNE_INTEGRATORS_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:BNE_INTEGRATORS_B+, status:VALID,
-
VIEW: APPS.BNE_INTEGRATORS_VL
12.2.2
-
SYNONYM: APPS.BNE_INTEGRATORS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BNE_INTEGRATORS_B, status:VALID,
-
SYNONYM: APPS.BNE_INTEGRATORS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BNE_INTEGRATORS_B, status:VALID,
-
TRIGGER: APPS.BNE_INTEGRATORS_B+
12.2.2
-
VIEW: BNE.BNE_INTEGRATORS_B#
12.2.2
-
VIEW: APPS.BNE_INTEGRATORS_VL
12.1.1
-
APPS.BNE_INTEGRATORS_PKG SQL Statements
12.1.1
-
APPS.BNE_INTEGRATORS_PKG SQL Statements
12.2.2
-
FUNCTION: APPS.BNE_INTEGRATORS_B=
12.2.2
-
Table: BNE_INTEGRATORS_TL
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_INTEGRATORS_TL, object_name:BNE_INTEGRATORS_TL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Translations for BNE_INTEGRATORS_B , implementation_dba_data: BNE.BNE_INTEGRATORS_TL ,
-
Table: BNE_INTEGRATOR_VIEWERS
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_INTEGRATOR_VIEWERS, object_name:BNE_INTEGRATOR_VIEWERS, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of Viewers , implementation_dba_data: BNE.BNE_INTEGRATOR_VIEWERS ,
-
FUNCTION: APPS.BNE_INTEGRATORS_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:BNE_INTEGRATORS_B=, status:VALID,
-
Table: BNE_ASYNC_UPLOAD_JOBS
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_ASYNC_UPLOAD_JOBS, object_name:BNE_ASYNC_UPLOAD_JOBS, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Storage of upload Jobs. There will be 1 row per Job , implementation_dba_data: BNE.BNE_ASYNC_UPLOAD_JOBS ,
-
Table: BNE_INTEGRATORS_TL
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_INTEGRATORS_TL, object_name:BNE_INTEGRATORS_TL, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Translations for BNE_INTEGRATORS_B , implementation_dba_data: BNE.BNE_INTEGRATORS_TL ,
-
APPS.HR_ADE_ADI_DATA_SETUP SQL Statements
12.1.1
-
Table: BNE_DUPLICATE_PROFILES_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_DUPLICATE_PROFILES_B, object_name:BNE_DUPLICATE_PROFILES_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: The definition of a duplicate upload profile. , implementation_dba_data: BNE.BNE_DUPLICATE_PROFILES_B ,
-
Table: BNE_IMPORT_PROGRAMS
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_IMPORT_PROGRAMS, object_name:BNE_IMPORT_PROGRAMS, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of a multiple import programs for an integrator. , implementation_dba_data: BNE.BNE_IMPORT_PROGRAMS ,
-
Table: BNE_LAYOUTS_B
12.1.1
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 ,
-
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 ,
-
Table: BNE_MENUS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_MENUS_B, object_name:BNE_MENUS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of Menus , implementation_dba_data: BNE.BNE_MENUS_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 ,
-
Table: BNE_DUPLICATE_PROFILES_B
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_DUPLICATE_PROFILES_B, object_name:BNE_DUPLICATE_PROFILES_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: The definition of a duplicate upload profile. , implementation_dba_data: BNE.BNE_DUPLICATE_PROFILES_B ,
-
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: APPS.PA_FP_WEBADI_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_FP_WEBADI_UTILS, 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 ,
-
PACKAGE: APPS.PA_FP_WEBADI_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_FP_WEBADI_UTILS, status:VALID,
-
eTRM - BNE Tables and Views
12.2.2
description: Translations for BNE_VIEWERS_B ,
-
Table: BNE_ASYNC_UPLOAD_JOBS
12.1.1
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_ASYNC_UPLOAD_JOBS, object_name:BNE_ASYNC_UPLOAD_JOBS, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Storage of upload Jobs. There will be 1 row per Job , implementation_dba_data: BNE.BNE_ASYNC_UPLOAD_JOBS ,
-
APPS.HR_ADE_ADI_DATA_SETUP SQL Statements
12.2.2
-
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 ,
-
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_CONTENTS_B
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_CONTENTS_B, object_name:BNE_CONTENTS_B, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of Content Components , implementation_dba_data: BNE.BNE_CONTENTS_B ,
-
12.2.2 DBA Data
12.2.2
-
TABLE: BNE.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,
-
Table: BNE_IMPORT_PROGRAMS
12.2.2
owner:BNE, object_type:TABLE, fnd_design_data:BNE.BNE_IMPORT_PROGRAMS, object_name:BNE_IMPORT_PROGRAMS, status:VALID, product: BNE - Web Applications Desktop Integrator , description: Definition of a multiple import programs for an integrator. , implementation_dba_data: BNE.BNE_IMPORT_PROGRAMS ,
-
12.1.1 FND Design Data
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
-
TABLE: BNE.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,
-
PACKAGE BODY: APPS.BNE_INTEGRATORS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_INTEGRATORS_PKG, status:VALID,
-
PACKAGE BODY: APPS.BNE_INTEGRATORS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_INTEGRATORS_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.BNE_SECURITY_UTILS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BNE_SECURITY_UTILS_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2