Order T-Mobile

Size: px
Start display at page:

Download "Order T-Mobile"

Transcription

1 Order T-Mobile Dr. Thomas Dupré, T-Mobile Deutschland GmbH November 2009 Master-Untertitelformat bearbeiten

2 Agenda Motivation for Order Management Key concepts of OMS/OE A closer look towards OMS A closer look towards OE Lessons Learned Demo 2

3 The Basis: SOA Infrastructure 2006: Renewal of ESB Project SOA Backplane (SBP) Harmonization of SOA-Infrastructure across all T-Mobile national companies Technology: Tibco EMS, Web Services (WS Gateway as Common Access Layer) additional value adding functionality (central logging, monitoring, routing, service repository, ) Idea 2007: central order management and order fulfillment based on SBP Project Order Management / Orchestration Engine (OMS/OE) Technology: BPEL, Web Services, XML connection to other IT Systems via SBP Order Management consists of (multi-channel) Order Capture Order Repository OMS/OE Order Fulfillment (Execution) 3

4 Strategic Objectives Consolidate different order repository and order fulfillment functionalities into a central Order Management System cost reduction through reuse and centralization of business logic Portal Call Center Back Office rule readwrite rule readwrite Frontend rule readwrite Backend domains better time2market because redundant implementations are avoided Portal Provide integrated, consistent interface and automated fulfillment of orders for all channels / front-end systems Frontend Maximize availability due to separation of order capture and order repository (OMS) from order execution (OE) Business Process / Order Back Office OMS/OE Local Workflow central order tracking central business process monitoring Call Center rule readwrite rule readwrite rule readwrite Backend domains 4

5 Logical Target Architecture 5

6 Key concepts of OMS/OE Motivation for Order Management Key concepts of OMS/OE A closer look towards OMS A closer look towards OE Lessons Learned Demo 6

7 Main requirements OMS: order based view (order repository & management) OE: process instance based view (order fulfillment / execution) enable creation, update, cancellation, execution and retrieval (query) of orders from multiple channels structural validation of incoming orders maintain order status and results / order lifecycle management cope with concurrent orders at the same time (order blocking) dynamic order throttling operate on a high level process description (BPEL) persist ongoing process executions (for recovery purposes) order decomposition data mapping: transform inbound request XML data to outbound service calls towards back-end systems communicate with back-end systems via SBP (web services, ESB) out of scope: guided order capture, (semantic) order validation out of scope: transaction security across back-end systems 7 7

8 What do we need for OMS/OE? What can we buy on the market? BPEL engine (or other workflow systems) for orchestration evaluation and decision: Oracle BPEL Process Manager x BAM, Rules Engines etc. for order fulfillment (if necessary) BPM tools for integration with business processes on business side (if necessary) What is still missing out-of-the-box? (gap analysis) implementation of specific order fulfillment business logic advanced operational features (e.g. order throttling) any order oriented view (instead of a purely process instance oriented view), e.g. order repository functionalities: how to store, retrieve and track orders according to non-technical criteria? OMS link to business analysts: how to model the offered services and order types? MDSD: Generator ( from UML to XSD / WSDL ) 8

9 OMS/OE Technology Technology stack OMS: Technology stack OE: Oracle 10g R2 RDBMS Oracle 10g R2 RDBMS, OAS, BPEL Process Manager , Advanced Queuing Apache tomcat, Spring, JEE XML, XMLBeans, XFire, XQuery Saxon-SA, a schema-aware XSLT / XQuery processor Generator framework 9

10 High level system architecture 10

11 A closer look towards OMS Motivation for Order Management Key concepts of OMS/OE A closer look towards OMS A closer look towards OE Lessons Learned Demo 11

12 OMS interface modeling: It s all about Orders (1) CCDM (Common Customer Data Model) Definition: A customer order is a business transaction between customers and DTAG, which is connected to the creation or change of a contract or customer data. Suborders are the smallest orderable units (atomic) can be aggregated flexibly into orders Hardw are deliver y Tariff e chang Invoice online bi om d C ar C An order ( shopping basket ) can be an offer based sales order (e.g. contract renewal) a non-offer based sales order (e.g. tariff change) a service order (e.g. address change) Contract renewal or a mixture of all t trac n o l C ewa ren ption Tariff o e chang Channels tag an order with a business process type. 12

13 OMS interface modeling: It s all about Orders (2) More technically: Orders are XML documents and comply to a specific structure defined by an XML schema. The XML schema definition is generated out of a UML syntax of order definition. OMS offers web services e.g. for creation, update, cancellation, execution and retrieval (query) of orders. OMS services are document-centric, expect orders as parameters, e.g. Create (Order), Execute (Order), no such services as ChangeTariff, UpdateAddress etc. Reason: flexibility concerning the aggregation of suborders without interface changes the variance of business processes is modelled in the orders & suborders (polymorphic), not in the services 13

14 OMS Design Process OMS model XMI Export Designer UML Profile Developer OMS/OE Generator Eclipse TMF: Xpand Xtend OML persistence module service definitions DB-schema type system OMS-Query definitions OMS model OMS/OE Generator Xpand Xtend generated artifacts <html/> interface specification <wsdl/> service definition SQL database definitions.java source code 14

15 A closer look towards OE Motivation for Order Management Key concepts of OMS/OE A closer look towards OMS A closer look towards OE Lessons Learned Demo 15

