Salesforce.com Integration Using SAP PI: A Case Study

Size: px
Start display at page:

Download "Salesforce.com Integration Using SAP PI: A Case Study"

Transcription

1 Salesforce.com Integration Using SAP PI: A Case Study Applies to: SAP NetWeaver Process Integration 7.1. For more information, visit the Service Bus-based Integration homepage. Summary This article explains step by step procedure to integrate SAP PI with Salesforce.com (SFDC) using the enterprise WSDL. Author: Prasanna Vittal Company: Wipro Technologies Created on: 23 June 2010 Author Bio Prasanna Vittal is currently working for Wipro Technologies as an SAP XI/PI Consultant. He has over 3.5 years of experience in SAP Integration Technologies viz. SAP XI/PI and SAP MII SAP AG 1

2 Table of Contents Introduction... 3 Overview... 3 Step by Step Execution... 4 Create developer account in SFDC... 4 Download the Enterprise WSDL... 4 Testing the WSDL using SOAPUI... 4 Implementation Using SAP PI Design Steps... 6 Configuration Steps Testing the Interface Related Content Disclaimer and Liability Notice SAP AG 2

3 Introduction In our current project, the client has decided to replace SAP CRM with Salesforce.com (SFDC Online CRM). We are doing a POC to integrate SFDC with SAP ECC using SAP XI. I would like to thank Bhavesh Kantilal, Saravana Kuppusamy, Harsh, Santhosh, Unnamalai and Pragya for helping me out during the implementation of this Proof of Concept. Overview Salesforce.com (SFDC) is a Software as a Service (SaaS) company that distributes business software on a subscription basis. It is best known for its Customer Relationship management (CRM) products. This article explains various steps involved in the integration of SFDC with SAP ECC using SAP PI 7.1. SFDC exposes a web services interface that can be accessed using an Enterprise WSDL. Some of the web services are Create Account, Update/Upsert/Delete Account, Query Account Details etc., In the article, I will show how to call a simple SFDC web service - getservertimestamp, which when called, gives the server timestamp as response. Once we achieve this, we can implement any of the web service that SFDC offers, with some modifications to the WSDL file SAP AG 3

4 Step by Step Execution Create developer account in SFDC Register yourself at You will get the username and password by . You need to login to SFDC and get the security token, which should be appended with the password, while calling the login web service of SFDC. To get this, login to and then go to Setup->Personal Setup->My Personal Information->Reset My Security Token. You will receive the security token by . Download the Enterprise WSDL Login to and go to Setup->App Setup->Develop->API. Under Enterprise WSDL, click on Generate Enterprise WSDL and save it as a.wsdl file on your local machine. Testing the WSDL using SOAPUI We did this optional step to see the WSDL structure and to test the various web services exposed in the Enterprise WSDL. Below steps will help you understand what we did. a. To implement any business scenario(e.g. Create an Account in SFDC database, query Account details from SFDC or to Update Account details in SFDC, etc) using the WSDL approach, SFDC will want you to call the corresponding web service(query, Create, Update, Upsert etc). b. But, to call these web services, we will need an additional sessionid/serverurl attributes to be set in the SOAP Header of the web service request. To get this, we have to first call the login web service, which returns the sessionid & the serverurl. To call the login web service, we will need the username/ (password+security token) (got during the registration process). Below is the screenshot of the login web service request SAP AG 4

5 Once we receive the Session ID and Server URL, we have to set them in the header of getservertimestamp web service and get the Server s timestamp as response. Below is the screenshot for the same SAP AG 5

6 Implementation Using SAP PI 7.1 Now, we will implement the same using SAP PI 7.1. Design Steps Below are the design steps that we need to perform in the Enterprise Service Repository: Create the namespace and import the Enterprise WSDL as an external definition SAP AG 6

7 Create an Outbound Synchronous Service Interface. Assign the External Definition s loginrequest as the Output message SAP AG 7

8 Similarly, assign getservertimestampresponse from the external definition, as the input message. Create an Inbound Synchronous Service Interface. Assign the External Definition s getservertimestamprequest as the Output message and getservertimestampresponse as the input message, as shown in the above screenshot SAP AG 8

9 Create a message mapping. Load the loginrequest at the Source side and getservertimestamprequest at the target side SAP AG 9

10 Create a UDF (SampleUDF1) and use Dynamic Configuration to set the parameter TServerLocation with the Server URL that we received in the response message of the login web service. We found out that this Server URL is always constant, so we have manually set this in the UDF. We can assign this UDF to any node in the target. We will create a Java Mapping Program to obtain session ID and server URL by doing a SOAP lookup, and set these fields in the SOAP Envelope. Create a new Java Mapping Class using SAP NetWeaver Developer Studio. We will use the DOM parser to parse the SOAP response. In the execute() method, we will call two functions. In the first one, we will pass the username and password (password+security token, without + ) to the SOAP lookup API to login to the SFDC and get the Session ID. For details regarding SOAP Lookup, refer to Bhavesh s Blog in the Related Articles section. In the second function, we will add the SOAP Envelope to the incoming payload and set the sessionid field in the SOAP Header. For the complete Code, refer to uaruna s wiki page. You can also find this link under Related Contents section, at the end of this article. Export the Java Class as a.jar file and import it into the ESR under Imported Archives SAP AG 10

