Efficiently Integrate Enterprise Applications with Salesforce.com using Oracle SOA Suite 11g

Size: px
Start display at page:

Download "Efficiently Integrate Enterprise Applications with Salesforce.com using Oracle SOA Suite 11g"

Transcription

1 Efficiently Integrate Enterprise Applications with Salesforce.com using Oracle SOA Suite 11g Cloud Integration Bristlecone, Inc. 488 Ellis Street, Mountain View, CA Phone: Fax:

2 Abstract Nothing endures but change. Today s dynamic market makes it inevitable for companies to ensure the feasibility of enterprise applications to seamlessly integrate with the cloud. Oracle SOA Suite and Salesforce.com s joint clients can automate and streamline between each other, to achieve unparalleled visibility into critical sales pipeline. Moreover, it is of extreme importance for the companies to constantly enhance customer experience to sustain the competitive edge. Introduction Oracle SOA Suite 11g provides a comprehensive suite of components for developing, securing, and monitoring service-oriented architecture (SOA). It also helps enterprise applications to plug into SaaS which is a software delivery model in which software and associated data are centrally hosted on the cloud. Salesforce, on the other hand is one such SaaS application using which we would exhibit how SOA can integrate with the cloud. This white paper will exhibit how one can coalesce Salesforce.com and enterprise applications using Oracle SOA Suite 11g, the leading product in Fusion Middleware stack. The intention is to leverage Salesforce s objects by developing an integration using Oracle SOA Suite components. Problem Statement "Cloud integration is now the top concern for enterprises adopting a SaaS or cloud-based solution." Although cloud evangelists are quick to point out the benefits of cloud computing technologies, enterprise leaders have identified integration as a major obstacle to successfully adopting and deploying Software as a Service (SaaS) and other web-based applications. Challenges in cloud integration: Firewall mediation: How you're going to externalize and consume data that may not be port-80- compliant. Performance required: How fast you need to move data and how quickly the data transformation (supporting semantic mediation) and routing mechanisms need to function. Maintenance and upgrades: How you're going to support new cloud computing or enterprise systems interfaces as they evolve. Governance: How you're monitoring all points of integration and logging the data on the move. Security: How you're encrypting and otherwise protecting sensitive information, stored or on the move, cloud or on-premise. Cloud Integration using Oracle SOA Suite - Foundation for Successful Cloud SaaS Deployments Oracle SOA Suite 11g is one of the best on premise software based integration tools. It offers a solid integration strategy and plan that can support the connections and seamless transfer of data across onpremise and external services. Cloud integration is the key to realizing the full potential of your cloud investment. Without the ability to integrate your data in the cloud with your on-premise applications and databases, you create data silos and inefficiencies that can all but wipe out the benefits of

3 the cloud. All new enterprise architectures require the need to consolidate, collaborate and manage existing applications. Incorporating Salesforce.com Objects into Enterprise Applications At times, it becomes vital that Salesforce.com and mold Salesforce.com to conform to the business needs of the enterprise. The use cases explained in this white paper process is illustrated by Fig1 shown below: The scenarios showcased in this white paper explain how we can read a newly created OPPORTUNITY s data into an Application DB table. Whenever Order id is operations be accessible outside of its website. For instance, an OPPORTUNITY created on cloud should be available on - premise as well and any update made to the same OPPORTUNITY object via an on - premise application should be reflected on the Salesforce website. There is a need to bring into line Salesforce.com objects and enterprise applications. Integration Scenarios This whitepaper will describe how to conquer any intricacies faced while integrating with Salesforce.com Figure 1: SOA Salesforce Integration updated for a particular OPPORTUNITY in Application DB, corresponding changes are made to the same OPPORTUNITY on Salesforce.com Flow 1: Cloud to On - Premise Whenever the ReadSalesforceOpportunity BPEL process is instantiated, it picks recently created or modified Opportunities from Salesforce.com by invoking the query operation on Salesforce.com. Thereafter the records are inserted or updated into staging table on the target application.

