oracle_a_Part4
oracle_a_Part4
Introduction
This document explains with an example how to define an integrator whose importer returns
error messages for any spreadsheet rows that failed to import.
The intended audience of this document is custom integrator developers who are familiar with
Oracle E-Business Suite, and Oracle Web Applications Desktop Integrator. Developers should
also have good knowledge of the business area for which they are designing the integrator.
Custom integrators are defined using Oracle E-Business Suite Desktop Integration Framework
.
The reason for the three-phase strategy is to divide the integrator definition into smaller sub-
tasks, test the integrator after each phase is completed to ensure it works, and increase its
complexity in the next phase. This strategy simplifies the analysis and resolution of possible
errors while running the integrator.
Integrator Purpose
The Integrator defined in this example performs these operations:
Creates a data document as a formatted spreadsheet on the desktop
Downloads data from BNE_VIEWERS_B into the document that was created
Uploads data from the document to the test table BNE_TEST_IMPR_INTERFACE
Processes data in the BNE_TEST_IMPR_INTERFACE table, marking some of the
rows uploaded as having errors during import
Returns errors to the desktop application
Displays the errors for the rows that failed to import
At the end of Phase A, the integrator will be able to create the template document, download
data, and upload data. Once Phase B is completed, the integrator will be able to perform the
import data processing.