11 Create an Operation Mapping and use the Message mapping and Java mapping in sequence SAP AG 11

12 Configuration Steps Below are the configuration steps that we need to perform in the Integration Directory: Create Business Components for the Sender ECC system and SFDC Receiver. Create a Receiver SOAP Communication Channel (Channel1). Since this channel will be used in the SOAP lookup, it should not be associated with any Receiver Agreement. In this channel, we provide the Target URL ( and SOAP Action (login) SAP AG 12

13 Create another Receiver SOAP Communication Channel (Channel2). Settings will be as follows: o o Provide Target URL (it will be over written by the Dynamic Configuration). Check Use Adapter-Specific Message Attributes and Variable Transport Binding, since we are setting the TServerLocation attribute using Dynamic Configuration within the UDF SAP AG 13

14 o o Under Conversion Parameters, check Do Not Use SOAP Envelope, as we are manually building the SOAP Envelope, to set the fields in the SOAP Header. Provide the SOAP Action (getservertimestamp) SAP AG 14

15 o Since we are using the SOAP Adapter with option Do Not Use SOAP Envelope, the content type of the incoming message will be application/xml. We need to change it to text/xml. To achieve this, we need to use the adapter module MessageTransformBean before the XISOAPAdapterBean and set the parameter Transform.ContentType to text/xml. Create Receiver Determination and Interface Determination with ECC System as the sender and Business Component for SFDC as the receiver. In the Interface Determination, use the Operation Mapping and Inbound Interface that we created in ESR. Create a Receiver Agreement and provide the Communication Channel (Channel2) SAP AG 15

16 Testing the Interface Steps to be followed for testing this interface are as follows: 1. We can trigger this interface from the sender ECC system in two ways. a. ABAP Proxy b. RFC Call. (For testing purpose, we can even use Runtime Workbench s test tool or an HTTP Client) 2. We don t have to pass any values in the source message, as we are directly passing the credentials in the java Mapping. Below is a screenshot of RWB s test tool. 3. The screenshot of the request message is below: 2010 SAP AG 16

17 4. After the SOAP lookup, this is how the message looks like: 5. Screenshot of the response message Related Content 1) Java Mapping Program Wiki by uaruna +How+to+add+SOAP+Envelope+in+Java+Mapping 2) SOAP Lookup Bhavesh s Blog SAP AG 17

18 Disclaimer and Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces and therefore is not supported by SAP. Changes made based on this information are not supported and can be overwritten during an upgrade. SAP will not be held liable for any damages caused by using or misusing the information, code or methods suggested in this document, and anyone using these methods does so at his/her own risk. SAP offers no guarantees and assumes no responsibility or liability of any type with respect to the content of this technical article or code sample, including any liability resulting from incompatibility between the content within this document and the materials and services offered by SAP. You agree that you will not hold, or seek to hold, SAP responsible or liable with respect to the content of this document SAP AG 18

Salesforce Integration Using PI: How to Perform Query and Other DML Operations Using the Enterprise WSDL

Salesforce Integration Using PI: How to Perform Query and Other DML Operations Using the Enterprise WSDL Salesforce Integration Using PI: How to Perform Query and Other DML Operations Using the Enterprise WSDL Applies to: SAP NetWeaver Process Integration 7.1 Summary A case study for integrating Salesforce.com

More information

A Step-by-Step guide on SMTP Configuration and File to Mail Scenario Using Process Integration Scenario in PI 7.1

A Step-by-Step guide on SMTP Configuration and File to Mail Scenario Using Process Integration Scenario in PI 7.1 A Step-by-Step guide on SMTP Configuration and File to Mail Scenario Using Process Integration Scenario in PI 7.1 Applies to: SAP NetWeaver Process Integration 7.1 For more information, visit the SOA Management

More information

Configuration of Enterprise Services using SICF and SOA Manager

Configuration of Enterprise Services using SICF and SOA Manager Configuration of Enterprise Services using SICF and SOA Manager Applies to: SAP NetWeaver 7.0 SP14 and above. For more information, visit the SOA Management homepage. Summary This document will provide

More information

Creating Web Service from Function Modules/BAPIs & Integrating with SAP Interactive Forms

Creating Web Service from Function Modules/BAPIs & Integrating with SAP Interactive Forms Creating Web Service from Function Modules/BAPIs & Integrating with SAP Interactive Forms Applies to: ECC 6.0, SAP Interactive forms by Adobe. Summary This document states how to create Web Service from

More information

Sending an Image File Through XI in a File-to-Mail Scenario

Sending an Image File Through XI in a File-to-Mail Scenario SDN Contribution Sending an Image File Through XI in a File-to-Mail Scenario Summary This article depicts the usage of the Additional files parameter in a File adapter to send a binary file(image) through

More information