4 Flow 2: On Premise to Cloud In the Application Database table, Order id is updated for records those get converted into account or sales order. It automatically, updates the Salesforce OPPORTUNITY record in Salesforce.com; 1) The order number updated now reflects on Salesforce.com for that particular OPPORTUNITY 2) The stage for OPPORTUNITY changes to Closed Won and probability is 100%. Prerequisites: The following software is required to accomplish the steps suggested in this white paper: 1. Oracle SOA Suite 11g ( te/downloads/index.html) 2. Oracle JDeveloper ( 3. Oracle Database ( 4. Salesforce.com login account Integration implementation Download WSDL file form Salesforce.com Login to your Salesforce.com account ( by providing the appropriate credentials. Click on user profile and select setup. On the left hand pane navigate to Develop -> API A list of WSDL and client certificates is displayed. Under the Enterprise WSDL subsection click the Generate Enterprise WSDL link. A new tab opens, which give an option to generate the WSDL document. Click the Generate button. A WSDL file opens. Save this file by providing a suitable name e.g. we used SFDCEnterprise.wsdl. We would require this WSDL file later in SOA project. Entrusting Certificate authority In the WSDL file saved in the previous step an element with the name <service> exists towards the end of the file. Copy the location attributes value from it. It should be of the form Z6O Copy this endpoint URI and open this in a new browser. Although this page will not open, giving something like an HTTP Error 405, you will be able to view the details and download the SSL certificate from here. The process of downloading SSL certificates varies for various browsers. We would display the same for Mozilla Firefox. On the same page that did not open in the previous step, click on the lock sign that appears on the left side of the address bar. A pop up window appears. Click on the More Information button on the same window. An information page comes up, click on the View Certificate button on this page. Another page with the label Certificate Viewer: login.salesforce.com opens up. On this page, move to the Details tab and select the certificate authority band and click on the Export button. The same is illustrated in the diagram below:

5 keytool list keystore DemoTrust.jks -storepass DemoTrustKeyStorePassPhrase Figure 2: Salesforce Certificate Detail Provide a suitable location on your system to save the certificate authority. Next step is to mark this certificate authority as trusted. Save it on a suitable location on your machine. To know the weblogic server s trust keystore location, login to admin console ( On the home page, go to Servers under Environment subsection. Select the Admin Server out of the list of servers displayed. Go to the Keystores tab. Under this tab, select the Demo Trust Keystore path. This is the path where our keystore resides It would be of the form Middleware_Home \wlserver_10.3\server\lib. Next, we need to import this certificate from the authority into our weblogic server s truststore. We are using a windows based system. Using command prompt navigate to the path mentioned in the above step. At this path run the following keytool command: keytool -import -trustcacerts -alias SalesForceCA file VeriSignClass3InternationalServerCA-G3.crt -keystore DemoTrust.jks -storepass DemoTrustKeyStorePassPhrase A message Certificate was added to keystore would come up confirming successful import of the certificate We can verify the same by enlisting all the certificates using the following command: Figure 3: List of Imported certificates in the server The last step is to restart the server to bring the modifications made in the previous steps into effect. Create a BPEL process to invoke Salesforce Login operation. We are using JDeveloper version IDE to develop our BPEL process. Go to File -> New and select SOA Application and provide a suitable name to your application. Click Next and create a SOA project providing a suitable name to it as well. Next drag and drop a BPEL process into the components space. We kept this BPEL as a one way process (Figure 4 below) since ours is a fire and forget scenario wherein the user logs in to Salesforce and inserts the records fetched into an application database. It does not provide any output. Another component that would be brought into the composite is a Web Service Adapter. Create it on the basis of WSDL downloaded in Step 1 of this demonstration.

6 Figure 4: BPEL Configuration On the composite.xml, provide wiring between both the components, i.e. the SFDCReference web service adapter and ReadOpportunityProcess.bpel process. Next, we move to designing the logic within our BPEL process. In Salesforce the first operation that is invoked is the login operation. This process takes 2 inputs: user name and password via payload. The password is a combination of Salesforce password and the security token. Only when we are successfully able to invoke the login operation we would be able to invoke the other operations on Salesforce. An assign activity assigning values to username and password parameters should be placed prior to the Invoke activity that calls Salesforce s login operation. The output payload provides two important details using which we would precede with the subsequent operations. These are as follows: o ServerURL: This is the URL that needs to be called for all subsequent operations (query, update etc.) for this user. o Session ID: This ID needs to be sent as part of header information for all operations post login Configuration for Server URL: Create one variable in BPEL project of EndpointReference type importing the WS Addressing namespace in your.bpel file. xmlns:wsa= 03/03/addressing <variable name="partnerreference" element="wsa:endpointreference"/> Create an assign activity to map ServerURL into this variable, by first copying the URL into partnerreference/wsa:endpointreference/wsa:add ress XPATH and then subsequently assigning this variable directly to the partner link prior to invoking the second operation Configuration for Session Id: Create a variable of message type urn:enterprise.soap.sforce.com: Header Figure 5: Header Variable to hold session id Map the session id retrieved from the login operation into this variable. While invoking the partner link in the headers tab select this variable. Figure 6: Header Tab contains Header Variable Next, we move to individual use cases.

7 Flow 1: As stated earlier, in the cloud to on premise flow we would read the recently created opportunity on Salesforce.com Create a BPEL that would follow all steps that are common to both use cases. Insert an Invoke activity that would invoke the query operation of Salesforce to read records from Salesforce. In the input to the invoke activity we need to provide a query that would fetch records from Salesforce s OPPORTUNITY object. The invoke activity s output variable would contain records fetched from OPPORTUNITY object. Map the response of query operation with input payload of database adapter. Figure 8: Query to DB Transformation Salesforce WSDL exhibits polymorphic behavior. Records need to be substituted as actual Salesforce object Opportunity as shown below- Figure 7: Invoke Activity The query is of the form: SELECT Amount,CloseDate,Description,Id,Name,StageName,Typ e, OrderNumber c FROM OPPORTUNITY WHERE LastHourOpport c=1 This query we would assign to the queryrequestvariable above. Figure 9: Substitution Dialogue Box Lastly, we use a Database adapter to insert/update the records in the target application s staging tables. For this, we select the merge operation of database adapter. Deploy this BPEL on the SOA server and test the same. The complete BPEL process flow looks as the one in Figure 10.

8 Update OPPORTUNITY Use Case Figure 10: Complete BPEL Process for Flow1 We have created a staging table named OPPORTUNITY in our target application that has a structure similar to Salesforce.com OPPORTUNITY object s important attributes. Whenever any update happens in this database table. The changes are propagated via a BPEL process to the Salesforce.com site. After following the procedure up to Step3, create a Database adapter in the same composite.xml. Provide a suitable name to your adapter. In the operations section, select Poll for new or changed record in a table. Next select the Logical Delete option on the After Read page of Database adapter. Accordingly, we configure the database adapter such that whenever any changes occur in this table, they are read and a new BPEL instance is created whose input is the set of updated records. Figure 11: DB Adapter Configuration After the login operation is performed, we invoke the Salesforce webservice for Update operation. In the Invoke activity we select operation as update Prior to this step add a Transform Activity that would map the records fetched from the OPPORTUNITY

9 table of the application DB to the Invoke activity s input. On the target side of this transform activity, you would observe Salesforce WSDL s polymorphic behavior once again. In the Substitute Element or Type Dialog Box, select Salesforce s OPPORTUNITY object. Figure 12: DB to Update Transformation Figure 13: Complete BPEL Process for Flow2 As per the scenario, as soon as OPPORTUNITY gets converted into an ACCOUNT / SALES ORDER, OMS system generates order id corresponding to that OPPORTUNITY and that OPPPORTUNITY is considered as Closed Won. In the transform activity if Order id is present for an OPPORTUNITY, its stage changes to Closed Won, else it is kept same as in target application. Next deploy the BPEL and test the same by updating target application s staging tables. If the changes are evident on Salesforce.com site, then your BPEL is ideal. The complete BPEL process for update opportunity use case looks as the one in Figure 12.

10 This way we created two integrations between SOA and Salesforce. One that would fetch data from Salesforce and other that would update data into Salesforce. Conclusion Integrating Oracle SOA Suite and Salesforce.com would help resolve an organization s CRM requirements. The steps to implement the same can be summarized as follows: 1) Download Enterprise WSDL from Salesforce.com 2) Download Entrusted certificate from Salesforce.com and import the same to your server using keytool utility 3) Create a BPEL that would invoke the login operation. 4) From the output of this operation, capture the Session Id and Server URL that would serve as input to subsequent operations. 5) Invoke other Salesforce operations as per your usage. References [1] - Cloud Integration Episode 2_ Connecting with Oracle RightNow [3] n_white_paper_now [2] [4] [5] asuite/learnmore/advancedsoawp html About Bristlecone Bristlecone is a leader in advising clients on how to maximize the strategic value of their supply chains and assisting them in unleashing that value rapidly through effective use of enabling technologies. With our singular focus on addressing procurement and supply chain challenges, we help our clients to diagnose, design, enable and enhance their operations by encapsulating our years of experience into pre-configured solutions, accelerated deployments and enhancement packs for the leading supply chain technologies. Partner with Bristlecone to optimize your supply chain investment and implement quick time-to-value solutions. To set up a discussion with our team, please send your inquiry to sales@bcone.com

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