16 Order Fulfillment within OE Order fulfillment follows the steps below: order decomposition instantiate dispatcher process for the order, initialize order processes instantiate sub-processes (basically one process instance per suborder) data mapping: transform the data contained in the input order to the different backend service interfaces call services towards backend services via SBP according to BPEL workflow for each sub-process receive callbacks from partner systems (in the asynchronous case) update OMS according to order status changes, order results and business events 16 16

17 Orders and Order Processes OE view on order processes OMS view on order CSD (Customer Service Desktop) view on order processes: To Do list of process automation 17

18 Error Handling (1): Basics During the fulfillment of orders, different errors can occur. Error handling mechanisms within OE depend on the error type. Technical Errors e.g. Connection problems, Technical Exceptions from partner systems, handling via an automated retry mechanism: Configurable number and frequency, retry mechanism can be interrupted corresponding BPEL code is generated into workflow design at build time resp. Error Policies are used Idempotence pattern is important Programming Errors e.g. Unexpected Errors within OE delivered to Error Hospital Business Errors are routed to a manual operator workplace for manual correction or compensation dito for unsuccessful retries or business processes which are to be fulfilled manually 18

19 Error Handling (2): Pushing to manual user Business errors or unsuccessful retries are routed to Oracle s Worklist accessible by IT internal support group (see below) and back-office desktop (pushed work-items via routing platform, see next slide) OE 19

20 Error Handling (3): Passing back to OE Customer Service Desktop (CSD) displays history and future steps of order as well as erroneous step with error message OE offers several actions for the continuation of processes: try again close order process (set current process to completed, continue) close order (set remaining processes to completed ) abort order process (set remaining processes and whole order to failed ) remind Order process results can be captured and used in further processing 20

21 Lessons Learned & Outlook Motivation for Order Management Key concepts of OMS/OE A closer look towards OMS A closer look towards OE Lessons Learned Demo 21

22 Lessons Learned Development Process / Architecture start small think big : prototyping, iterative development process process modeling: sequential order of steps (parallel fulfillment induces complex error handling) do not rely on BPEL only; use also Java, XQuery, PL/SQL consequently use BPEL scopes otherwise your workflow will become very unclear very soon MDSD approach proved to be of value error handling is an important topic continually improve in performance optimizations Tools (Oracle BPEL Process Manager) defensive upgrades to new versions of Java, Oracle BPEL etc. some enhancements of out-of-the-box Oracle BPEL Engine necessary (schema-aware XQuery Engine, GUIs for manual order processing) weaknesses in multithreading architecture, lacking debugger (< ) tricky versioning of process instances necessary Co-working / Communication with Oracle Service Requests not answered promptly, several loops necessary 22 22

23 Outlook intended merge of T-Home and T-Mobile in 2010 merge of some IT systems (CRM, Order Management etc.) probably new system landscape and architecture incorporation of BAM evaluation of Oracle Fusion Middleware 11g evaluation of Oracle Fusion DOO (Distributed Order Orchestration) 23 23

24 A Sandbox Demonstration Motivation for Order Management Key concepts of OMS/OE A closer look towards OMS A closer look towards OE Lessons Learned Demo 24

25 A short Demonstration modeling services / orders in UML generating WSDL / XSD for OMS generic Test GUI that creates orders based on this WSDL order repository (OMS) fulfillment, audit trail (OE) order tracking (OMS) Simulator of Backend Systems monitoring with Operator GUI, BPEL Console (OMS, OE) 25 25

26 Thank you for your attention! -- Q&A -Backup 26

27 Main components of SBP Infrastructure 27

28 Order Lifecycle Management sample lifecycle of an order OMS offers services for order lifecycle mgmt: Create and park an order in OMS Update payload of parked order Send order to fulfillment (new or parked order) Correct a failed order (becomes a parked order again) Force throttled orders into fulfillment (bulk) Create and park Revocation/Replacement for an order Send Revocation/Replacement to fulfillment Automatic lifecycle management: Maintain business history of an order Update OrderResult and state change events from OE Throttling Archiving parked executable in_process failed in_manual_ process parked executable in_process completed Revocation parked Revocation executable revocation in_process revoked OMS OE 28 28

<Insert Picture Here> Service Oriented Architecture

<Insert Picture Here> Service Oriented Architecture Service Oriented Architecture Sean Donahue What does FUSION mean exactly? FUSION Applications FUSION Architecture FUSION FUSION Tech Stack (Apps Unlimited) Oracle Fusion Architecture,

More information

Customer Data Management

Customer Data Management Customer Data Management Single Source of Truth Trading Community Architecture Data Quality Management Customer Data Hub Fusion Middleware Glenn Gesell Tamer Chavusholu Mehran Tavangari OSI Consulting,

More information

SOA Best Practices & Framework Services in Order to Invoice Enterprise Application Integrations

SOA Best Practices & Framework Services in Order to Invoice Enterprise Application Integrations SOA Best Practices & Framework Services in Order to Invoice Enterprise Application Integrations By Raman D. Singh Consulting Manager, SOA Practice Protégé Software Services Booth# 1426 Agenda Today Protégé

More information

<Insert Picture Here> Oracle Business Process Analysis Suite: Overview & Product Strategy

<Insert Picture Here> Oracle Business Process Analysis Suite: Overview & Product Strategy Oracle Business Process Analysis Suite: Overview & Product Strategy Devesh Sharma Dec, 2006 Oracle BPA/BPM Product Management Agenda 1 2 3 4 5 Need for Business Process Management

More information

Accelerating Business Execution The Value of Fusion Middleware for Oracle Applications Customers. Leon Chen Sr. Sales Consultant Oracle