Exposing RFC as Web Service and Consuming Web Service in Interactive Forms in ABAP

Exposing RFC as Web Service and Consuming Web Service in Interactive Forms in ABAP Exposing RFC as Web Service and Consuming Web Service in Interactive Forms in ABAP Applies to: SAP Interactive Forms by Adobe and Web Service in ABAP. For more information, visit SAP Interactive forms

More information

Restricting Search Operators in any Search View

Restricting Search Operators in any Search View Restricting Search Operators in any Search View Applies to SAP CRM 2007 and SAP CRM 7.0. For more information, visit the Customer Relationship Management homepage. Summary The purpose of this article is

More information

Using PI to Exchange PGP Encrypted Files in a B2B Scenario

Using PI to Exchange PGP Encrypted Files in a B2B Scenario Using PI to Exchange PGP Encrypted Files in a B2B Scenario Applies to: SAP Net Weaver Process Integration 7.1 (SAP PI 7.1). For more information, visit the SOA Management homepage. Summary This document

More information

Creating Mobile Applications on Top of SAP, Part 1

Creating Mobile Applications on Top of SAP, Part 1 Creating Mobile Applications on Top of SAP, Part 1 Applies to: SAP ERP 6.0, NetWeaver > 7.10. For more information, visit the Mobile homepage. Summary This tutorial is starting point for a series of tutorials

More information

ABAP Proxy Interfacing

ABAP Proxy Interfacing Applies to: This document applies to SAP versions ECC 6.0. Summary This article contains the guidelines for using the ABAP Proxy interfacing. ABAP proxies are used when ABAP applications needs to send

More information

ABAP Debugging Tips and Tricks

ABAP Debugging Tips and Tricks Applies to: This article applies to all SAP ABAP based products; however the examples and screen shots are derived from ECC 6.0 system. For more information, visit the ABAP homepage. Summary This article

More information

Consuming Services in SOA Manager

Consuming Services in SOA Manager Consuming Services in SOA Manager Applies to: ECC 60. PI 7.1. For more information, visit the SOA Management homepage. Summary Here you ll find a little example of how you can consume Enterprise Services

More information

Step by Step Guide for Language Translation Tool

Step by Step Guide for Language Translation Tool Step by Step Guide for Language Translation Tool Applies to: SAP ECC 6.0 Summary This document helps people to understand the steps involved in translation of standard SAP screen and also helps to change

More information

SAP NetWeaver Developer Studio 7.30 Installation Guide

SAP NetWeaver Developer Studio 7.30 Installation Guide SAP NetWeaver Developer Studio 7.30 Installation Guide Applies to: SAP NetWeaver CE 7.30, SAP Net Weaver Developer Studio (7.30). For more information, visit the Web Dynpro ABAP homepage. Summary This

More information

SAP CRM 2007 - Campaign Automation

SAP CRM 2007 - Campaign Automation SAP CRM 2007 - Campaign Automation Applies to: SAP CRM 7.0 For more information, visit the Customer Relationship Management homepage Summary Campaign Automation is designed to help you in the increasingly

More information

Standard SAP Configuration of SMS through HTTP with Third Party SMS Gateway

Standard SAP Configuration of SMS through HTTP with Third Party SMS Gateway Standard SAP Configuration of SMS through HTTP with Third Party SMS Gateway Applies to: SAP R/3 4.7 EE SR 200,ECC 5.0 For more information, visit the Web Services homepage. Summary There is an increasing

More information

Deleting the User Personalization done on Enterprise Portal

Deleting the User Personalization done on Enterprise Portal Deleting the User Personalization done on Enterprise Portal Applies to: SRM 7.0 with EP 6.0. For more information, visit the Supplier Relationship Management homepage Summary This document explains the

More information

Quick Viewer: SAP Report Generating Tool

Quick Viewer: SAP Report Generating Tool Quick Viewer: SAP Report Generating Tool Applies to: SAP Net Weaver 7.0, ABAP, SAP ECC 6.0, to all those who wants to learn about SAP Report Generating Tool: Quick Viewer. For more information, please

More information

ALE Settings, for Communication between a BW System and an SAP System

ALE Settings, for Communication between a BW System and an SAP System ALE Settings, for Communication between a BW System and an SAP System Applies to: SAP ECC 6.0. For more details, visit the EDW homepage. Summary This document helps people to create ALE settings, which

More information

SDN Community Contribution

SDN Community Contribution SDN Community Contribution (This is not an official SAP document.) Disclaimer & Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces

More information

SAP CRM Middleware Configurations

SAP CRM Middleware Configurations SAP CRM Middleware Configurations Applies to: SAP CRM Middleware Configurations. For more information, visit the Customer Relationship Management homepage. Summary This whitepaper elaborates the steps

More information

SAP CRM 7.0 E2C Setup: CRM via Email Toolset

SAP CRM 7.0 E2C Setup: CRM via Email Toolset SAP CRM 7.0 E2C Setup: CRM via Email Toolset Applies to: SAP CRM 700/NW 701. For more information, visit the Customer Relationship Management homepage. Summary This article describes the Email2CRM functionality