Oracle Cloud. Using the Oracle E-Business Suite Adapter Release 18. Part No. E

Oracle Cloud. Using the Oracle E-Business Suite Adapter Release 18. Part No. E Oracle Cloud Using the Oracle E-Business Suite Adapter Release 18 Part No. E66534-10 February 2018 Oracle Cloud Using the Oracle E-Business Suite Adapter, Release 18 Part No. E66534-10 Copyright 2015,

More information

Oracle Policy Automation The modern enterprise advice platform

Oracle Policy Automation The modern enterprise advice platform Oracle Policy Automation The modern enterprise advice platform Features and benefits August 2017 Program agenda 1 2 3 Overview of Oracle Policy Automation New features in August 2017 release For more information

More information

TABLE OF CONTENTS DOCUMENT HISTORY

TABLE OF CONTENTS DOCUMENT HISTORY TABLE OF CONTENTS DOCUMENT HISTORY 4 UPDATE 17D 4 Revision History 4 Overview 4 Optional Uptake of New Features (Opt In) 5 Update Tasks 5 Feature Summary 6 Supply Chain Collaboration 7 Streamline Collaboration

More information

Tivoli Workload Scheduler

Tivoli Workload Scheduler Tivoli Workload Scheduler Dynamic Workload Console Version 9 Release 2 Quick Reference for Typical Scenarios Table of Contents Introduction... 4 Intended audience... 4 Scope of this publication... 4 User

More information

INSIGHTS ENTERPRISE, POWERED BY INSIDEVIEW. Installation Guide

INSIGHTS ENTERPRISE, POWERED BY INSIDEVIEW. Installation Guide INSIGHTS ENTERPRISE, POWERED BY INSIDEVIEW Installation Guide MARCH, 2017 Table of Contents Chapter 1: Introduction to Insights Enterprise, powered by InsideView...2 What s New in this Release?... 3 Chapter

More information

INSIGHTS ENTERPRISE, POWERED BY INSIDEVIEW. Installation Guide

INSIGHTS ENTERPRISE, POWERED BY INSIDEVIEW. Installation Guide INSIGHTS ENTERPRISE, POWERED BY INSIDEVIEW Installation Guide MARCH, 2017 Table of Contents Chapter 1: Introduction to Insights Enterprise, powered by InsideView...2 What s New in this Release?... 3 Chapter

More information

Integration with SAP Hybris Marketing Cloud - Google Analytics and SAP Cloud Platform Integration

Integration with SAP Hybris Marketing Cloud - Google Analytics and SAP Cloud Platform Integration Integration Information SAP Hybris Marketing Cloud Document Version: 1.0 2017-05-09 Integration with SAP Hybris Marketing Cloud - Google Analytics and SAP Cloud Platform Integration How to Set Up the Integration

More information

OpenPEPPOL Test and Onboarding. Last updated 26. Nov OpenPEPPOL AISBL Rond-point Schuman 6, box Brussels Belgium

OpenPEPPOL Test and Onboarding. Last updated 26. Nov OpenPEPPOL AISBL Rond-point Schuman 6, box Brussels Belgium OpenPEPPOL Test and Onboarding Last updated 26. Nov 2018 1040 Brussels Belgium Guideline for test and onboarding OpenPEPPOL Page 1 Document Logistics This is a snapshot of an on-line document. Paper copies

More information

PNMsoft SCE July 2016 Product Version 7.5 and above

PNMsoft SCE July 2016 Product Version 7.5 and above PNMsoft Knowledge Base Sequence User Guides PNMsoft SCE July 2016 Product Version 7.5 and above 2016 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by PNMsoft Ltd