Accelerating Business Execution The Value of Fusion Middleware for Oracle Applications Customers. Leon Chen Sr. Sales Consultant Oracle Accelerating Business Execution The Value of Fusion Middleware for Oracle Applications Customers Leon Chen Sr. Sales Consultant Oracle The following is intended to outline our general product direction.

More information

SOA Praxiserfahrungen

SOA Praxiserfahrungen Nicolai M. Josuttis IT-communication.com 09/08 1 2 Independent consultant continuously learning since 1962 Nicolai Josuttis Systems Architect, Technical Manager finance, manufacturing, automobile, telecommunication

More information

Transition to SOA. Oracle SOA Suite. Martin Jäkle Solution Architect TSBU Fusion Middleware Oracle Deutschland

Transition to SOA. Oracle SOA Suite. Martin Jäkle Solution Architect TSBU Fusion Middleware Oracle Deutschland Transition to SOA Oracle SOA Suite Martin Jäkle Solution Architect TSBU Fusion Middleware Oracle Deutschland SOA Bridging the Gap Increasingly Demanding Users End-to-End Processes Shorter Change Cycles

More information

SOA Best Practices & Framework Services in Order to Invoice Enterprise Application Integrations

SOA Best Practices & Framework Services in Order to Invoice Enterprise Application Integrations SOA Best Practices & Framework Services in Order to Invoice Enterprise Application Integrations A White Paper Oracle Collaborate, April 2008 By Raman D. Singh Consulting Manager, SOA Practice Protégé Software

More information

Business Process Management with SAP NetWeaver. Thomas Volmering Senior Product Manager SAP NetWeaver BPM & BAM SAP AG

Business Process Management with SAP NetWeaver. Thomas Volmering Senior Product Manager SAP NetWeaver BPM & BAM SAP AG Business Process with SAP NetWeaver Thomas Volmering Senior Product Manager SAP NetWeaver BPM & BAM SAP AG BUSINESS PROCESS MANAGEMENT Motivation SAP AG 2004, BPM / Volmering / 2 Why Business Process?

More information

An Oracle E-Business Suite Integration Primer: Technologies and Use Cases

An Oracle E-Business Suite Integration Primer: Technologies and Use Cases 1 An Oracle E-Business Suite Integration Primer: Technologies and Use Cases Veshaal Singh Senior Director ATG Development Neeraj Chauhan Manager Product Management The following is

More information

BPEL PM Preview

BPEL PM Preview Dial-in: 888.283.3946 or +1.210.795.4773 passcode: bpel Press *1 at end to ask verbal questions During conf, use chat feature to ask questions The Oracle BPEL Process Manager BPEL PM 10.1.3 Preview Feature

More information

Introduction to the new features in Oracle BPEL Process Manager

Introduction to the new features in Oracle BPEL Process Manager Introduction to the new features in Oracle BPEL Process Manager 10.1.2 Bhagat Nainani Senior Development Manager Server Technologies Oracle Corporation Introduction to new features in BPEL Process Manager

More information

SOA Success Methodology

SOA Success Methodology SOA Success Methodology Dr Mohamad Afshar Oracle Fusion Middleware Product Management Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information

More information

Integrating Business Processes

Integrating Business Processes Integrating Business Processes BPM and SOA Timo Itälä, Paavo Kotinurmi HELSINKI UNIVERSITY OF TECHNOLOGY Course Map 2007 12.9: EA (Enterprise Architecture) Overview 19.9: ERP (Enterprise Resource Planning)

More information

Application development in a Service Oriented Architecture

Application development in a Service Oriented Architecture Application development in a Service Oriented Architecture Fontys Venlo Software Engineering Colloquium November 28 th, 2007 Frank Dorst, directeur November 28, 2007 2007 Whitehorses B.V. 2 From Spaghetti

More information

بﻟﺎطﻣ ﯽﻠﮐ لﺻﻓ رﺳ Se rvice O r ien t A rch it ec t SOA Workshop: A. Mahjoorian, Session

بﻟﺎطﻣ ﯽﻠﮐ لﺻﻓ رﺳ Se rvice O r ien t A rch it ec t  SOA Workshop: A. Mahjoorian, Session - معماری سرویس گرا (SOA) قسمت ھفتم - مرداد 86 امیر رضا مهجوریان دوره آموزشی شرکت... سر فصل کلی مطالب معرفی معماری سرویس گرا کاربرد معماری سرویس گرا شناخت تفصیلی ادبیات کسب و کار پروتکل ھای معماری سرویس

More information

DOAG SOA SIG, Opening keynote Oracle SOA footprint, post BEA => 2+2 = 5?

DOAG SOA SIG, Opening keynote Oracle SOA footprint, post BEA => 2+2 = 5? DOAG SOA SIG, Opening keynote Oracle SOA footprint, post BEA => 2+2 = 5? Clemens Utschig-Utschig; clemens.utschig@oracle.com.xom Oracle SOA Product Management 1 The following is intended to outline our

More information

Single Euro Payments Area

Single Euro Payments Area Single Euro Payments Area Background The Single Euro Payments Area (SEPA) is a payment-integration initiative of the European Union for simplification of bank transfers. As of March 2012, SEPA consists

More information

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

Cloud Computing Lectures SOA

Cloud Computing Lectures SOA Cloud Computing Lectures SOA 1/17/2012 Service Oriented Architecture Service Oriented Architecture Distributed system characteristics Resource sharing - sharing of hardware and software resources Openness

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 16

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 16 1 Oracle E-Business Suite Integration Best Practices Veshaal Singh, Oracle Jeffrey Hand, Zebra Technologies Sankaran Srinivasan, Zebra Technologies 2 Safe Harbor Statement The following is intended to