More information

How to Integrate CRM 2007 WebClient UI with SAP NetWeaver Portal

How to Integrate CRM 2007 WebClient UI with SAP NetWeaver Portal How to Integrate CRM 2007 WebClient UI with SAP NetWeaver Portal Applies to: Enterprise Portal, CRM 2007. For more information, visit the Portal and Collaboration homepage. Summary This document will describe

More information

Step by Step guide of Report-to- Report Interface in BW Reporting

Step by Step guide of Report-to- Report Interface in BW Reporting Step by Step guide of Report-to- Report Interface in BW Reporting Applies to: SAP BI 7.0. For more information, visit the Business Intelligence Home Page Summary This paper gives a detail understanding

More information

Configuring HTTPs Connection in SAP PI 7.10

Configuring HTTPs Connection in SAP PI 7.10 Configuring HTTPs Connection in SAP PI 7.10 Applies to: SAP NetWeaver 7.1x For more information, visit the SOA Management homepage. Summary In the new version on SAP PI there are several changes in Https

More information

Step by Step Procedure to Block and Debug a CIF Queue Flowing from R/3 to APO System

Step by Step Procedure to Block and Debug a CIF Queue Flowing from R/3 to APO System Step by Step Procedure to Block and Debug a CIF Queue Flowing from R/3 to APO System Applies to: SAP R/3 and SAP APO. For more information, visit the ABAP homepage. Summary This article gives a detailed

More information

Step by Step Guide How to Copy Flat File from Other Application Server to BI and Load through Info Package

Step by Step Guide How to Copy Flat File from Other Application Server to BI and Load through Info Package Step by Step Guide How to Copy Flat File from Other Application Server to BI and Load through Info Package Applies to: SAP BW 7.x. For more information, visit the EDW Homepage. Summary The objective of

More information

SAP BW - Excel Pivot Chart and Pivot Table report (Excel)

SAP BW - Excel Pivot Chart and Pivot Table report (Excel) SAP BW - Excel Pivot Chart and Pivot Table report (Excel) Applies to: SAP BI Consultants. For more information, visit the EDW HomePage. Summary Document explains to create Excel Pivot Chart and Pivot Table

More information

Converting and Exporting Data in XML Format

Converting and Exporting Data in XML Format Converting and Exporting Data in XML Format Applies to: SAP BW 3.5, SAP BI 7.0 etc. For more information, visit the EDW homepage. Summary This paper briefs about Information broadcasting that allows you

More information

Creating Email Content Using SO10 Objects and Text Symbols

Creating Email Content Using SO10 Objects and Text Symbols Creating Email Content Using SO10 Objects and Text Symbols Applies to: SAP ECC 6.0. For more information, visit the ABAP homepage. Summary The article describes the benefits of SO10 objects in comparison

More information

XSLT Mapping in SAP PI 7.1

XSLT Mapping in SAP PI 7.1 Applies to: SAP NetWeaver Process Integration 7.1 (SAP PI 7.1) Summary This document explains about using XSLT mapping in SAP Process Integration for converting a simple input to a relatively complex output.

More information

Transfer of GL Master from Source SAP System to a Target SAP System through IDOCS

Transfer of GL Master from Source SAP System to a Target SAP System through IDOCS Transfer of GL Master from Source SAP System to a Target SAP System through IDOCS Applies to: SAP ECC 6.0. For more information, visit the Enterprise Resource Planning homepage. Summary SAP offers a wide

More information

ABAP How To on SQL Trace Analysis

ABAP How To on SQL Trace Analysis Applies To: ABAP Summary SQL trace is a performance analysis tool that shows how open SQL statements are converted into native SQL statements. The following document discusses the performance measure utility

More information

Table of Contents. Passing Data across Components through Component Controller between Two Value Nodes

Table of Contents. Passing Data across Components through Component Controller between Two Value Nodes Passing Data across Components through Component Controller between Two Value Nodes Applies to: SAP CRM WEBCLIENT UI 2007. For more information, visit the Customer Relationship Management homepage Summary

More information

Step by Step Guide to Archiving and Deleting of XML Messages in SAP NetWeaver PI

Step by Step Guide to Archiving and Deleting of XML Messages in SAP NetWeaver PI Step by Step Guide to Archiving and Deleting of XML Messages in SAP NetWeaver PI Applies to: SAP NetWeaver Process Integration 3.0 / 7.0 / 7.1. Summary This document explains the step by step procedure

More information

Creating Transaction and Screen Variants

Creating Transaction and Screen Variants Creating Transaction and Screen Variants Applies to: Tested on SAP version ECC 6. Summary This article explain a way to create Transaction and Screen Variants to change screen layouts. And how to assign

More information

SAP CRM System 6.0/7.0. For more information, visit the Customer Relationship Management homepage

SAP CRM System 6.0/7.0. For more information, visit the Customer Relationship Management homepage Applies to: SAP CRM System 6.0/7.0. For more information, visit the Customer Relationship Management homepage Summary This article explains how to customize the Fact Sheet for different business roles.