More information

Super Schlumberger Scheduler

Super Schlumberger Scheduler Software Requirements Specification for Super Schlumberger Scheduler Page 1 Software Requirements Specification for Super Schlumberger Scheduler Version 0.2 Prepared by Design Team A Rice University COMP410/539

More information

Oracle Utilities Customer Self Service

Oracle Utilities Customer Self Service Oracle Utilities Customer Self Service Whitepaper: Using OUCSS-OUCCB Optional BPEL Flows Release 2.1.0 E50621-01 November 2013 Oracle Utilities Customer Self Service Whitepaper: Using OUCSS-OUCCB Optional

More information

Setup Real-Time Integration Business Insight using the VirtualBox image For AstraTeq Help Desk Tutorial

Setup Real-Time Integration Business Insight using the VirtualBox image For AstraTeq Help Desk Tutorial Setup Real-Time Integration Business Insight 12.2.1.1.0 using the VirtualBox image For AstraTeq Help Desk Tutorial Table of Contents OVERVIEW... 3 DOWNLOAD AND SETUP THE VIRTUALBOX IMAGE... 3 VIRTUALBOX

More information

Using Oracle E-Business Suite Business Events for Integrations in Integration Cloud Service

Using Oracle E-Business Suite Business Events for Integrations in Integration Cloud Service Using Oracle E-Business Suite Business Events for Integrations in Integration Cloud Service Tutorial: Order to Manual Invoice O R A C L E T U T O R I A L J U N E 2 0 1 6 Disclaimer The following is intended

More information

IBM Business Process Manager Telecom Pack version 7.5. Order Handling How To Guide

IBM Business Process Manager Telecom Pack version 7.5. Order Handling How To Guide IBM Business Process Manager Telecom Pack version 7.5 Order Handling How To Guide Note Before using this information and the product it supports, read the information in Notices at the end of this book.

More information

VMware AirWatch Enterprise Integration Service Guide EIS Server Installation and Integration

VMware AirWatch Enterprise Integration Service Guide EIS Server Installation and Integration VMware AirWatch Enterprise Integration Service Guide EIS Server Installation and Integration Workspace ONE UEM v9.5 Have documentation feedback? Submit a Documentation Feedback support ticket using the

More information

VMware AirWatch Enterprise Integration Service Guide EIS Server Installation and Integration

VMware AirWatch Enterprise Integration Service Guide EIS Server Installation and Integration VMware AirWatch Enterprise Integration Service Guide EIS Server Installation and Integration Workspace ONE UEM v9.6 Have documentation feedback? Submit a Documentation Feedback support ticket using the

More information

Use Hyperion Workspace User's Guide

Use Hyperion Workspace User's Guide Use Hyperion Workspace User's Guide 11.1.1.3 This software or hardware is developed for general use in a variety of information In EPM Workspace, select Tools, then Install, and then Smart View. Oracle

More information

Integration with SAP Hybris Marketing - Google Analytics and SAP Cloud Platform Integration

Integration with SAP Hybris Marketing - Google Analytics and SAP Cloud Platform Integration Integration Information SAP Hybris Marketing Document Version: 1.0 2017-09-18 Integration with SAP Hybris Marketing - Google Analytics and SAP Cloud Platform Integration How to Set Up the Integration with

More information

Oracle Identity Manager 11g: Essentials

Oracle Identity Manager 11g: Essentials Oracle University Contact Us: 1.800.529.0165 Oracle Identity Manager 11g: Essentials Duration: 4 Days What you will learn Oracle Identity Manager 11g (11.1.1.3.0) is a highly flexible and scalable enterprise

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

1Z Oracle Eloqua Marketing Cloud Service 2017 Implementation Essentials Exam Summary Syllabus Questions

1Z Oracle Eloqua Marketing Cloud Service 2017 Implementation Essentials Exam Summary Syllabus Questions 1Z0-349 Oracle Eloqua Marketing Cloud Service 2017 Implementation Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-349 Exam on Oracle Eloqua Marketing Cloud Service 2017

More information

Integration with SAP Hybris Marketing - Google AdWords and SAP Cloud Platform Integration

Integration with SAP Hybris Marketing - Google AdWords and SAP Cloud Platform Integration Integration Information SAP Hybris Marketing Document Version: 2.4.4 2018-02-05 Integration with SAP Hybris Marketing - Google AdWords and SAP Cloud Platform Integration How to Set Up the Integration with

More information

Table of Contents HOL CMP

Table of Contents HOL CMP Table of Contents Lab Overview - HOL-1834-CMP - vrealize Suite Lifecycle Manager... 2 Lab Guidance... 3 Module 1 - Introduction to vrealize Suite Lifecycle Manager (30 minutes)...10 Introduction... 11

More information

A BPTrends Report. March

A BPTrends Report. March A BPTrends Report March 2010 www.bptrends.com Interneer Intellect Version: 6.5 Interneer Inc. 5901 Green Valley Circle, Ste 170, Culver City CA 90230 Tel: 310-348-9665 Fax: 866-622-7122 Web: www.interneer.com

More information

Financial Services Cloud Installation Guide

Financial Services Cloud Installation Guide Financial Services Cloud Installation Guide Salesforce, Spring 18 @salesforcedocs Last updated: April 18, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Financial Services Cloud Installation Guide

Financial Services Cloud Installation Guide Financial Services Cloud Installation Guide Salesforce, Spring 18 @salesforcedocs Last updated: April 26, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Oracle Cloud Using the Oracle Enterprise Performance Management Adapter with Oracle Integration Cloud