More information

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any

More information

Enterprise IT Architectures SOA Part 1

Enterprise IT Architectures SOA Part 1 Enterprise IT Architectures SOA Part 1 Hans-Peter Hoidn hans-peter.hoidn@ch.ibm.com November 17, 2008 Agenda I. SOA Introduction II. Move from C/S to SOA III. Exercise: Integration Architecture for FACT

More information

User Conference France. Introducing iway 7. André BALIFI Solution Architect

User Conference France. Introducing iway 7. André BALIFI Solution Architect User Conference France Introducing iway 7 André BALIFI Solution Architect 1 Driving Principles Move the base toolset to a consolidated framework that will support a wide range of data integration scenarios

More information

Enterprise Services Repository

Enterprise Services Repository Enterprise Services Repository An overview Rathish Balakrishnan SAP NW Product Management SOA Middleware The Approach: Service Oriented Architecture SOA is essential but missing business semantics WEB

More information

Create New Business Processes Using Service Oriented Architecture

Create New Business Processes Using Service Oriented Architecture Create New Business Processes Using Service Oriented Architecture On Demand Insurance Business Problems 1. We lose customers because we process new policy applications too slowly. 2. Our claims processing

More information

Service Oriented Integration (SOI) - Concepts, Technologies, and Best Practices

Service Oriented Integration (SOI) - Concepts, Technologies, and Best Practices Service Oriented Integration (SOI) - Concepts, Technologies, and Best Practices From Integration Infrastructure to Business Value IT managers have been under increasing pressure to migrate a portfolio

More information

SOA Management Pack: Runtime Governance, and Improved Manageability of all Aspects of Your Business Flows

SOA Management Pack: Runtime Governance, and Improved Manageability of all Aspects of Your Business Flows SOA Management Pack: Runtime Governance, and Improved Manageability of all Aspects of Your Business Flows Aalok Muley, Director Platform Products Aalok.Muley@Oracle.com Agenda The

More information

Oracle 1Z Oracle SOA Suite 11g Essentials. Download Full Version :

Oracle 1Z Oracle SOA Suite 11g Essentials. Download Full Version : Oracle 1Z0-478 Oracle SOA Suite 11g Essentials Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-478 A participant in a task can accept or reject it, thus ending the workflow without

More information

Next Generation SOA Conference

Next Generation SOA Conference Next Generation SOA Platform @NoCOUG Conference Kevin Clugage Sr. Principal Product Manager, Oracle Integration February 11, 2010 The following is intended to outline our general

More information

PeopleSoft Enterprise and Oracle Fusion MiddleWare. Adam J. Laine Innowave Technology

PeopleSoft Enterprise and Oracle Fusion MiddleWare. Adam J. Laine Innowave Technology PeopleSoft Enterprise and Oracle Fusion MiddleWare Adam J. Laine Innowave Technology About Innowave Technology Consulting Firm founded in 2005 Provide unique, innovative solutions using Oracle Applications

More information

Oracle Fusion Cloud Vs EBS Upgrade: What suits your business best

Oracle Fusion Cloud Vs EBS Upgrade: What suits your business best Oracle Fusion Cloud Vs EBS 12.2.7 Upgrade: What suits your business best Process/Functionality - Similarities and differences, Key Consideration before making the choice, How oracle fusion suits to your

More information

Get Started on SOA. Process Entry Point Business Process Management (BPM) Business Problem

Get Started on SOA. Process Entry Point Business Process Management (BPM) Business Problem Get Started on SOA Process Entry Point Business Process Management (BPM) Business Problem Our car loan business has grown. Now we need to make our loan processing more effective. can help you solve this

More information

Service-Oriented Computing

Service-Oriented Computing Service-Oriented Computing edited by Dimitrios Georgakopoulos and Michael P. Papazoglou The MIT Press Cambridge, Massachusetts London, England 2009 Massachusetts Institute of Technology All rights reserved.

More information

Taming the SOA Chaos. Debu Panda Oracle

Taming the SOA Chaos. Debu Panda Oracle Taming the SOA Chaos Debu Panda Oracle Many initiatives lack Business/IT collaboration Business - Strategic modeling Requirements, powerpoint, visio model, Export files IT Executable modeling Enter order

More information

Enterprise IT Architectures SOA Part 2

Enterprise IT Architectures SOA Part 2 Enterprise IT Architectures SOA Part 2 Hans-Peter Hoidn hans-peter.hoidn@ch.ibm.com November 19, 2007 Agenda I. Recap SOA Architecture and JKE s Open Account Process II. Business Process Modeling III.

More information

ecommerce: Oracle B2B

ecommerce: Oracle B2B Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver

More information

SAVVION PROGRESS BPM SERVER PROGRESS SAVVION BPM SERVER OVERVIEW

SAVVION PROGRESS BPM SERVER PROGRESS SAVVION BPM SERVER OVERVIEW D A T A S H E E T PROGRESS BPM SERVER PROGRESS BPM SERVER OVERVIEW The process execution and integration capabilities of Progress Savvion BusinessManager Platform are provided by the Progress Savvion BPM

More information

This presentation is for informational purposes only and may not be incorporated into a contract or agreement.

This presentation is for informational purposes only and may not be incorporated into a contract or agreement. This presentation is for informational purposes only and may not be incorporated into a contract or agreement. The following is intended to outline our general product direction. It is intended for information

More information

Service Oriented Architecture for Architects