More information

Data Extraction and Retraction in BPC-BI

Data Extraction and Retraction in BPC-BI Data Extraction and Retraction in BPC-BI Applies to: Document is applicable to all the BPC 7.0 NW version users and the users BI 7.0 integration with BPC. For more information, visit the Enterprise Performance

More information

Setup Guide Central Monitoring of SAP NetWeaver Proces Integration 7.3 with SAP Solution Manager 7.1. Active Global Support February 2011

Setup Guide Central Monitoring of SAP NetWeaver Proces Integration 7.3 with SAP Solution Manager 7.1. Active Global Support February 2011 Setup Guide Central Monitoring of SAP NetWeaver Proces Integration 7.3 with SAP Solution Manager 7.1 Active Global Support February 2011 Agenda Overview Landscape Setup Recommended Setup SLD/LMDB Synchronization

More information

How to Generate Stack Xml for Ehp4 and Above Upgrade

How to Generate Stack Xml for Ehp4 and Above Upgrade How to Generate Stack Xml for Ehp4 and Above Upgrade Applies to: ECC 6.0 EHP4 or Above. For more information, visit the Enterprise Resource Planning homepage Summary For upgrading Enhancement Package4

More information

Forgot or Lock "Administrator or J2EE_ADMIN" Password

Forgot or Lock Administrator or J2EE_ADMIN Password Forgot or Lock "Administrator or J2EE_ADMIN" Password Applies to: SAP NetWeaver Portal 7.0. For more information, visit the Portal and Collaboration homepage. Summary This article provides you a step guide

More information

How to Assign Transport Request for Language Translation?

How to Assign Transport Request for Language Translation? How to Assign Transport Request for Language Translation? Applies to: SAP ECC 6.0. For more information, visit the ABAP homepage. Summary This document helps people to create a transport request for the

More information

Embedding Crystal Reports inside ECC ALV Reports

Embedding Crystal Reports inside ECC ALV Reports Embedding Crystal Reports inside ECC ALV Reports Applies to: Applies to ECC Enhancement Package 5 Summary These steps describe how to configure and set up embedded Crystal Reports inside the ECC system

More information

BW Performance Monitoring

BW Performance Monitoring Applies to: SAP BW 7.0. For more information, visit the EDW homepage. Summary This article helps to achieve BW statistics of the system which will help a user to calculate the performance for a particular

More information

Creation and Configuration of Business Partners in SAP CRM

Creation and Configuration of Business Partners in SAP CRM Creation and Configuration of Business Partners in SAP CRM Applies to: SAP CRM 2005 (5.0) and above release. For more information, visit the Customer Relationship Management homepage. Summary This document

More information

SAP CRM-BW Adapter an Overview

SAP CRM-BW Adapter an Overview Applies to: SAP CRM / SAP BW (3.5 / 7.0). For more information, visit the Customer Relationship Management homepage. Summary This article gives an overview about the BW Adapter that is used in the BI-CRM

More information

How to Modify, Create and Delete Table Entries from SE16

How to Modify, Create and Delete Table Entries from SE16 How to Modify, Create and Delete Table Entries from SE16 Applies to This article applies to all SAP ABAP based products; however the examples and screen shots are derived from ECC 6.0 system. For more

More information

Reverse Transport Mechanism in SAP BI

Reverse Transport Mechanism in SAP BI Reverse Transport Mechanism in SAP BI Applies to: SAP Net Weaver 2004s BI 7.0 Ehp1 SP 08. For more information, visit the EDW homepage Summary This document helps you to understand the detailed step by

More information

SAP FI - Automatic Payment Program (Configuration and Run)

SAP FI - Automatic Payment Program (Configuration and Run) SAP FI - Automatic Payment Program (Configuration and Run) Applies to: SAP ECC 6.0. For more information, visit the Financial Excellence homepage. Summary This document helps you to configure and run Automatic

More information

Process Controlled Workflow SRM 7.0 (Using BRF)

Process Controlled Workflow SRM 7.0 (Using BRF) Process Controlled Workflow SRM 7.0 (Using BRF) Applies to: SAP SRM 7.0 For more information, visit the Supplier Relationship Management homepage. Summary This document helps user to create workflow s

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Configure Outbound Web Services 7.13.7 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject

More information

Working with the ERP Integration Service of EMC Documentum Process Services for SAP

Working with the ERP Integration Service of EMC Documentum Process Services for SAP Working with the ERP Integration Service of EMC Documentum Process Services for SAP Applied Technology Abstract EMC Documentum Process Services for SAP is a new product that integrates with EMC Documentum

More information

Create Automatic Mail Notification/ Email Alert for Process Chain Monitoring

Create Automatic Mail Notification/ Email Alert for Process Chain Monitoring Create Automatic Mail Notification/ Email Alert for Process Chain Monitoring Applies to: SAP BW 3.X, Business Intelligence 7.0. For more information, visit the EDW homepage. Summary This document will

More information