Oracle Cloud Using the Oracle Enterprise Performance Management Adapter with Oracle Integration Cloud Oracle Cloud Using the Oracle Enterprise Performance Management Adapter with Oracle Integration Cloud E95783-04 September 2018 Oracle Cloud Using the Oracle Enterprise Performance Management Adapter with

More information

EnPROVE. Energy consumption prediction with building usage measurements for software-based decision support

EnPROVE. Energy consumption prediction with building usage measurements for software-based decision support FP7-ICT-2009-4-248061 EnPROVE Energy consumption prediction with building usage measurements for software-based decision support Instrument: Thematic Priority: Small or medium-scale focused research project

More information

Agile Product Lifecycle Management

Agile Product Lifecycle Management Agile Product Lifecycle Management Agile Plug-in for Enterprise Manager User Guide Release 9.3.3 E39304-02 December 2013 Agile Plug-in for Enterprise Manager User Guide, Release 9.3.3 E39304-02 Copyright

More information

Oracle Application Integration Architecture

Oracle Application Integration Architecture Oracle Application Integration Architecture Siebel CRM Integration Pack for Oracle Communications Billing and Revenue Management: Agent Assisted Billing Care Implementation Guide Release 11.2 E26496-02

More information

Agile Product Lifecycle Management

Agile Product Lifecycle Management Agile Product Lifecycle Management Agile Plug-in for Enterprise Manager User Guide v9.3.0.2 Part No. E17311-01 June 2010 Agile Plug-in for Enterprise Manager User Guide Oracle Copyright Copyright 1995,

More information

SuccessFactors (SFQL) QueryMore Scenario

SuccessFactors (SFQL) QueryMore Scenario SAP SuccessFactors.com (HCM) and Oracle E Business Suite (ERP) Integration SuccessFactors (SFQL) QueryMore Scenario Bristlecone Whitepaper September 2017 Author: Mr. Ranga Reddy Mekala Table of Contents

More information

Oracle Application Integration Architecture

Oracle Application Integration Architecture 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 E20504-05 September

More information

MOBILIZING ORACLE APPLICATIONS ERP. An Approach for Building Scalable Mobility Solutions. A RapidValue Solutions Whitepaper

MOBILIZING ORACLE APPLICATIONS ERP. An Approach for Building Scalable Mobility Solutions. A RapidValue Solutions Whitepaper MOBILIZING ORACLE APPLICATIONS ERP An Approach for Building Scalable Mobility Solutions A RapidValue Solutions Whitepaper TABLE OF CONTENTS Executive Overview Typical Architecture for Mobilizing Oracle

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in for Oracle Enterprise Manager Ops Center Guide 12c Release 5 (12.1.0.5.0) E38529-08 April 2016 This document describes how to use the Infrastructure

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

This guide which is primarily intended for administrators and supervisors includes the following sections:

This guide which is primarily intended for administrators and supervisors includes the following sections: Micro Focus Service Desk - Getting Started May 2017 The Micro Focus Service Desk Getting Started guide gives information about the basic steps that are required to quickly configure Micro Focus Service

More information

Setup the demo application according to the instructions included in the SSO-JWT Starter Kit located in the readme.md file.

Setup the demo application according to the instructions included in the SSO-JWT Starter Kit located in the readme.md file. SSO via JWT Tutorial Introduction Single Sign-On (SSO) is a mechanism that allows a system to authenticate users and subsequently tell Sisense that the user has been authenticated. The user is then allowed

More information

Oracle Enterprise Manager 13c Cloud Control

Oracle Enterprise Manager 13c Cloud Control Oracle Enterprise Manager 13c Cloud Control Oracle SOA Management Pack Enterprise Edition MANAGEMENT FOR ORACLE SOA SUITE AND ORACLE SERVICE BUS APPLICATIONS Oracle Enterprise Manager is Oracle s integrated

More information

IBM Cognos 10.2 BI Demo

IBM Cognos 10.2 BI Demo IBM Cognos 10.2 BI Demo IBM Cognos Course Overview: In this training, participants acquire skills needed to develop activity, modeling and some admin works. Each and every concept is supported with documents

More information

Informatica Cloud Application Integration

Informatica Cloud Application Integration Data Sheet Informatica Cloud Application Integration Key Benefits Implement processes and APIs with zero code Build APIs with sophisticated data integration capabilities Leverage out-of-the-box connectivity

More information

Newspaper Association of America

Newspaper Association of America Prepared For: Newspaper Association of America RFI Response August 11, 2009 Confidential Internal Document This document, any amendments hereto, and the information contained herein is confidential, sensitive,

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

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

Pepperi Plugin for SAP Business One

Pepperi Plugin for SAP Business One Pepperi Plugin for SAP Business One April. 2015 Ver 1.1 Contents 1 Introduction...4 1.1 System Requirements... 4 1.2 Glossary... 4 2 System Architecture...5 3 Overview...6 3.1 Installation and Setup...

More information

Integration Framework for SAP Business One

Integration Framework for SAP Business One Integration Framework for SAP Business One Setup of Secured Connection to SAP Business One Mobile App Android, iphone, ipad and ipod Touch PUBLIC Global Roll-out October 2018, Krisztián Pápai Table of

More information

Compiere ERP Starter Kit. Prepared by Tenth Planet

Compiere ERP Starter Kit. Prepared by Tenth Planet Compiere ERP Starter Kit Prepared by Tenth Planet info@tenthplanet.in www.tenthplanet.in 1. Compiere ERP - an Overview...3 1. Core ERP Modules... 4 2. Available on Amazon Cloud... 4 3. Multi-server Support...

More information

Integration Patterns and Practices

Integration Patterns and Practices Integration Patterns and Practices Version 40.0, Summer 17 @salesforcedocs Last updated: August 31, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