Service Oriented Architecture for Architects www.peaklearningllc.com Service Oriented Architecture for Architects (5 Days) Overview This five day training course for architects delves deep into various architectural aspects of SOA. It starts with

More information

Distributed Order Orchestration Overview. Oracle Team

Distributed Order Orchestration Overview. Oracle Team Distributed Order Orchestration Overview Oracle Team Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not

More information

Oracle Application Integration Architecture Mission Critical SOA Governance

Oracle Application Integration Architecture Mission Critical SOA Governance Oracle Application Integration Architecture Mission Critical SOA Governance Jason Xie, Principal Strategy Product Manager Agenda SOA Governance Needs Risks without SOA Governance

More information

Evaluating Enterprise Architectures through Executable Models

Evaluating Enterprise Architectures through Executable Models www.thalesgroup.com Evaluating Enterprise Architectures through Executable Models 15th ICCRTS Evolution of C2: Where Have We Been? Where Are We Going? June 22-24 Santa Monica, CA N. Farcet & M. Ludwig

More information

Defining Connectivity to Oracle E-Business Suite using WebSphere JCA Adapter

Defining Connectivity to Oracle E-Business Suite using WebSphere JCA Adapter IBM Software Group Defining Connectivity to Oracle E-Business Suite using WebSphere JCA Adapter Sreelatha Sankaranarayanan (sreelathas@in.ibm.com) WebSphere Adapters Support and Development Prasanna Holla

More information

Possibilities for Modeling and Integration of Business Processes*

Possibilities for Modeling and Integration of Business Processes* BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 5, No 1 Sofia. 2005 Possibilities for Modeling and Integration of Business Processes* Hristina Daskalova, Vladislava Grigorova,

More information

BIAN with BPS Design Methodology

BIAN with BPS Design Methodology IBM Industry Models Development BIAN with BPS Design Methodology SOA Industry Models v.8.8 IBM Industry Models 4-13-2016 Table of Contents BIAN with BPS Design Methodology...2 1.1 BIAN...2 1.1.1 BIAN Service

More information

XML Gateway with BPEL - B2B and A2A integrations are now simpler and faster than ever

XML Gateway with BPEL - B2B and A2A integrations are now simpler and faster than ever XML Gateway with BPEL - B2B and A2A integrations are now simpler and faster than ever Kalyan Sura ksura@hcl.in HCL America Introduction With so much emphasis being made on utilizing Service Oriented Architecture

More information

MTAT Enterprise System Integration. Lecture 6 Service-Oriented Architecture Basic Concepts

MTAT Enterprise System Integration. Lecture 6 Service-Oriented Architecture Basic Concepts MTAT.03.229 Enterprise System Integration Lecture 6 Service-Oriented Architecture Basic Concepts Marlon Dumas marlon. dumas ät ut. ee Where are we? We have seen technology and architectural styles for

More information

Services Governance with IBM WebSphere

Services Governance with IBM WebSphere Services Governance with IBM WebSphere Terry S Burnside IBM March 15, 2012 Session Number (10785) Without proper management and governance of service-oriented architecture (SOA) This could become like

More information

SOA Governance is For Life, Not Just a Strategy

SOA Governance is For Life, Not Just a Strategy SOA Governance is For Life, Not Just a Strategy Mark Simpson Consultancy Director, Griffiths Waite Your Speaker Mark Simpson Consultancy Director Griffiths Waite > 18 years Oracle development and architecture

More information

Oracle Application Integration Architecture

Oracle Application Integration Architecture Oracle Application Integration Architecture Oracle Communications Pre-Built Integrations Release Notes Release 11.1 E25506-02 October 2011 Oracle Application Integration Architecture Oracle Communications

More information

Business Process Management & Intelligent BPM Suites. Shyju Sathi Raghavan

Business Process Management & Intelligent BPM Suites. Shyju Sathi Raghavan Business Process Management & Intelligent BPM Suites Table of Contents 1. BUSINESS PROCESS RE-ENGINEERING (BPR)... 3 2. BUSINESS PROCESS MANAGEMENT (BPM)... 4 3. THREE PILLARS OF BPM... 5 4. BPM LIFE CYCLE...

More information

Enterprise Service-Oriented Architecture Made Easy: Driving Adoption with SAP Discovery System Software. Heiko Stock Dir, Solution Office SAP AG

Enterprise Service-Oriented Architecture Made Easy: Driving Adoption with SAP Discovery System Software. Heiko Stock Dir, Solution Office SAP AG Enterprise Service-Oriented Architecture Made Easy: Driving Adoption with SAP Discovery System Software Heiko Stock Dir, Solution Office SAP AG Success Factors for Adopting Enterprise Service-Oriented

More information

Enterprise IT Architectures SOA Part 2

Enterprise IT Architectures SOA Part 2 Enterprise IT Architectures SOA Part 2 Hans-Peter Hoidn hans-peter.hoidn@ch.ibm.com November 24, 2008 Slot for Exercise Discussion 2 Agenda I. Recap SOA Architecture and JKE s Open Account Process II.

More information

Gain better visibility of your into key business processes and operational data in SAP for better decision making using Oracle BAM

Gain better visibility of your into key business processes and operational data in SAP for better decision making using Oracle BAM Gain better visibility of your into key business processes and operational data in SAP for better decision making using Oracle BAM Bristlecone, Inc. 488 Ellis Street, Mountain View, CA 94043 Phone: 1-650-386-4000

More information

Building an SOA Solution Building a typical SOA application involves the following activities:

Building an SOA Solution Building a typical SOA application involves the following activities: Product Reviews Oracle SOA Suite By Feroze Mohammed; Lawrence Pravin May. 5, 2006 04:30 PM Service-oriented architecture is an architectural approach to building software applications as a collection of

More information

Ultimus Adaptive BPM Suite 8 Product Overview

Ultimus Adaptive BPM Suite 8 Product Overview Accelerate Performance Adaptive BPM Suite 8 Product Overview Contact Information 15000 Weston Parkway Cary, North Carolina 27513 USA Telephone: +1 919 678-0900 Fax: +1 919 678-0901 Accelerate Performance

More information

Roberto Viana Blanco. John Mutumba Bilay, SAP* Process Orchestration. The Comprehensive Guide. Rheinwerk. Publishing

Roberto Viana Blanco. John Mutumba Bilay, SAP* Process Orchestration. The Comprehensive Guide. Rheinwerk. Publishing John Mutumba Bilay, Roberto Viana Blanco SAP* Process Orchestration The Comprehensive Guide Rheinwerk Publishing Bonn Boston Foreword 19 Acknowledgments 21 Introduction 23 PART I Getting Started 1.1 Historical

More information

P R O F E S S IONA L S U MMARY

P R O F E S S IONA L S U MMARY P R O F E S S IONA L S U MMARY Over 7.5 years of professional IT experience in analysis, design, development and implementation, support of Enterprise Application Integration. Experience in installation,

More information

Ultimus Adaptive BPM Suite V8 Product Brief Page 2

Ultimus Adaptive BPM Suite V8 Product Brief Page 2 The Ultimus Adaptive BPM Suite is a complete, enterprise software application designed to create an operational environment that empowers people in the organization to drive process automation and improvement.

More information

Telecommunication Networks Architecture, Operations and Innovation רשתות תקשורת- ארכיטקטורה, תפעול, וחדשנות

Telecommunication Networks Architecture, Operations and Innovation רשתות תקשורת- ארכיטקטורה, תפעול, וחדשנות Telecommunication Networks Architecture, Operations and Innovation רשתות תקשורת- ארכיטקטורה, תפעול, וחדשנות 1 Introduction to data networks 2 Data networks technologies 3 Mobile networks overview 4 OSS

More information

NYC Metro Area Oracle Users Group. Using Application Express with Fusion Middleware. Basheer Khan Oct 2, 2007

NYC Metro Area Oracle Users Group. Using Application Express with Fusion Middleware. Basheer Khan Oct 2, 2007 NYC Metro Area Oracle Users Group Using Application Express with Fusion Middleware Basheer Khan Oct 2, 2007 Agenda Introduction Oracle Application Express (APEX) Oracle Fusion Middleware Oracle BI Publisher

More information

Geschäftsprozessmanagement: Die Brücke zwischen Business und IT. - Der Prozess - Die Software - Die Zukunft des Geschäftsprozessmanagements

Geschäftsprozessmanagement: Die Brücke zwischen Business und IT. - Der Prozess - Die Software - Die Zukunft des Geschäftsprozessmanagements Geschäftsprozessmanagement: Die Brücke zwischen Business und IT - Der Prozess - Die Software - Die Zukunft des Geschäftsprozessmanagements Managing Operative Business Processes Economic goals Quality goals

More information

JBOSS WHITE PAPER. JEMS: The Open Source Platform for SOA THE PLATFORM FOR FLEXIBILITY, INTEROPERABILITY, AND CHOICE

JBOSS WHITE PAPER. JEMS: The Open Source Platform for SOA THE PLATFORM FOR FLEXIBILITY, INTEROPERABILITY, AND CHOICE JEMS: The Open Source Platform for SOA THE PLATFORM FOR FLEXIBILITY, INTEROPERABILITY, AND CHOICE Contents JEMS: THE OPEN SOURCE PLATFORM FOR SOA Executive Summary 1 The SOA Solution 3 SOA Changes IT and

More information

WebSphere for SOA. BPM with SOA: Your Most Potent Weapon to Take on Business Complexity

WebSphere for SOA. BPM with SOA: Your Most Potent Weapon to Take on Business Complexity for SOA BPM with SOA: Your Most Potent Weapon to Take on Business Complexity BPM with SOA: Your Most Potent Weapon to Take on Business Complexity Foundational Extend End-to-End Transform Adapt Dynamically

More information

Oracle Siebel CRM On Demand Integration Pack for JD Edwards EnterpriseOne (Opportunity to Cash)

Oracle Siebel CRM On Demand Integration Pack for JD Edwards EnterpriseOne (Opportunity to Cash) Oracle Siebel CRM On Demand Integration Pack for JD Edwards EnterpriseOne (Opportunity to Cash) An AMX International White Paper January 2008 Page 1 NOTE: The following is intended to outline our general

More information

Author Services 2.0 Hybrid Cloud BPM IBM InterConnect 2017 HBK-6040

Author Services 2.0 Hybrid Cloud BPM IBM InterConnect 2017 HBK-6040 Author Services 2.0 Hybrid Cloud BPM IBM InterConnect 2017 HBK-6040 Macharla Rao Director Integration/API Mgmt & BPM Matt Hejnas Architecture Manager Cedrus 2 WILEY 3 WILEY 4 WILEY 5 WILEY 6 WILEY 7 WILEY

More information

A Fresh Look at the Mainframe

A Fresh Look at the Mainframe A Fresh Look at the Mainframe Unlock the Value of Your Mainframe Assets Using SOA On Demand Insurance Business Problems 1. We want to increase revenues by selling insurance polices through external Brokers