Business Scenario Using GP/Web Dynpro with Back and Forth 3 Level Process and Dynamic Approvers in a Loop

Business Scenario Using GP/Web Dynpro with Back and Forth 3 Level Process and Dynamic Approvers in a Loop Business Scenario Using GP/Web Dynpro with Back and Forth 3 Level Process and Dynamic Approvers in a Loop Applies to This Article applies to Guided Procedures, Web Dynpro Java, Business Process Modeling

More information

Step By Step Procedure to Create Logical File Path and Logical File Name

Step By Step Procedure to Create Logical File Path and Logical File Name Step By Step Procedure to Create Logical File Path and Logical File Name Applies to: SAP BW (3.5) / SAP BI(7.0) For more information, visit Business Intelligence Homepage. Summary These documents describe

More information

StreamServe Persuasion SP5 StreamStudio

StreamServe Persuasion SP5 StreamStudio StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other

More information

Creating and Scheduling Publications for Dynamic Recipients on SAP Business Objects Enterprise

Creating and Scheduling Publications for Dynamic Recipients on SAP Business Objects Enterprise Creating and Scheduling Publications for Dynamic Recipients on SAP Business Objects Enterprise Applies to: SAP BusinessObjects Enterprise. For more information, visit the Business Objects homepage. Summary

More information

Integration of SAP R/3 with BO Universe Using Data Federator Connector

Integration of SAP R/3 with BO Universe Using Data Federator Connector Integration of SAP R/3 with BO Universe Using Data Federator Connector Applies to: SAP R/3 and SAP BusinessObjects XI 3.1 Universe with Data Federator integration For more information, visit the Business

More information

Posting Messages into XI

Posting Messages into XI Posting Messages into XI Applies to: SAP NetWeaver Exchange Infrastructure Summary This article demonstrates how easy it is to post XML/SOAP messages into SAP NetWeaver Exchange Infrastructure (XI) using

More information

Tutorial - Creating Pop Up Window Using New Features in WebDynpro Java CE 7.1 Ehp1

Tutorial - Creating Pop Up Window Using New Features in WebDynpro Java CE 7.1 Ehp1 Tutorial - Creating Pop Up Window Using New Features in WebDynpro Java CE 7.1 Ehp1 Applies to: SAP Net Weaver CE 7.11. For more information visit the User Interface Home Page. For more information visit

More information

Middleware Configuration and Monitoring for Master Data Transfer from SRM to ECC

Middleware Configuration and Monitoring for Master Data Transfer from SRM to ECC Middleware Configuration and Monitoring for Master Data Transfer from SRM to ECC Applies to: SRM 5.0, SRM 7.0 For more information, visit the Supplier Relationship Management homepage. Summary Master data

More information

SAP Workflow in Plain English

SAP Workflow in Plain English Applies to: SAP Workflow. For more information, visit the Business Process Modeling homepage. Summary This article describes the basics of SAP workflow in very simple terms along with the basic terminology

More information

Deploying Crystal Reports on Top of a SAP BI Query

Deploying Crystal Reports on Top of a SAP BI Query Deploying Crystal Reports on Top of a SAP BI Query Applies to: SAP BI NetWeaver 2004s, Crystal Reports 2008. For more information, visit the Business Intelligence homepage. Summary The objective of the

More information

Upgrade made easy: SAP Tools, Accelerators and Best Practices for migrating from SAP NetWeaver PI to SAP NetWeaver Process Orchestration

Upgrade made easy: SAP Tools, Accelerators and Best Practices for migrating from SAP NetWeaver PI to SAP NetWeaver Process Orchestration Upgrade made easy: SAP Tools, Accelerators and Best Practices for migrating from SAP NetWeaver PI to SAP NetWeaver Process Orchestration Mathias Huber September 2013 Agenda Options for migrating from SAP

More information

Configuring Java IDoc Adapter (IDoc_AAE) in Process Integration. : SAP Labs India Pvt.Ltd

Configuring Java IDoc Adapter (IDoc_AAE) in Process Integration. : SAP Labs India Pvt.Ltd Configuring Java IDoc Adapter (IDoc_AAE) in Process Integration Author Company : Syed Umar : SAP Labs India Pvt.Ltd TABLE OF CONTENTS INTRODUCTION... 3 Preparation... 3 CONFIGURATION REQUIRED FOR SENDER

More information

Implementing TinyMCE JavaScript HTML Editor for Web Page Composer (WPC) within the SAP Portal

Implementing TinyMCE JavaScript HTML Editor for Web Page Composer (WPC) within the SAP Portal Implementing TinyMCE JavaScript HTML Editor for Web Page Composer (WPC) within the SAP Portal Applies to: SAP Netweaver Portal 7.0 SP 18, Knowledge Management (KM), Moxiecode TinyMCE. For more information,

More information

SOLGARI CLOUD BUSINESS COMMUNICATION SERVICES CLOUD CONTACT CENTRE MICROSOFT DYNAMICS INTEGRATION