What s New & Enhanced?

What s New & Enhanced? What s New & Enhanced? Deepak Sharma AIOUG North India Chapter {Co-Founder} Sr. Application Administrator I at Oceaneering. Over 6 years of experience as a DBA in implementing and maintaining different

More information

Oracle Fusion Middleware Oracle Document Routing and Approval Process Accelerator 11gRelease 1 ( )

Oracle Fusion Middleware Oracle Document Routing and Approval Process Accelerator 11gRelease 1 ( ) Oracle Fusion Middleware Oracle Document Routing and Approval Process Accelerator 11gRelease 1 (11.1.1.6.0) April 2012 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Disclaimer This

More information

Oracle Policy Automation Cloud Service

Oracle Policy Automation Cloud Service Oracle Policy Automation Cloud Service Features and Benefits August 2013 Agenda Introducing Oracle Policy Automation Cloud Service Overview of Capabilities New Features in August 2013 Further contacts

More information

Copyright Basware Corporation. All rights reserved.. Vendor Portal User Guide Basware P2P 17.3

Copyright Basware Corporation. All rights reserved.. Vendor Portal User Guide Basware P2P 17.3 Copyright 1999-2017 Basware Corporation. All rights reserved.. Vendor Portal User Guide Basware P2P 17.3 Table of Contents 1 Vendor Portal Registration... 4 1.1 Register for Vendor Portal...4 2 Vendor

More information

How-To Guide SAP NetWeaver Document Version: How to Configure Integration between SAP CRM and SAP Cloud for Customers using SAP HCI

How-To Guide SAP NetWeaver Document Version: How to Configure Integration between SAP CRM and SAP Cloud for Customers using SAP HCI How-To Guide SAP NetWeaver Document Version: 1.0-2013-12-09 How to Configure Integration between SAP CRM and SAP Cloud for Customers using SAP HCI Document History Document Version Description 1.0 First

More information

Perfect Service. Testing: Landesk Service Desk 7.6. Dr. Götz Güttich

Perfect Service. Testing: Landesk Service Desk 7.6. Dr. Götz Güttich Testing: Landesk Service Desk 7.6 Perfect Service Dr. Götz Güttich With Service Desk 7.6, LANDesk delivers a powerful IT service management solution for IT service providers and support organizations.

More information

SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS

SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS Introduction Scribe Online is a leading integration platform as a service (ipaas) from Scribe Software. It has a multi-tenant architecture that scales by distributing

More information

IBM Cognos Dynamic Cubes Version Installation and Configuration Guide IBM

IBM Cognos Dynamic Cubes Version Installation and Configuration Guide IBM IBM Cognos Dynamic Cubes Version 11.0.0 Installation and Configuration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 29. Product Information

More information

INSIGHTS, POWERED BY INSIDEVIEW

INSIGHTS, POWERED BY INSIDEVIEW INSIGHTS, POWERED BY INSIDEVIEW Installation Guide Product Version 4.2 SEPTEMBER, 2017 Table of Contents Chapter 1: Introduction to Insights, powered by InsideView...3 What s New in this Release?... 4

More information

Anywhere Access to ERP Applications with Parallels RAS. White Paper Parallels Remote Application Server 2018

Anywhere Access to ERP Applications with Parallels RAS. White Paper Parallels Remote Application Server 2018 Anywhere Access to ERP Applications with Parallels RAS White Paper Parallels Remote Application Server 2018 Table of Contents Introduction... 3... 3 Centralized Management Reduces Cost and Complexity...

More information

Primavera Analytics and Primavera Data Warehouse Security Overview

Primavera Analytics and Primavera Data Warehouse Security Overview Analytics and Primavera Data Warehouse Security Guide 15 R2 October 2015 Contents Primavera Analytics and Primavera Data Warehouse Security Overview... 5 Safe Deployment of Primavera Analytics and Primavera

More information

Integration Patterns and Practices

Integration Patterns and Practices Integration Patterns and Practices Version 41.0, Winter 18 @salesforcedocs Last updated: November 16, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

An Oracle White Paper November Cloud Integration A Comprehensive Solution

An Oracle White Paper November Cloud Integration A Comprehensive Solution An Oracle White Paper November 2012 Cloud Integration A Comprehensive Solution Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Integrating SAP Hybris Cloud for Customer with SAP Hybris Marketing Cloud using HANA Cloud Integration Integration Guide

Integrating SAP Hybris Cloud for Customer with SAP Hybris Marketing Cloud using HANA Cloud Integration Integration Guide SAP Cloud for Customer Integrating SAP Hybris Cloud for Customer with SAP Hybris Marketing Cloud using HANA Cloud Integration Integration Guide February 2017 Table of Contents Integrating SAP Cloud for

More information

Configuring Single Sign-On for Oracle Enterprise Performance Management Cloud. Configuring Single Sign-On Between EPM Cloud and NetSuite

Configuring Single Sign-On for Oracle Enterprise Performance Management Cloud. Configuring Single Sign-On Between EPM Cloud and NetSuite Oracle Cloud Configuring Single Sign-On for Oracle Enterprise Performance Management Cloud In this Document Overview Configuring Single Sign-On Between EPM Cloud and Oracle Fusion Cloud Configuring Single

More information

ESRI WORKFLOW MANAGER (WMX) User Guide Rev 3

ESRI WORKFLOW MANAGER (WMX) User Guide Rev 3 ESRI WORKFLOW MANAGER (WMX) User Guide Rev 3 Abstract Acquisition of Land for the Diversion Program requires all communications with the land owner and related documents be easily accessible. The ESRI

More information