More information

SKF Digitalization. Building a Digital Platform for an Enterprise Company. Jens Greiner Global Manager IoT Development

SKF Digitalization. Building a Digital Platform for an Enterprise Company. Jens Greiner Global Manager IoT Development SKF Digitalization Building a Digital Platform for an Enterprise Company Jens Greiner Global Manager IoT Development 2017-05-18 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved. SKF

More information

IBM s SOA Quality Management Strategy with Rational and Tivoli Terry Goldman Technical Evangelist Rational Software IBM ASEAN/SA

IBM s SOA Quality Management Strategy with Rational and Tivoli Terry Goldman Technical Evangelist Rational Software IBM ASEAN/SA IBM s SOA Quality Management Strategy with Rational and Tivoli Terry Goldman Technical Evangelist Rational Software IBM ASEAN/SA IBM Rational Software Development Conference 2007 2007 IBM Corporation What

More information

Enterprise Asset Management Proposal

Enterprise Asset Management Proposal Enterprise Asset Management Proposal Created by Jason Azim Enterprise Asset Management Guide, Version 8.0 Dated 1/4/2012 Developer Guide Improve Code Developer Guide, Version 8.0 Dated 1/4/2012 Enterprise

More information

Business Process Modeling

Business Process Modeling Software Services for WebSphere Updated June 15, 2005 Agenda Software Services for WebSphere Business Process Management (BPM) Understand the BPM Lifecycle Overview Why is important? What is a Business

More information

Exorcising Costs by Time via Reuse

Exorcising Costs by Time via Reuse Engineering, Operations & Technology Information Technology Exorcising Costs by Time via Reuse Kevin Himka Boeing Enterprise Information Architect Jeff Rice BDS Application Integration Architect November

More information

e-prior Facilitating interoperable electronic procurement across Europe Technical Overview

e-prior Facilitating interoperable electronic procurement across Europe Technical Overview e-prior Facilitating interoperable electronic procurement across Europe Technical Overview Contents What is Open e-prior? 3 Main Open e-prior features 3 Main Open e-prior components 5 Interaction between

More information

Exorcising Costs and Time via Reuse

Exorcising Costs and Time via Reuse Exorcising Costs and Time via Reuse Jim Illback September 30, 2015 Copyright 2014 Boeing. All rights reserved. GPDIS_2015.ppt 1 Presenter Background Jim Illback Associate Tech Fellow Current Assignment

More information

Architecting SOA With A Business Focus

Architecting SOA With A Business Focus Architecting SOA With A Business Focus Dejan Mihajlovic Senior Managing Consultant 2008 IBM Corporation SOA Architect Summit Roadmap What is the impact of SOA on current Enterprise Architectures? Business

More information

nel panorama SOA Il ruolo nuovo del system integrator

nel panorama SOA Il ruolo nuovo del system integrator 20 maggio 2010 Il ruolo nuovo del system integrator nel panorama SOA Agenda Introduction Vision to Reply Introduction Offering to SOA SOA References Vision Conclusions Use Case 2 Agenda Introduction Vision

More information

Oracle Fusion Applications Overview

Oracle Fusion Applications Overview Oracle Fusion Applications Overview Mag. Roman Helmer Application Technology Architect for EE&CIS 1 2 3 4 What is Oracle s Applications Strategy? What are Fusion Applications? What

More information

The Path to SOA for ISVs. ISV Constant: Change

The Path to SOA for ISVs. ISV Constant: Change The Path to SOA for ISVs Ronald Schmelzer Senior Analyst ZapThink, LLC Take Credit Code: SOAISV ISV Constant: Change Competition Mergers & Acquisitions Business Partners Changing Marketplace CHANGE A ISV

More information

Oracle Customer Data Management Integration Base Pack

Oracle Customer Data Management Integration Base Pack Oracle Customer Data Management Integration Base Pack Implementation Guide Release 2.5 E17414-03 January 2012 Oracle Customer Data Management Integration Base Pack Implementation Guide, Release 2.5 E17414-03

More information

Oracle s Service-Oriented Architecture Strategy

Oracle s Service-Oriented Architecture Strategy Pierre Fricke VP and Lead Analyst, Web Application Infrastructure web-infra@dhbrown.com Business velocity refers to a company s ability to generate operational speed while heading in the right direction.

More information

<Insert Picture Here> Enterprise (-wide) SOA?! Thoughts beyond technology and XML

<Insert Picture Here> Enterprise (-wide) SOA?! Thoughts beyond technology and XML Enterprise (-wide) SOA?! Thoughts beyond technology and XML Clemens Utschig-Utschig, clemens.utschig@oracle.com Oracle SOA Product Management What is SOA? -Oriented Architecture is

More information

IBM Solutions for Enhancing Business Process Management (BPM)

IBM Solutions for Enhancing Business Process Management (BPM) IBM Solutions for Enhancing Business Process Management (BPM) (An Introduction to Business Rules Management) Chris Backhouse IBM 3 rd August 2010 Session 7434 Agenda 1 2 3 4 Setting the scene The case

More information

IBM WebSphere Service Registry and Repository, Version 6.0

IBM WebSphere Service Registry and Repository, Version 6.0 Helping you get the most business value from your SOA IBM Repository, Version 6.0 Highlights Provide clear visibility into service Use other standard registries associations and relationships while and

More information

IBM EXAM QUESTIONS & ANSWERS