SOLGARI CLOUD BUSINESS COMMUNICATION SERVICES CLOUD CONTACT CENTRE MICROSOFT DYNAMICS INTEGRATION SOLGARI CLOUD BUSINESS COMMUNICATION SERVICES CLOUD CONTACT CENTRE MICROSOFT DYNAMICS INTEGRATION APRIL 2015 Microsoft Dynamics CRM Integration The Solgari CRM Integration module provides out of the box

More information

SAP CRM 7.0 for Newbies: (Part 1) Simple BOL Object Creation for CRM Webclient UI

SAP CRM 7.0 for Newbies: (Part 1) Simple BOL Object Creation for CRM Webclient UI SAP CRM 7.0 for Newbies: (Part 1) Simple BOL Object Creation for CRM Webclient UI Applies to: This article applies to SAP Netweaver 7.0, CRM ABAP 7.0. For more information, visit the Customer Relationship

More information

enterprise 'jroic'ssiona!

enterprise 'jroic'ssiona! Microsoft BizTalk 2010: Line of Business Systems Integration A practical guide to integrating Line of Business systems with BizTalk Server 2010 Kent Weare Richard Seroter Sergei Moukhnitski Thiago Almeida

More information

Extractor in R/3 and Delta Queue

Extractor in R/3 and Delta Queue Applies to: SAP BW (3.5) / SAP BI(7.0). For more information, visit the Business Intelligence homepage. Summary This article contains all the information required in order to create data sources in R/3

More information

Adobe Document Service Configuration and Troubleshooting Guide

Adobe Document Service Configuration and Troubleshooting Guide Adobe Document Service Configuration and Troubleshooting Guide Applies to: SAP NetWeaver 7.0. For more information, visit the Application Management homepage. Summary This document is intended to guide

More information

Workflow Troubleshooting and Monitoring in SAP ECC 6.0

Workflow Troubleshooting and Monitoring in SAP ECC 6.0 Workflow Troubleshooting and Monitoring in SAP ECC 6.0 Applies to: ECC 6.0, Workflow Troubleshooting & Monitoring Summary A major advantage of workflow is the ability to monitor the workflow steps according

More information

Security Provider Integration Kerberos Authentication

Security Provider Integration Kerberos Authentication Security Provider Integration Kerberos Authentication 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are

More information

Creating New Unit of Measure in SAP BW

Creating New Unit of Measure in SAP BW Creating New Unit of Measure in SAP BW Applies to: Software Component: SAP_BW. For more information, visit the Business Intelligence homepage. Release: 700 Summary This article is intended to serve as

More information

Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT

Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT ZohoCRM NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted

More information

Developing Applications for Integration between PI and SAP ERP in Different Network Domains or Landscapes

Developing Applications for Integration between PI and SAP ERP in Different Network Domains or Landscapes Developing Applications for Integration between PI and SAP ERP in Different Network Domains or Landscapes Applies to: SAP NetWeaver Process Integration 7.1+ SAP NetWeaver 7.02 (ABAP) Summary This document

More information

Scenario... 3 Step-by-Step Solution... 3. Virtual Infocube... 4 Function Module (Virtual InfoCube)... 5 Infocube Data Display... 7

Scenario... 3 Step-by-Step Solution... 3. Virtual Infocube... 4 Function Module (Virtual InfoCube)... 5 Infocube Data Display... 7 SAP BI - Virtual Infocube based on Function Module (Transport History) Applies to: SAP BW 3.5 / BI 7.0 consultants accustomed with SAP ABAP skills. For more information, visit EDW Homepage. Summary Explains

More information

Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Salesforce

Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Salesforce SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Sentinel Cloud V.3.6 Quick Start Guide

Sentinel Cloud V.3.6 Quick Start Guide Sentinel Cloud V.3.6 Quick Start Guide 2 Sentinel Cloud Quick Start Guide Software Version This documentation is applicable for Sentinel Cloud 3.6. Document Revision History Part Number 007-012143-001

More information

Compounding in Infoobject and Analyzing the Infoobject in a Query

Compounding in Infoobject and Analyzing the Infoobject in a Query Compounding in Infoobject and Analyzing the Infoobject in a Query Applies to: SAP BI 7.0. For more information, visit the EDW homepage Summary This article demonstrates step by step process of creating

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 OTM and SOA Mark Hagan Principal Software Engineer Oracle Product Development Content What is SOA? What is Web Services Security? Web Services Security in OTM Futures 3 PARADIGM 4 Content What is SOA?

More information

Invoice Collaboration: Self Billing Invoice

Invoice Collaboration: Self Billing Invoice Invoice Collaboration: Self Billing Invoice Applies to: Supply Network Collaboration 5.1 with the back end system ERP 5.0 with SP 10 and above. For more information, visit the Supply Chain Management homepage.

More information

Table of Content. SAP Query creation and transport Procedure in ECC6

Table of Content. SAP Query creation and transport Procedure in ECC6 SAP Query creation and transport Procedure in ECC6 Applies to: ECC6, For more information, visit the Enterprise Resource Planning homepage. Summary This article guides the how to technique for creating

More information