Benefits of Deploying Oracle E-Business Suite on Oracle Cloud At Customer O R A C L E W H I T E P A P E R D E C E M B E R 2017

Benefits of Deploying Oracle E-Business Suite on Oracle Cloud At Customer O R A C L E W H I T E P A P E R D E C E M B E R 2017 Benefits of Deploying Oracle E-Business Suite on Oracle Cloud At Customer O R A C L E W H I T E P A P E R D E C E M B E R 2017 Disclaimer The following is intended to outline our general product direction.

More information

2 Introduction to BI Launch Pad

2 Introduction to BI Launch Pad 2 Introduction to BI Launch Pad This session introduces SAP BusinessObjects BI Launch Pad by describing how to log into the environment, navigating around, and managing areas where you save your work.

More information

Automating Key Business Processes with NetSuite ERP & Salesforce CRM

Automating Key Business Processes with NetSuite ERP & Salesforce CRM Cloud Integration Best Practices Whitepaper Automating Key Business Processes with NetSuite ERP & Salesforce CRM Do your employees spend significant time reentering and maintaining customer and order information

More information

This Integration Guide explains how to enable the Fiksu data connector within the Adobe Marketing. Fiksu Integration Guide

This Integration Guide explains how to enable the Fiksu data connector within the Adobe Marketing. Fiksu Integration Guide This Integration Guide explains how to enable the data connector within the Adobe Marketing Cloud. Integration Guide 1 Intended Audience This document is intended for professionals and online marketers

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

Agile PLM on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017

Agile PLM on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017 Agile PLM on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017 Oracle Ravello Cloud Service Oracle Ravello is an overlay cloud that enables enterprises to run their VMware and KVM applications,

More information

Solutions Implementation Guide

Solutions Implementation Guide Solutions Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Administration Guide Setup, Configuration and Administration THE BEST RUN

Administration Guide Setup, Configuration and Administration THE BEST RUN A GUIDE FOR ADMINISTRATORS PUBLIC SAP Global Track and Trace Document Version: Cloud 2018.12a 2018-12-14 Setup, Configuration and Administration 2018 SAP SE or an SAP affiliate company. All rights reserved.

More information

MyDHL USER GUIDE.

MyDHL USER GUIDE. PC-Based Custom Web-Based Built Vendor PC-Based Partner Web-Based Integrated 1 MyDHL USER GUIDE MyDHL helps you accomplish more in fewer steps, with quick and easy access to the full online suite of DHL

More information

Emergency Responder and Intrado V9-1-1 Enterprise Services

Emergency Responder and Intrado V9-1-1 Enterprise Services Emergency Responder and Intrado V9-1-1 Enterprise Services Cisco Emergency Responder (Emergency Responder) supports Intrado V9-1-1 for Enterprise Service in the Cisco Unified Communications environment

More information

TrackITSystem. Facility Manager Documentation Installation and User Guide

TrackITSystem. Facility Manager Documentation Installation and User Guide TrackITSystem Facility Manager Documentation Installation and User Guide Pages 1 to 7 apply to the install and configuration for admins. The user guide begins on page 8 In a browser, go to the installation

More information

SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS

SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS Introduction Scribe Online is a leading integration platform as a service (ipaas) from Scribe Software. It has a multi-tenant architecture that scales by distributing

More information

HP Cloud Maps for rapid provisioning of infrastructure and applications

HP Cloud Maps for rapid provisioning of infrastructure and applications Technical white paper HP Cloud Maps for rapid provisioning of infrastructure and applications Table of contents Executive summary 2 Introduction 2 What is an HP Cloud Map? 3 HP Cloud Map components 3 Enabling

More information

Exact Synergy Service Management. User Guide

Exact Synergy Service Management. User Guide Exact Synergy Service Management User Guide Exact Synergy Service Management Despite the continued efforts of Exact to ensure that the information in this document is as complete and up-to-date as possible,

More information

Deltek Touch for Maconomy. Touch 2.2 User Guide

Deltek Touch for Maconomy. Touch 2.2 User Guide Deltek Touch for Maconomy Touch 2.2 User Guide July 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may

More information

Hubcase for NetSuite Installation and Configuration Guide

Hubcase for NetSuite Installation and Configuration Guide Hubcase for NetSuite Installation and Configuration Guide 1. Overview... 2 2. Install Hubcase for NetSuite bundle / SuiteApp... 3 3. Setup and configure your Hubcase membership... 6 3.1. Sign up and activate

More information

Oracle Planning and Budgeting Cloud. What s New in the June Update (17.06)

Oracle Planning and Budgeting Cloud. What s New in the June Update (17.06) Oracle Planning and Budgeting Cloud What s New in the June Update (17.06) May 2017 Revised: June 2017 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE PLANNING AND BUDGETING CLOUD, JUNE UPDATE... 4 ANNOUNCEMENTS

More information

Understanding Manage Orders Purchase Orders, Acknowledge Purchase Orders, View Order Summary, View Receipts

Understanding Manage Orders Purchase Orders, Acknowledge Purchase Orders, View Order Summary, View Receipts Understanding Manage Orders Purchase Orders, Acknowledge Purchase Orders, View Order Summary, View Receipts Logging into the 3M supplier portal (Supplier Direct) enables suppliers to view purchase order

More information

HANDS-ON ACTIVITIES DATA ARCHITECTURE & MANAGEMENT FEBRUARY, Hands-on Activities: Data Architecture & Management 1

HANDS-ON ACTIVITIES DATA ARCHITECTURE & MANAGEMENT FEBRUARY, Hands-on Activities: Data Architecture & Management 1 HANDS-ON ACTIVITIES DATA ARCHITECTURE & MANAGEMENT FEBRUARY, 2018 Hands-on Activities: Data Architecture & Management 1 1. MIGRATION OF HISTORICAL DATA Understand data movement best practices, considerations,