IBM EXAM QUESTIONS & ANSWERS IBM 000-669 EXAM QUESTIONS & ANSWERS Number: 000-669 Passing Score: 800 Time Limit: 120 min File Version: 36.6 http://www.gratisexam.com/ IBM 000-669 EXAM QUESTIONS & ANSWERS Exam Name: SOA Fundamentals

More information

Enterprise IT Architectures SOA Part 3

Enterprise IT Architectures SOA Part 3 Enterprise IT Architectures SOA Part 3 Hans-Peter Hoidn hans-peter.hoidn@ch.ibm.com November 26, 2007 SOA Because Innovation Requires Change and SOA Makes Change Easier a service? A repeatable business

More information

How Oracle Uses Fusion Middleware: SOA, BPEL, BI, Identity Management, and ECM Inside Oracle

How Oracle Uses Fusion Middleware: SOA, BPEL, BI, Identity Management, and ECM Inside Oracle ORACLE PRODUCT LOGO How Oracle Uses Fusion Middleware: SOA, BPEL, BI, Identity Management, and ECM Inside Oracle Presenters: Mark Field, VP, Oracle Application Labs Barry Geraghty, IT Director, Oracle

More information

Service Oriented Architecture (SOA) Architecture, Standards, Technologies and the Cloud

Service Oriented Architecture (SOA) Architecture, Standards, Technologies and the Cloud Service Oriented Architecture (SOA) Architecture, Standards, Technologies and e Cloud 3-day seminar Give Your Business e Competitive Edge There has been a lot of talk about unsuccessful SOA projects during

More information

Integration Simplified: Native Service-Oriented Architecture in Oracle E-Business Suite

Integration Simplified: Native Service-Oriented Architecture in Oracle E-Business Suite Integration Simplified: Native Service-Oriented Architecture in Oracle E-Business Suite Veshaal Singh Director Development Neeraj Chauhan Manager Product Management The following is intended to outline

More information

Enterprise IT Architectures SOA Part 1

Enterprise IT Architectures SOA Part 1 Enterprise IT Architectures SOA Part 1 Hans-Peter Hoidn hans-peter.hoidn@ch.ibm.com November 12, 2007 Agenda I. SOA Introduction II. Move from C/S to SOA III. SOA Reference Architecture IV. Identification

More information

Information Builders Enterprise Information Management Solution Transforming data into business value Fateh NAILI Enterprise Solutions Manager

Information Builders Enterprise Information Management Solution Transforming data into business value Fateh NAILI Enterprise Solutions Manager Information Builders Enterprise Information Management Solution Transforming data into business value Fateh NAILI Enterprise Solutions Manager June 20 th, 2017 1 Agenda Introduction Information Builders

More information

Business Process Modeling for SOA Prepare for SOA Implementation Dr. Alex Kwok 22 Nov 2004

Business Process Modeling for SOA Prepare for SOA Implementation Dr. Alex Kwok 22 Nov 2004 IBM Software Group Business Process Modeling for SOA Prepare for SOA Implementation Dr. Alex Kwok 22 Nov 2004 Business World Orchestration and Choreography Orchestration An executable business process

More information

Oracle Application Integration Architecture

Oracle Application Integration Architecture Oracle Application Integration Architecture Oracle Customer Master Data Management Integration Implementation Guide Release 11.1 E50310-01 December 2013 The Oracle Customer Master Data Management (MDM)

More information

ARIS Expert Paper. March Steps to Business-Driven SOA.

ARIS Expert Paper. March Steps to Business-Driven SOA. ARIS Expert Paper ARIS Platform Expert Paper March 2007 10 Steps to Business-Driven SOA www.ids-scheer.com Find out more at: www.ids-scheer.com/soa Visionary architecture always requires good building

More information

Master Data Management for the Masses of Data

Master Data Management for the Masses of Data About this research note: Technology Insight notes describe emerging technologies, tools, or processes as well as analyze the tactical and strategic impact they will have on the enterprise. Master Data

More information

Service Oriented Architecture

Service Oriented Architecture 2 Service Oriented Architecture An Overview for the Enterprise Architect 2006 IBM Corporation Agenda IBM SOA Architect Summit Introduction SOA Reference Architecture SOA Roadmap SOA Governance Summary

More information

LabOptimize LIMS. Laboratory Tracking Platform

LabOptimize LIMS. Laboratory Tracking Platform LabOptimize LIMS Laboratory Tracking Platform BioSoft Integrators offers a comprehensive solution to address tracking, process security, analysis and reporting of data with flexibility, scalability and

More information

A Technical Roadmap for Oracle Fusion, E-Business Suite Release 12 and Oracle Fusion Applications

A Technical Roadmap for Oracle Fusion, E-Business Suite Release 12 and Oracle Fusion Applications A Technical Roadmap for Oracle Fusion, E-Business Suite Release 12 and Oracle Fusion Applications John Stouffer Triora Group, LLC john.stouffer@trioragroup.com www.trioragroup.com The Road to Fusion is

More information

Oracle Fusion Middleware 10g R2 Oracle Enterprise Messaging Service. An Oracle White Paper October 2006

Oracle Fusion Middleware 10g R2 Oracle Enterprise Messaging Service. An Oracle White Paper October 2006 Oracle Fusion Middleware 10g R2 Oracle Enterprise Messaging Service An Oracle White Paper October 2006 NOTE: The following is intended to outline our general product direction. It is intended for information

More information

Oracle Application Integration Architecture

Oracle Application Integration Architecture Oracle Application Integration Architecture Agile Product Lifecycle Management Integration Pack for Oracle E-Business Suite: Design to Release Implementation Guide Release 11.2 E36185-01 September 2012

More information