Integrating Siebel CRM with Microsoft SharePoint Server

Integrating Siebel CRM with Microsoft SharePoint Server Integrating Siebel CRM with Microsoft SharePoint Server www.sierraatlantic.com Headquarters 6522 Kaiser Drive, Fremont CA 94555, USA Phone: 1.510.742.4100 Fax: 1.510.742.4101 Global Development Center

More information

Integrating SAP CRM with the SAP R/3 HR module

Integrating SAP CRM with the SAP R/3 HR module Applies To: Integrating SAP CRM with the SAP R/3 Summary An organization that has an active, and a SAP CRM system in operation, would be likely to want employee data from R/3 to be maintained in CRM as

More information

SAP NetWeaver Process Integration - Demo Example Configuration

SAP NetWeaver Process Integration - Demo Example Configuration SAP NetWeaver 7.40 f SAP NetWeaver Process Integration - Demo Example Configuration Document Version 1.0 October 2013 SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany T +49/18 05/34 34 24 F +49/18 05/34

More information

Data Flow from LBWQ/SMQ1 to RSA7 in ECC and Delta Extraction in BI

Data Flow from LBWQ/SMQ1 to RSA7 in ECC and Delta Extraction in BI Data Flow from LBWQ/SMQ1 to RSA7 in ECC and Delta Extraction in BI Applies to: SAP NetWeaver Business Warehouse (Formerly BI), Will also work on SAP BI 3.5. Business Intelligence homepage. Summary This

More information

e-filing Secure Web Service User Manual

e-filing Secure Web Service User Manual e-filing Secure Web Service User Manual Page1 CONTENTS 1 BULK ITR... 6 2 BULK PAN VERIFICATION... 9 3 GET ITR-V BY TOKEN NUMBER... 13 4 GET ITR-V BY ACKNOWLEDGMENT NUMBER... 16 5 GET RETURN STATUS... 19

More information

Web services with WebSphere Studio: Deploy and publish

Web services with WebSphere Studio: Deploy and publish Web services with WebSphere Studio: Deploy and publish Table of Contents If you're viewing this document online, you can click any of the topics below to link directly to that section. 1. Introduction...

More information

SPDD & SPAU Adjustments Handbook

SPDD & SPAU Adjustments Handbook SPDD & SPAU Adjustments Handbook Applies to: SAP Upgrades. For more information, visit the ABAP homepage. Summary Through this document the reader will be able to get a detailed idea about the working

More information

Step by Step Procedure to Create Broadcasters, to Schedule and to Enhance of SAP- BI Queries from Query Designer

Step by Step Procedure to Create Broadcasters, to Schedule and to Enhance of SAP- BI Queries from Query Designer Step by Step Procedure to Create Broadcasters, to Schedule and to Enhance of SAP- BI Queries from Query Designer Applies to: SAP Business Intelligence 7.0. For more information, visit the EDW homepage.

More information

PHP Language Binding Guide For The Connection Cloud Web Services

PHP Language Binding Guide For The Connection Cloud Web Services PHP Language Binding Guide For The Connection Cloud Web Services Table Of Contents Overview... 3 Intended Audience... 3 Prerequisites... 3 Term Definitions... 3 Introduction... 4 What s Required... 5 Language

More information

PingFederate. Salesforce Connector. Quick Connection Guide. Version 4.1

PingFederate. Salesforce Connector. Quick Connection Guide. Version 4.1 PingFederate Salesforce Connector Version 4.1 Quick Connection Guide 2011 Ping Identity Corporation. All rights reserved. PingFederate Salesforce Quick Connection Guide Version 4.1 June, 2011 Ping Identity

More information

SAP BW - Generic Datasource Function Module (Multiple Delta Fields)

SAP BW - Generic Datasource Function Module (Multiple Delta Fields) SAP BW - Generic Datasource Function Module (Multiple Delta Fields) Applies to: SAP BW 3.5 / SAP 7.0 Consultants. For more information, visit the EDW HomePage. Summary Fetch the delta on multiple fields

More information

Understanding BW Non Cumulative Concept as Applicable in Inventory Management Data Model

Understanding BW Non Cumulative Concept as Applicable in Inventory Management Data Model Understanding BW Non Cumulative Concept as Applicable in Inventory Management Data Model Applies to: SAP R/3, SAP ECC 6.0 and SAP BI NetWeaver 2004s. For more information, visit the Business Intelligence

More information

Integrating SAP with Salesforce to benefit your sales staff. Matthews International Ruth Wepfer and Kaushik Mitra

Integrating SAP with Salesforce to benefit your sales staff. Matthews International Ruth Wepfer and Kaushik Mitra [ Integrating SAP with Salesforce to benefit your sales staff Matthews International Ruth Wepfer and Kaushik Mitra [ Meet the Speakers Ruth Wepfer Dir. of Information Technology Matthews International

More information

Document Digital Signature

Document Digital Signature Supplier handbook Software Configuration for Digital Signature and Timestamp to certificate-based signature Document objectives and structure The document aims to support suppliers during the following

More information