More information

Cisco Workload Optimization Manager: Setup and Use Cases

Cisco Workload Optimization Manager: Setup and Use Cases Cisco Workload Optimization Manager: Setup and Use Cases 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 1 of 49 Contents Introduction Minimum requirements

More information

See What's Coming in Oracle Service Cloud. Release Content Document

See What's Coming in Oracle Service Cloud. Release Content Document See What's Coming in Oracle Service Cloud Release Content Document November 2015 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE SERVICE CLOUD NOVEMBER RELEASE OVERVIEW... 4 WEB CUSTOMER SERVICE... 5 Oracle

More information

Reduce the time & labor to process and archive documents. Reduce document cycle times. Create audit trails of document handling activities

Reduce the time & labor to process and archive documents. Reduce document cycle times. Create audit trails of document handling activities NashuaDocs NashuaDocs works for you: Reduce costs Reduce the time & labor to process and archive documents Minimise shipping costs Enhance productivity Reduce document cycle times Improve accuracy Ensure

More information

ACD MIS Supervisor Manual

ACD MIS Supervisor Manual Notice Note that when converting this document from its original format to a.pdf file, some minor font and format changes may occur. When viewing and printing this document, we cannot guarantee that your

More information

Administration Guide Setup, Configuration and Administration THE BEST RUN

Administration Guide Setup, Configuration and Administration THE BEST RUN ADMINISTRATION GUIDE PUBLIC SAP Global Track and Trace Document Version: Cloud 2019.03a 2019-03-13 Setup, Configuration and Administration 2019 SAP SE or an SAP affiliate company. All rights reserved.

More information

The main reasons for selecting a Client Centric strategy to modernize systems are

The main reasons for selecting a Client Centric strategy to modernize systems are Client Centric Examples. for NonStop Information Services The main reasons for selecting a Client Centric strategy to modernize systems are A. The ability to produce results quickly with a focus on leveraging

More information

Table of Contents. Headquarters Cary, NC USA US Fax International

Table of Contents. Headquarters Cary, NC USA US Fax International Desktop Automation Table of Contents Easy Automation for the Contact Center and Back Office... 3 Use Cases... 3 Activity Intelligence + Automation... 4 Cicero Automation Architecture... 5 Cicero Automation

More information

PeopleSoft on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017

PeopleSoft on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017 PeopleSoft on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017 Oracle Ravello Cloud Service Oracle Ravello is an overlay cloud that enables enterprises to run their VMware and KVM applications,

More information

Cisco recommends that you have knowledge of Hosted Collaboration Solution (HCS) deployments.

Cisco recommends that you have knowledge of Hosted Collaboration Solution (HCS) deployments. Contents Introduction Prerequisites Requirements Components Used Background Information Configure Verify Troubleshoot Introduction This document describes the HCS License Manager (HLM), which runs as a

More information

Virtual Contact Center

Virtual Contact Center Virtual Contact Center Zendesk CTI Integration Configuration Guide Version 8.0 Revision 1.0 Copyright 2013, 8x8, Inc. All rights reserved. This document is provided for information purposes only and the

More information

Systems Management of the SAS 9.2 Enterprise Business Intelligence Environment Gary T. Ciampa, SAS Institute Inc., Cary, NC

Systems Management of the SAS 9.2 Enterprise Business Intelligence Environment Gary T. Ciampa, SAS Institute Inc., Cary, NC Paper 276-2010 Systems Management of the SAS 9.2 Enterprise Business Intelligence Environment Gary T. Ciampa, SAS Institute Inc., Cary, NC ABSTRACT The evolution of the SAS 9.2 architecture provides a

More information

How to Configure Integration between SAP CRM and SAP Cloud for Customer using SAP HCI

How to Configure Integration between SAP CRM and SAP Cloud for Customer using SAP HCI How to Configure Integration between SAP CRM and SAP Cloud for Customer using SAP HCI 1 How-To Guide Document Version: 1505 2015.06.08 How to Configure Integration between SAP CRM and SAP Cloud for Customer

More information

Copyright...5. Acumatica ERP and Acumatica Framework Installation Guide...6. System Requirements for Acumatica ERP 2017 R2... 7

Copyright...5. Acumatica ERP and Acumatica Framework Installation Guide...6. System Requirements for Acumatica ERP 2017 R2... 7 Contents 2 Contents Copyright...5 Acumatica ERP and Acumatica Framework Installation Guide...6 System Requirements for Acumatica ERP 2017 R... 7 System Requirements for Acumatica Framework 2017 R... 10

More information

PREFERENCE MANAGER FOR MICROSOFT DYNAMICS. Implementation & Connectivity Overview

PREFERENCE MANAGER FOR MICROSOFT DYNAMICS. Implementation & Connectivity Overview PREFERENCE MANAGER FOR MICROSOFT DYNAMICS Implementation & Connectivity Overview TABLE OF CONTENTS 1. Introduction... 3 2. Supported Versions... 3 3. Prerequistes... 3 4. Integration Overview... 3 5. Data

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

Oracle Linux Management with Oracle Enterprise Manager 13c Cloud Control O R A C L E W H I T E P A P E R M A R C H

Oracle Linux Management with Oracle Enterprise Manager 13c Cloud Control O R A C L E W H I T E P A P E R M A R C H Oracle Linux Management with Oracle Enterprise Manager 13c Cloud Control O R A C L E W H I T E P A P E R M A R C H 2 0 1 7 Introduction 2 Oracle Enterprise Manager 13c overview 2 Managing Oracle Linux

More information