Skip Headers
Oracle® Application Integration Architecture Order Management Integration Pack for Oracle Transportation Management, Oracle E-Business Suite and Siebel CRM Implementation Guide
Release 3.1.1

Part Number E20504-05
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
PDF · Mobi · ePub

5 Process Integration for Query Transportation Order Itinerary

This chapter provides an overview of the process integration for query transportation order itinerary and includes the following sections:

5.1 Overview

This integration flow enables Siebel users to query OTM for various itineraries, schedules, and their rates.

In the Siebel transportation order, you can query the ratings based on origin and destination location details, pickup and delivery time, and commodity (to be shipped) details. The corresponding OTM itineraries with details are pulled into Siebel solution view using AIA. You can select a solution and update the rate upon negotiation with the customer.

5.2 Business Process Flows

This integration flow supports these services:

5.2.1 Query Transportation Order Itinerary Process

Query transportation sales order process is a synchronous BPEL process. This process gets the itinerary information and rates from OTM and sends the data to Siebel for order confirmation.

Figure 5-1 Query Transportation Order Itinerary Process

Description of Figure 5-1 follows
Description of "Figure 5-1 Query Transportation Order Itinerary Process"

The overall flow is described here:

  1. Siebel Application invokes the QueryTransportationSalesOrderItineraryListSiebelReqABCSImpl with the SWIOrderIO application business message (ABM) as an input.

  2. If the preprocess ABM property is true in the AIA configuration file, then the QueryTransportationSalesOrderItineraryListSiebelReqABCSImpl service invokes the QueryTransportationSalesOrderSiebelReqABCSImplExt through the PreProcessABM operation as a synchronous process, which accepts and replies with the TransportationSalesOrderSiebelABM message.

  3. The TransportationSalesOrderSiebelABM message is transformed to the QueryTransportationSalesOrderItineraryListEBM and the EBMHeader is populated.

  4. If the PreProcessEBM property is set to true in the AIA configuration file, the QueryTransportationSalesOrderSiebelReqABCSImplExt is invoked through the PreProcessEBM operation, which is a synchronous process that accepts and replies with the QueryTransportationSalesOrderItineraryListEBM.

  5. The QueryTransportationSalesOrderSiebelReqABCSImpl then invokes TransportationSalesOrderEBS.

  6. TransportationSalesOrderEBS then in-turn invokes the QueryTransportationSalesOrderItineraryListLogisticsProvABCSImpl.

  7. The QueryTransportationSalesOrderItineraryListLogisticsProvABCSImpl then invokes the logistics web service that returns the itineraries and rates.

  8. This response is sent to TransportationSalesOrderEBS.

  9. The TransportationSalesOrderEBS returns the response to QueryTransportationSalesOrderItineraryListSiebelReqABCSImpl.

  10. The QueryTransportationSalesOrderItineraryListSiebelReqABCSImpl returns the response to Siebel after transformation.

5.2.2 Query Transportation Sales Order Itinerary List

Figure 5-2 shows query transportation sales order itinerary list:

Figure 5-2 Query Transportation Sales Order Itinerary List

Description of Figure 5-2 follows
Description of "Figure 5-2 Query Transportation Sales Order Itinerary List"

5.3 Assumptions and Constraints

Itineraries and rates have been defined within Oracle Transportation Management (OTM).

5.4 Siebel CRM Interfaces

This outbound web service is configured in Siebel for this flow: QueryTransportationSalesOrderItineraryListSiebelReqABCSImpl.

This service takes the SWIOrder as input and returns the SWIOrderEntrySalesIORes or a Fault.

For more information about Siebel CRM web services, navigate to the documentation library for Siebel applications on Oracle Technology Network and see Siebel CRM Web Services Reference.

5.5 Oracle Transportation Management Interfaces

Oracle Transportation Management (OTM) provides an interface through a web service to connect to its application. This connectivity is established as a partner link in the provider service. The logistics web service on being called immediately returns a response.

The RIQQuery element in OTM is used to request rate information for the order to be shipped.

For more information about the Logistics Service, see Oracle Transportation Management Integration Guide.

5.6 Core Application Integration Architecture Components

The integration flow uses these components:

The core enterprise business object (EBO) and enterprise business message (EBM) XSD files can be located by EBO within the $AIA_HOME/AIAMetaData/AIAComponents/EnterpriseObjectLibrary/Core/EBO/ parent folder.

The core enterprise business services (EBS) web services definition language (WSDL) files can be located by EBO within the $AIA_HOME/AIAMetaData/AIAComponents/EnterpriseBusinessServiceLibrary/Core/EBO/ parent folder.

For detailed documentation of individual EBOs and EBMs, click AIA Reference Doc link on EBO and EBM detail pages in the Oracle Enterprise Repository.

For more information about using the Oracle Enterprise Repository and configuring it to provide the AIA Reference Doc link, see Oracle Fusion Middleware Developer's Guide for Oracle Application Integration Architecture Foundation Pack, "Configuring and Using Oracle Enterprise Repository as the Oracle AIA SOA Repository."

EBOs can be extended, for instance, to add new data elements. These extensions are protected, and remain intact after a patch or an upgrade.

For more information, see Oracle Fusion Middleware Developer's Guide for Oracle Application Integration Architecture Foundation Pack, "Extensibility for AIA Artifacts".

5.7 Integration Services

This integration delivers these services:

5.7.1 QueryTransportationSalesOrderItineraryListSiebelReqABCSImpl

This BPEL process receives the TransportationSalesOrderABM as input from the Siebel application, transforms the message to the QueryTransportationSalesOrderEBM, and invokes the TransportationSalesOrderEBS service. After transformation, based on the response, the message is again transformed into Siebel application business message (ABM) and sent to Siebel application.

5.7.2 TransportationSalesOrderEBS

TransportationSalesOrderEBS is an Enterprise Business Service that exposes all the enterprise operations related to the TransportationSalesOrder like create TransportationSalesOrder, update TransportationSalesOrder, delete TransportationSalesOrder, and so on. For this flow, the QueryTransportationSalesOrderItineraryList operation is implemented. It routes the request to the appropriate provider like QueryTransportationSalesOrderItineraryListLogisticsProvABCSImpl or composite application validation system (CAVS) based on the filter condition and operation.

5.7.3 QueryTransportationSalesOrderItineraryListLogisticsProvABCSImpl

This is a synchronous BPEL process. This process accepts a QueryTransportationSalesOrderItineraryListEBM as input from TransportationSalesOrderEBS, transforms this message into TransportationSalesOrderItineraryListOTMABM, and invokes the logistics webservice. This service transforms the LogisticsResponseEBM message to QueryTransportationSalesOrderItineraryListResponseEBM, and sends the message back to TransportationSalesOrderEBS.