Access SAP Business Functions (ABAP) via Web Services

Size: px
Start display at page:

Download "Access SAP Business Functions (ABAP) via Web Services"

Transcription

1 Applies To: SAP R/3 4.6c and ECC 5.0 SAP NetWeaver 04 WebAS 6.40 SP14 and up, XI 3.0 SP14, NWDS SAP NW2004s WebAS 700, NWDS Microsoft Visual Studio 2005, BizTalk Server 2006,.NET Framework 2.0 Summary The goal of this article is to show readers who are new to SAP and web services that there are many different ways to access SAP ABAP business functions via web services through different NetWeaver components, and accessing these web services from non-sap platform such as Microsoft.NET is very easy. This article analyzed the appropriate context in which each web service approach can be used. The web services capabilities discussed and revealed in this article play important roles in realizing SAP s ESA and its open ecosystem strategy. By: Wallace Su Company: SAP Labs, Palo Alto Date: 10 March 2006 Table of Contents Applies To:...1 Summary...1 Table of Contents...1 Introduction...2 History View...2 Business Scenario...2 Technical Overview...3 ABAP Web Services...4 Out-of-the-Box RFC Web Services...4 Create Your Own ABAP Web Service...5 XI Web Services...7 XI Proxy Based Web Services...8 Brokered Web Services via XI...9 1

2 Consume Web Services in XI...11 Java Web Services...12 Expose Web Service in Web AS Java (J2EE)...12 Consume Web Services in Java (Using NWDS)...15 Summary...16 Consume SAP Web Services from.net Application...16 Related SDN References...19 Conclusion...19 Author Bio...20 Disclaimer & Liability Notice...20 Introduction Accessing SAP business functions in ABAP using web services is a hot topic and there is lots of documentation explaining different pieces of it (see SDN references at the end of this article). In this article, I will try to pull together related information in this area and give readers who are new to SAP and web services a good overview of what s available and where to apply these techniques. This article will focus on accessing ABAP functions in ERP, SCM, CRM, and etc. As a developer, I want the flexibility to access these great ABAP business functions from a variety of development platforms using standard web service technology, and I should be able to do this from Visual Studio.NET just as easy as doing it from SAP s own NetWeaver Developer Studio (NWDS). History View Historically, SAP business data and processes are externally available through ABAP-based communication technologies (e.g., IDOCS, RFC, ALE, BAPI), which are the basis of many connector/adapter products, including those from SAP (such as the SAP Java Connector and the SAP.NET Connector). Accessing SAP business functions from the non-sap world had been limited to using these SAP proprietary technologies. Since WebAS 6.20, SAP started to make business functions available through standard based web service technologies. Building on its NetWeaver platform, SAP is exposing more and more business functions as web services today. The NetWeaver platform consists of many components that are capable of exposing web services. I will explore the web service capabilities in Web AS Java (SAP s J2EE server), Web AS ABAP, and XI in this article. I will also use Microsoft.NET applications as examples to show how easy it is to consume ABAP business functions once they are exposed as web services. Business Scenario To demonstrate how easy it is to consume SAP business functions as a web service, I chose to test a simple.net application built with Visual Studio 2005 (I tested both a C# application and a BizTalk process) to access an existing BAPI function module in the SAP ERP (I tested both ECC 5.0 and R/3 4.6C). I used an existing BAPI called BAPI_CUSTOMER_GETDETAIL which retrieves customer detailed information in my implementation. 2

3 Technical Overview Before I build the simple.net application, let s look at some options on how to expose web services for SAP ABAP business functions. The great news is that SAP has provided web services support in Web AS Java, XI, and Web AS ABAP directly to cater for different development needs. The following figure provides an overview of the web service capabilities exposed in different areas of NetWeaver: Figure 1 Many Choices of Using Web Services in NetWeaver In Figure 1, ABAP function modules in ECC 5.0 can be exposed as web services either directly or via proxy technologies. When using proxy technology to expose web services, services are defined in XI and exposed in the ABAP stack. A web service consumer application can then load the WSDL and invoke the ABAP web service. Alternatively, XI can front-end the ABAP function modules in both ECC 5.0 and R/3 4.6c via different inbound adapters (only RFC and XI Adapters are shown in this figure other adapters are also possible, such as using the receiver SOAP adapter). Then, XI can expose the message interfaces (XI term) as web services through the sender SOAP adapter with value-added functionalities (for example, data mappings between senders and receivers). A web service consumer application can then load the WSDL and invoke the XI web service. Similarly, EJB can also front-end the ABAP function modules in both ECC 5.0 and R/3 4.6c using JCo or consuming the ABAP web services directly (not shown in this figure) or through XI (web service call is shown in the figure Java proxy is also possible) as the intermediary. The EJB itself can be exposed as web service. A web service consumer application can then load the WSDL and invoke the Java web service. The message flow in red color in Figure 1 is used in the.net example implementation. Note that the possible web service invocation scenarios described above may not be a complete list. Nonetheless, we will focus on these scenarios and drill down into more details in the following sections. 3

4 ABAP Web Services Out-of-the-Box RFC Web Services Many SAP business processes and data can be accessed through RFC-enabled function modules. BAPIs are implemented as RFC-enabled function modules and provide standardized programming interface (you can call transaction BAPI to access the BAPI Explorer). All RFC-enabled function modules (so all the BAPIs) are exposed as web services by default (i.e. no work needed to make them web services). This feature is available since WebAS 6.20 and can be accessed through the following URL (see Figure 2): Figure 2 Web Service Browser for RFC-enabled Function Modules To retrieve the WSDL for an individual function module, use the following URL: This feature makes it very convenient for someone who needs to invoke a RFC or BAPI directly through web services and needs nothing else. But note that this feature is only available to out-of-the-box RFC function modules. Also, these vanilla web services do not provide much more than the basic web service invocation. For instance, if you need to change the input or output signature of the service, or add some additional processing logic before or after you invoke the web service, you cannot modify these web services to do so. There is also no way to set up web service security profiles. 4

5 Create Your Own ABAP Web Service The out-of-the-box RFC web service works great if it fits your needs. Since WebAS 6.40, web services can be defined for RFC-enabled function modules, function groups, business objects, and XI message interfaces (will be discussed in XI Proxy Based Web Services). This means you have the opportunity to build your own function modules, or add additional logic to existing function modules, and create your own ABAP web services for them. This is a good option to create web services if you are an ABAP developer, or enjoys doing some coding in ABAP. This is an inside-out approach to develop web services. This is done using SAP s Web Service Creation Wizard which is available from the ABAP Development Workbench (by calling transaction SE80 see Figure 3). Figure 3 Create Web Service Wizard (ABAP Workbench) I copied the following procedures from SAP online documentation in Table 1 as a quick reference: Action: Meaning: Creating a Virtual Interface The virtual interface is the interface between the Web service and the outside world. Enter a name and description for the virtual interface. Choose an endpoint. 5

6 If the checkbox Mapping of Names is checked, the wizard accepts the existing names for the endpoint. Initial letters are in upper case and underscores are removed If you do not want to do this, the virtual interface and Web service definition are created with the existing names from the endpoint. Choose the endpoint You choose the object that you want to offer as a Web service. For business objects, enter the application. Choose operations For BAPIs and function groups, choose the operations for which the Web service is to be created (see also: Creating a Virtual Interface for a Function Group/BAPI). Creating a Web service definition You use the Web service definition to assign features to the Web service. The features are based on, among other things, questions of security in data transfer and on the type of communication. The Web service definition refers to the virtual interface defined earlier. Enter a name and description for the WSD. Choose a predefined feature set from the profiles available. Basic Auth SOAP profile: 1. Communication type: Stateless 2. Caller authentication: User and password Secure SOAP profile: 1. Communication type: Stateless 2. Authentication: Client certificate 3. Transferred data is encrypted using the Secure Socket Layer protocol. For more information on the features in the profiles, see Creating a Web Service Definition. Release the Web service The system creates the virtual interface and the Web service definition. Finally, you release the Web service for the SOAP Runtime. Table 1 Steps of Using the Web Service Creation Wizard Web services created this way are built from inside-out, but they cannot be searched or browsed like in Figure 2. Instead, you can call transaction WSADMIN and use the highlighted buttons to obtain the WSDL for the 6

7 released web service individually (see Figure 4). Usually, web services generated this way have a URL prefix like the following: Generate a WSDL document for this Web service Launch this Web service home page Figure 4 Obtain WSDL of Web Service Published to SOAP Runtime Alternatively, you can also publish the web service to a UDDI registry, also from transaction WSADMIN. The Web service can then be searched for in the UDDI using either a browser or the standard UDDI APIs. Please refer to SAP documentation on how to do this. In addition, you can assign quality of services (QoS) to the web services created this way, such as assigning security profiles. However, both options I discussed above are not available if you are running older versions of the ERP such as 4.6C. In addition, if you are not an ABAP developer, either because you can only code in Java or do not want to code at all, SAP provides other options to expose web services for accessing the ABAP functions. XI Web Services XI is great because XI provides a lot of options (and flexibilities) when it comes to connecting the SAP ABAP world. For example, there are out-of-the-box RFC and IDOC adapters that you can use to connect to both ECC 5.0 and R/3 4.6C. In addition, XI provides configuration driven, value-added services such as data transformation (mapping), content-based routing, and business process orchestration (through the ccbpm 7

8 component). But most interestingly, in the context of web services, XI provides an interface-driven development approach that developers can use to design web services from outside-in. XI can be used to provide web services in two ways, which are explained next. XI Proxy Based Web Services First you model the message interface in the Integration Repository (using Integration Builder) in three steps: 1. Create the data type, using XML schema. 2. Create the message type, an XML entity that describes the message that will be sent over the wire. 3. Create the interface that uses the message type to describe the request and the response. The next step is to move to the ABAP development system, and use the transaction SPROXY to generate the proxy. Then, you need to insert the implementation for the proxy class. This is also done in ABAP. So you must be able to do some ABAP coding (see Figure 5). Click this to implement your ABAP code for the proxy class Figure 5 ABAP Proxy Generation 8

9 Finally, you need to define the web service using the Web Service Creation Wizard described in Table 1 (only available since Web AS 6.40). Usually, web services generated this way have a URL prefix like the following: Please refer to the SDN References section for step-by-step details (and screen shots) on how to do this. What I like about this approach is that the development process is interface driven and done entirely in the XI design time environment. This approach does require writing some ABAP code to implement the proxy business logic, which may be a few lines of ABAP code that call an existing function module and return promptly or some additional processing logic. Note that only synchronous server proxies can be defined as web services. The web services designed this way are actually exposed from the SOAP runtime on the ABAP side, not from XI. In other words, XI is only used for design time activities. Although XI proxy technology was originally created as a XI connectivity tool, the web service enablement of the ABAP proxies makes it accessible in a different way. Brokered Web Services via XI In a bigger picture, XI can be viewed as a broker or intermediary to the ABAP function modules and expose them as web services. XI can be used to implement such common tasks like data transformation (mapping) and content-based routing without having to code in ABAP or other programming languages. More complex business orchestration logic can also be implemented in ccbpm (available from the same XI design time tool). In XI, I can access the ABAP function modules in a variety of different ways. For instance, I can have XI call the ABAP proxy we discussed in the previous section through the XI protocol (some people refer this as XI Adapter ), which is actually based on SOAP (with SAP extensions). Alternatively, I can import RFC or IDOC metadata from the ABAP applications and use the built-in RFC or IDOC adapters in XI to call them. Then I can wrap the ABAP functionality in a XI message interface (design data types and interfaces the same way as previously discussed) and create Receiver and Interface Determinations (XI terms). Next, I will configure a sender SOAP adapter in XI to expose the message interface as a web service. Finally, I will use the wizard in Integration Builder (Configuration) to generate the WSDL for this web service (see Figure 6). 9

10 Figure 6 Define Web Service Wizard from XI Note that the wizard only generates the WSDL for the sender SOAP adapter you configured. It does not make this web service available from browser interfaces or in any web service registry. In fact, you have to save the wsdl to a file for future consumption. To create the correct WSDL port address used by the XI sender SOAP adapter, type in the following URL prefix instead of clicking on the Propose URL button in the wizard (see Figure 7): You can leave party blank if there is no party in your XI configuration (but make sure to leave the : after party in the URL; service is the name of the sender service, and channel is the name of the sender SOAP adapter. Please see SDN References for configuration details. Although XI web services exposed this way are not browsable, you can easily wrap it around in a Java proxy object and expose that Java proxy object in an EJB web service (see next section). Then it will be available from the Java web service navigator page. 10

11 Consume Web Services in XI Figure 7 Using WSDL Generation Wizard in XI XI can also access backend ABAP function modules by calling web services exposed directly out of ABAP using the receiver SOAP adapter. To do this, you can create an External Definition in Integration Repository by importing the WSDL file of the exposed ABAP web services (See Figure 8). The imported web service message types can be used to design your XI message interfaces. 11

12 Java Web Services Figure 8 Load WSDL as External Definition in IR For those developers who use Java as their primary development platform, SAP NetWeaver Developer Studio (NWDS and are the versions that I tested) provides plenty of support to build web services. Expose Web Service in Web AS Java (J2EE) EJBs and Java classes can be exposed as web services in SAP s J2EE server. To create web service in Java, open the J2EE Development perspective, and create an EJB and its respective methods. The EJB can be exposed as a web service. To do this, use the web service creation wizard from the EJB (see Figure 9). 12

13 Figure 9 Create Web Service for EJB in NWDS After web service is defined for the EJB, the EJB needs to be deployed to the J2EE engine to be accessible. With successful deployment, you can use the following URL to access the WSDL of the web service. The WebServiceName and ConfigurationName in the URL correspond to the following values in the NWDS wizard (see Figure 10). 13

14 Figure 10 NWDS Web Service Creation Wizard The deployed Java web services can also be browsed through the following URL (see Figure 11): 14

15 Figure 11 J2EE Web Services Navigator Click on the web service of interest, and you will be able to download/view its details (including WSDL), and conduct basic testing (SOAP over plain HTTP only). Consume Web Services in Java (Using NWDS) To access web services exposed from ABAP or XI, NWDS provides wizard-driven GUI to create Java proxy objects for the web services without a single line of coding. First you need to create a project of type Web Services -> Deployable Proxy or Standalone Proxy (from File->New->Project). Next you can use the wizard to create a client proxy (New->Client Proxy Definition) for the web service you want to use (see Figure 12). The wizard will prompt you to enter the location of the WSDL. Once it s finished, it will create the logical port and the Java classes that you can use in other places of your project. 15

16 Figure 12 Create Client Proxy for Web Service in NWDS In both cases where NWDS is used to create an EJB that provides a web service interface, or to create a Java proxy that consumes a web service, you can configure security on both the transport level and document/message level. Summary As I showed you in the above discussions, accessing ABAP functions via web services has many choices. Which choice to take, or whether or not to use web services at all, depends on many other factors that I did not cover in this article. The factors to consider include performance, reliability and security of the messaging protocols, and the available tools and skill set in your project. Consume SAP Web Services from.net Application Now let s look at the implementation of how to consume a SAP web service discussed in the technical overview section from a.net application. In my first implementation, I have the.net application (a C# Windows Application) call the web service exposed by XI sender SOAP adapter. Only HTTP basic authentication is used for the SOAP request. I had used XI to design the message interface needed by the.net application and perform the data transformation so that only required input data are sent to XI and a subset of the BAPI_CUSTOMER_GETDETAIL return result are returned to the.net application. Then I configured a RFC adapter in XI to access the backend BAPI function. This call is synchronous and the message flow is illustrated in red color in Figure 1. In my Visual Studio 2005 project, I use Project->Add Web Reference to add a wsdl reference to the.net project (see Figure 13). The wsdl URL will be a URL outlined in the previous sections or a local file absolute path in the case of XI exposed web service. During my implementation, I found that Visual Studio 2005 has a problem importing XI generated wsdl file. The workaround is to use the wsdl.exe tool from Visual Studio

17 command line prompt to generate the proxy classes, or add the following namespace xsd in the <wsdl:definitions> element in the XI wsdl file: <wsdl:definitions... xmlns:xsd=" Figure 13 Import WSDL in Visual Studio 2005 The following C# code is used to invoke the get customer detail web service with HTTP basic authentication: // create web service proxy object. getcustomerdetail2service class is // generated by importing the wsdl getcustomerdetail2service customerproxy = new getcustomerdetail2service(); // set HTTP basic auth NetworkCredential credentials = new NetworkCredential("user", "pwd", ""); customerproxy.credentials = credentials; // set up HTTP proxy IWebProxy proxyobject = new WebProxy(" false); customerproxy.proxy = proxyobject; // assign input params 17

18 customer_getdetail2_req customerrequest = new customer_getdetail2_req(); customerrequest.companycode = ""; customerrequest.customerno = "C2000"; try { customer_getdetail2_resp customerresponse = new customer_getdetail2_resp(); // invoke the XI web service customerresponse = customerproxy.getcustomerdetail2(customerrequest); Console.WriteLine(customerResponse.customerAddress.name.ToString()); } catch (Exception reqexception) { Console.WriteLine(reqException.ToString()); } The above code sample demonstrated how easy it is to call a SAP web service from a C#.NET program. I then built an equally simple BizTalk process to call the same XI web service, as shown in Figure

19 Figure 14 BizTalk Process Calls the SAP Web Service In a separate article, I will show you the implementation details of how to secure the above implementation using Web Service Security standards in NetWeaver. Related SDN References There are lots of good content on SDN that discussed either the basics or the details of SAP s web services technology. The following are a partial list that I found on SDN. Here are some relevant SDN articles: Web Service Technology for SAP NetWeaver How to Set Up a Web Service Related Scenario with SAP XI And a list of related SDN web logs: Communication between SAP System & Web Service Using Proxies (and a related web log on ABAP Server Proxies) Developing ABAP Web Services Web Service Navigator Page for ABAP and Java and Part 2 Publishing ABAP Web Services to an External UDDI Server And the official SAP documentation: Web Services Toolset Web Service Development Manual Configure XI Sender SOAP Adapter And finally, the upcoming book from SAP (Enterprise Services Architecture: Designing IT for Business Innovation) has a really detailed chapter on How to Create Enterprise Services that covers the tools and processes of creating services. Conclusion SAP provides comprehensive web services support in NetWeaver Web AS Java, XI, and Web AS ABAP to cater for different development needs. This article reviewed different technical approaches of using web services to access SAP business functions in ABAP and demonstrated a.net example to consume those web services. There are other SAP NetWeaver components and developer tools that also provide web services support and you can find related information on SDN in areas such as EP, BW, MDM, and CAF. Whether or not to use web service and which web service to use to access SAP ABAP functions in your project depends on many other factors that I did not cover in this article. The factors to consider include performance, reliability and security of the messaging protocols, and the available tools and skill set in your project. 19

20 Author Bio Wallace Su supports early adopters within SAP's ecosystem to take advantage of the Enterprise Services Architecture and SAP s Business Process Platform in SAP s Market Development Engineering team. Prior to taking this role in SAP, Wallace has held senior technical and project management positions at TIBCO, Apple Computer, and other Silicon Valley companies with more than 10 years of industry experience. Wallace specializes in web services, enterprise application integration, and messaging systems. Disclaimer & 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. 20

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

BAPI Execution in offline Adobe Form

BAPI Execution in offline Adobe Form BAPI Execution in offline Adobe Form Applies to: Adobe form, Web dynpro JAVA, SAP ECC. For more information, visit the Web Dynpro Java homepage. Summary This article contains step by step description for

More information

Creating Multiple Methods/Operations and Exposing BAPI as a Webservice

Creating Multiple Methods/Operations and Exposing BAPI as a Webservice Creating Multiple Methods/Operations and Exposing BAPI as a Webservice Applies to: SAP Netweaver 7.0 SP14. For more information, visit the SOA Management homepage. Summary This article discuss about how

More information

How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3

How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3 How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3 Applies to: SAP NetWeaver Portal 7.3, NWDS 7.3. For more information, visit the Portal and Collaboration homepage. Summary This

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

Graphical Mapping Technique in SAP NetWeaver Process Integration

Graphical Mapping Technique in SAP NetWeaver Process Integration Graphical Mapping Technique in SAP NetWeaver Process Integration Applies to: SAP NetWeaver XI/PI mappings. For more information, visit the Repository-based Modeling and Design homepage. Summary This guide

More information

Synchronization of Services between the IBM WebSphere Services Registry & Repository and SAP s Services Registry

Synchronization of Services between the IBM WebSphere Services Registry & Repository and SAP s Services Registry Synchronization of Services between the IBM WebSphere Services Registry & Repository and SAP s Services Registry Applies to: This document describes how to use the WebSphere Services Registry & Repository

More information

How to Create and Execute Dynamic Operating System Scripts With XI

How to Create and Execute Dynamic Operating System Scripts With XI Applies To: SAP Exchange Infrastructure 3.0, SP 15, Integration Repository and Directory Summary This document describes how to create, store and execute a non static operating command script. In this

More information

Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose

Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose Applies to: SAP Customer Relationship Management (SAP CRM) Release 7.0 SP 01, November 2008. SAP NetWeaver 7.0 including

More information

Different Types of iviews in Enterprise Portal 7.0

Different Types of iviews in Enterprise Portal 7.0 Different Types of iviews in Enterprise Portal 7.0 Applies to: This Article applies to Enterprise Portal 7.0. For more information, visit the Portal and Collaboration homepage. Summary This document covers

More information

Creating, Configuring and Testing a Web Service Based on a Function Module

Creating, Configuring and Testing a Web Service Based on a Function Module Creating, Configuring and Testing a Web Service Based on a Function Module Applies to: SAP EC6 6.0/7.0. For more information, visit the Web Services homepage. Summary The article describes how to create

More information

Easy Lookup in Process Integration 7.1

Easy Lookup in Process Integration 7.1 Easy Lookup in Process Integration 7.1 Applies to: SAP NetWeaver Process Integration 7.1 For more information, visit the SOA Management homepage. Summary Unlike previous version of PI (7.0) / XI (3.0,

More information

SUP: Personalization Keys and Synchronize Parameter

SUP: Personalization Keys and Synchronize Parameter SUP: Personalization Keys and Synchronize Parameter Applies to: Blackberry Mobile. For more information, visit the Mobile homepage. Summary This article gives a brief idea about Personalization Keys and

More information

Step By Step Procedure to Implement Soap to JDBC Scenario

Step By Step Procedure to Implement Soap to JDBC Scenario Step By Step Procedure to Implement Soap to JDBC Scenario Applies to This scenario is implemented in PI 7.0 server, service pack: 14. For more information, visit the SOA Management homepage. Summary This

More information

How to Integrate SAP xmii Services with Web Dynpro Java

How to Integrate SAP xmii Services with Web Dynpro Java How to Integrate SAP xmii Services with Web Dynpro Java Applies to: SAP xmii 11.5 SAP Netweaver 04s Summary This document gives a step by step description on how SAP xmii services and objects can be exposed

More information

Enterprise SOA Experience Workshop. Module 8: Operating an enterprise SOA Landscape

Enterprise SOA Experience Workshop. Module 8: Operating an enterprise SOA Landscape Enterprise SOA Experience Workshop Module 8: Operating an enterprise SOA Landscape Agenda 1. Authentication and Authorization 2. Web Services and Security 3. Web Services and Change Management 4. Summary

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

Administrating ABAP+JAVA and SLD Problems of SAP PI 7.1

Administrating ABAP+JAVA and SLD Problems of SAP PI 7.1 Administrating ABAP+JAVA and SLD Problems of SAP PI 7.1 Applies to: SAP Basis and SAP PI 7.1 Administrations. For more information, visit the Application Management homepage. Summary This article describes

More information

Federated Portal for Composite Environment 7.1

Federated Portal for Composite Environment 7.1 Federated Portal for Composite Environment 7.1 Applies to: This article applies to Federated Portal for Composition Environment. For more information, visit the Portal and Collaboration homepage Summary

More information

A Step-by-Step Guide on IDoc-ALE between Two SAP Servers

A Step-by-Step Guide on IDoc-ALE between Two SAP Servers A Step-by-Step Guide on IDoc-ALE between Two SAP Servers Applies to: All modules of SAP where data need to transfer from one SAP System to another SAP System using ALE IDoc Methodology. For more information,

More information

A Step-by-Step Guide on IDoc-to-File Using Business Service in the XI Integration Directory

A Step-by-Step Guide on IDoc-to-File Using Business Service in the XI Integration Directory A Step-by-Step Guide on IDoc-to-File Using Business Service in the XI Integration Directory Applies to: SAP Exchange Infrastructure (XI) 3.0 / Process Integration (PI) 7.0 This document is intended for

More information

Consuming SAP MII Business Logic Transaction as Web Service

Consuming SAP MII Business Logic Transaction as Web Service Consuming SAP MII Business Logic Transaction as Web Service Applies to: SAP, SAP xmii Version 11.5, Microsoft Visual Basic.Net 2005 / Express 2005 For more information, visit the Web Services homepage.

More information

Integration Unit Testing on SAP NetWeaver Application Server

Integration Unit Testing on SAP NetWeaver Application Server Applies To: This technical article applies to the SAP (Java), SAP NetWeaver Developer Studio, Unit Testing, Integration Unit Testing, JUnit, and JUnitEE. Summary Unit testing is an excellent way to improve

More information

Setting up Connection between BW and R/3 for Data Load

Setting up Connection between BW and R/3 for Data Load Setting up Connection between BW and R/3 for Data Load Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary This document guides to establish connection between

More information

Step by Step Guide for PI Server Start and Stop Procedure

Step by Step Guide for PI Server Start and Stop Procedure Step by Step Guide for PI Server Start and Stop Procedure Applies to: This document applies to PI 7.0 and 7.1 and above. For more information, visit the Application Management homepage. Summary This document

More information

CREATION AND CONFIGURATION OF WEB SERVICE FROM RFC AND DEPLOYMENT IN ANOTHER SYSTEM

CREATION AND CONFIGURATION OF WEB SERVICE FROM RFC AND DEPLOYMENT IN ANOTHER SYSTEM CREATION AND CONFIGURATION OF WEB SERVICE FROM RFC AND DEPLOYMENT IN ANOTHER SYSTEM Applies to: SAP Summary The purpose of this document is to provide creation and configuration of web service from function

More information

Exception Handling in Web Services exposed from an R/3 System

Exception Handling in Web Services exposed from an R/3 System Exception Handling in Web Services exposed from an R/3 System Applies to: SAP WAS 6.2 onwards Summary We expose an RFC enabled function module as web service in R/3. While creating the function module,

More information

POWL: Infoset Generation with Web Dynpro ABAP

POWL: Infoset Generation with Web Dynpro ABAP POWL: Infoset Generation with Web Dynpro ABAP Applies to: WebDynpro ABAP Developer. For more information, visit the Web Dynpro ABAP homepage. Summary: This document explains how to create an Infoset, generate

More information

Limitation in BAPI Scheduling Agreement (SA) Create or Change

Limitation in BAPI Scheduling Agreement (SA) Create or Change Limitation in BAPI Scheduling Agreement (SA) Create or Change Applies to: SAP ECC 6.0.For more information, visit the ABAP homepage. Summary The article describes the limitations in standard SAP BAPIs

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

MDM Import Manager - Taxonomy Data (Attribute Text Values) Part 3

MDM Import Manager - Taxonomy Data (Attribute Text Values) Part 3 MDM Import Manager - Taxonomy Data (Attribute Text Values) Part 3 Applies to: SAP NetWeaver Master Data Management (MDM) SP3, SP4, SP5. Summary This article provides a step-by-step procedure for manually

More information

MDM Syndicator: Custom Items Tab

MDM Syndicator: Custom Items Tab MDM Syndicator: Custom Items Tab Applies to: SAP NetWeaver Master Data Management (MDM) SP04, SP05 and SP06. For more information, visit the Master Data Management homepage. Summary This article provides

More information

A Step-by-Step Guide on IDoc-to- JDBC Using Business Service in the XI Integration Directory

A Step-by-Step Guide on IDoc-to- JDBC Using Business Service in the XI Integration Directory A Step-by-Step Guide on IDoc-to- JDBC Using Business Service in the XI Integration Directory Applies to: SAP Exchange Infrastructure (XI) 3.0 / Process Integration (PI) 7.0 For more information; visit

More information

How to Default Variant Created for Report Developed In Report Painter/Writer

How to Default Variant Created for Report Developed In Report Painter/Writer How to Default Variant Created for Report Developed In Report Painter/Writer Applies to: Any business organization having reports developed using Report Painter/Report Writer. This is applicable from R/3

More information

MDM Syndication and Importing Configurations and Automation

MDM Syndication and Importing Configurations and Automation MDM Syndication and Importing Configurations and Automation Applies to: SAP MDM SP 05 Summary This document was written primarily for syndication and import of records into SAP NetWeaver MDM from different

More information

B2B Integration Using Seeburger AS2 Adapter with PI 7.1 Ehp1

B2B Integration Using Seeburger AS2 Adapter with PI 7.1 Ehp1 B2B Integration Using Seeburger AS2 Adapter with PI 7.1 Ehp1 Applies to: SAP NetWeaver Process Integration 7.1x, Seeburger 2.1x Summary This article is about preliminary design & configuration aspects

More information

HOWTO: SCRIPTING LANGUAGE SUPPORT FOR SAP SERVICES - RUBY

HOWTO: SCRIPTING LANGUAGE SUPPORT FOR SAP SERVICES - RUBY SDN Contribution HOWTO: SCRIPTING LANGUAGE SUPPORT FOR SAP SERVICES - RUBY Applies To SAP NetWeaver; Ruby 1.8.2; SAP::Rfc 0.19 Ruby Extension. Summary This article gives an introduction to usage of SAP

More information

SAP NetWeaver Process Integration 7.1. SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December 2007

SAP NetWeaver Process Integration 7.1. SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December 2007 SAP NetWeaver Process Integration 7.1 Providing Web Services in Java SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December 2007 SAP NetWeaver Process Integration 7.1 1 Benefits

More information

Deploying BusinessObjects Explorer on Top of a SAP BI Query

Deploying BusinessObjects Explorer on Top of a SAP BI Query Deploying BusinessObjects Explorer on Top of a SAP BI Query Applies to: SAP BI NetWeaver 2004s, BusinessObjects Explorer 3.1. For more information, visit the Business Intelligence homepage. Summary The

More information

Introducing SAP Enterprise Services Explorer for Microsoft.NET

Introducing SAP Enterprise Services Explorer for Microsoft.NET Introducing SAP Enterprise Services Explorer for Microsoft.NET Applies to: SAP SOA, SAP NetWeaver Composition Environment 7.1 including enhancement package 1, SAP Services Registry, SAP - Microsoft interoperability,

More information

Custom Password Reset Tool in SAP Enterprise Portal Using Web Dynpro for Java

Custom Password Reset Tool in SAP Enterprise Portal Using Web Dynpro for Java Custom Password Reset Tool in SAP Enterprise Portal Using Web Dynpro for Java Applies to: SAP Enterprise Portal, Web Dynpro for Java. For more information, visit the Portal and Collaboration homepage.

More information

Building Web Services with Java and SAP Web Application Server

Building Web Services with Java and SAP Web Application Server EUROPEAN SAP TECHNICAL EDUCATION CONFERENCE 2002 Web Services and Openness WORKSHOP Sept. 30 Oct. 2, 02 Bremen, Germany Building Web Services with Java and SAP Web Application Server Timm Falter, SAP AG

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

JBoss SOAP Web Services User Guide. Version: M5

JBoss SOAP Web Services User Guide. Version: M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

More information

Using Radio Buttons in Web Template

Using Radio Buttons in Web Template Using Radio Buttons in Web Template Applies to: SAP BW 3.5. For more information, visit the Business Intelligence homepage. Summary One of the ideal requirements in the BW Web Reporting is the user wants

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

Ellipse Web Services Overview

Ellipse Web Services Overview Ellipse Web Services Overview Ellipse Web Services Overview Contents Ellipse Web Services Overview 2 Commercial In Confidence 3 Introduction 4 Purpose 4 Scope 4 References 4 Definitions 4 Background 5

More information

How to Perform Value Mapping A Walkthrough

How to Perform Value Mapping A Walkthrough How to Perform Value Mapping A Walkthrough Applies to: SAP XI 3.0 /SAP PI 7.0 Summary In general, there might be a scenario where a value being sent depends upon various constraints and needs to be looked

More information

Information Broadcasting Part 3 Scheduling the First Report

Information Broadcasting Part 3 Scheduling the First Report Information Broadcasting Part 3 Scheduling the First Report Applies to: SAP BW 3.5 Summary This is part-3 article in the Information broadcasting (IB) series. Some things have already been discussed like

More information

Universal Worklist - Delta Pull Configuration

Universal Worklist - Delta Pull Configuration Universal Worklist - Delta Pull Configuration Applies to: This article applied to SAP Netweaver 7.01 SP06 Portal, SAP ECC 6.0 EHP4. For more information, visit the Portal and Collaboration homepage Summary

More information

SAP Biller Direct Step by Step Configuration Guide

SAP Biller Direct Step by Step Configuration Guide SAP Biller Direct Step by Step Configuration Guide Applies to: NW2004s, For more information, visit the Application Management homepage. Summary This is a step by step configuration guide for SAP Biller

More information

SAP NetWeaver Process Integration: Using the Integration Directory API

SAP NetWeaver Process Integration: Using the Integration Directory API SAP NetWeaver Process Integration: Using the Integration Directory API Applies to: EHP 1 for SAP NetWeaver Process Integration (PI) 7.1 and partly SAP NetWeaver PI 7.0, Integration Directory Application

More information

About ITAB Duplicate_Key (SAP lrsaods) Runtime Error

About ITAB Duplicate_Key (SAP lrsaods) Runtime Error About ITAB Duplicate_Key (SAP lrsaods) Runtime Error Applies to: SAP NetWeaver BW 3.x.For more information, visit the Business Intelligence homepage. Summary This article explains about the Runtime Error

More information

Creation of Alert Data Service VC model for the BI query exception using Information Broadcasting

Creation of Alert Data Service VC model for the BI query exception using Information Broadcasting Applies To: SAP Netweaver 2004s Visual Composer 7.0 Summary The purpose of this document is to show how to create an alert data service VC model for the BI query exception using the Information broadcasting.

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

Steps for XML Validation by Adapter Engine in PI 7.1

Steps for XML Validation by Adapter Engine in PI 7.1 Steps for XML Validation by Adapter Engine in PI 7.1 Applies to: SAP PI 7.1, esoa. Summary In this article I have shown the steps required to do XML Validation by an Adapter Engine.. Author: Hemant Negi

More information

Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal

Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal Applies to: Web Dynpro ABAP. Summary This tutorial explains how to display Web Dynpro ABAP Application in Microsoft Share

More information

Data Extraction & DS Enhancement in SAP BI Step by Step

Data Extraction & DS Enhancement in SAP BI Step by Step Data Extraction & DS Enhancement in SAP BI Step by Step Applies to: SAP BI 7.0, SAP ABAP, For more information, visit the Business Intelligence homepage. Summary The objective of the article is to outline

More information

Web Services Testing and SAP NetWeaver Application Server, Java EE 5 Edition

Web Services Testing and SAP NetWeaver Application Server, Java EE 5 Edition Web Services Testing and SAP NetWeaver Application Server, Java EE 5 Edition Applies to: SAP NetWeaver Application Server, Java EE 5 Edition Summary With the introduction of SAP NetWeaver Application Server

More information

Federated Portal Network Remote Role Assignment Step-by- Step Configuration

Federated Portal Network Remote Role Assignment Step-by- Step Configuration Federated Portal Network Remote Role Assignment Step-by- Step Configuration Applies to: Consumer Portal: SAP NetWeaver 2004s EhP1 SP6 Producer Portal: SAP NetWeaver CE EhP1 SP3 Summary This article describes

More information

ecatt Part 6 System Data Container

ecatt Part 6 System Data Container \ ecatt Part 6 System Data Container Applies to: SAP 5.0 Summary In the Part I of ecatt series, we covered the introduction to ecatt, its prerequisites, features, when to go for SAP GUI mode recording

More information

Add /Remove Links on ESS Home Page in Business Package 1.5

Add /Remove Links on ESS Home Page in Business Package 1.5 Add /Remove Links on ESS Home Page in Business Package 1.5 Applies to: SAP ECC EHP5. For more information, visit the Enterprise Resource Planning homepage. Summary Customizing links on ESS Overview page

More information

Exposing the XI monitoring functionality as a Web Service

Exposing the XI monitoring functionality as a Web Service Exposing the XI monitoring functionality as a Web Service Applies to: SAP Exchange Infrastructure (SAP NetWeaver Process Integration 7.0) Summary The document shows you a way to fetch the XI monitoring

More information

SAP EDUCATION SAMPLE QUESTIONS: C_TBIT51_73. Questions. Note: There are 2 correct answers to this question. developer. the basis administrator.

SAP EDUCATION SAMPLE QUESTIONS: C_TBIT51_73. Questions. Note: There are 2 correct answers to this question. developer. the basis administrator. SAP EDUCATION SAMPLE QUESTIONS: C_TBIT51_73 SAP Certified Technology Associate -Process Integration with SAP NetWeaver (PI 7.3) Disclaimer: These sample questions are for self-evaluation purposes only

More information

Virus Scan with SAP Process Integration Using Custom EJB Adapter Module

Virus Scan with SAP Process Integration Using Custom EJB Adapter Module Virus Scan with SAP Process Integration Using Custom EJB Adapter Module Applies to: SAP Process Integration 7.0 and Above Versions. Custom Adapter Module, Virus Scan Adapter Module, Virus Scan in SAP PI.

More information

This article explains the steps to create a Move-in letter using Print Workbench and SAPScripts.

This article explains the steps to create a Move-in letter using Print Workbench and SAPScripts. Applies to: SAP IS-Utilities 4.6 and above. Summary This article explains the steps to create a Move-in letter using Print Workbench and SAPScripts. Author: Company: Hiral M Dedhia L & T Infotech Ltd.

More information

Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure

Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure Applies to: ECC 6.0 and BI 3.x and 7.0 For more information, visit the Business Intelligence homepage. Summary Many

More information

ABAP HR: Standard Info Type Enhancement

ABAP HR: Standard Info Type Enhancement ABAP HR: Standard Info Type Enhancement Applies to: This document applies to SAP ECC 6.0, SAP Netweaver 2004s. For more information, visit the ABAP homepage. Summary This article contains the step by step

More information

DB Connect with Delta Mechanism

DB Connect with Delta Mechanism Applies to: SAP BI/BW. For more information, visit the EDW homepage Summary This Article demonstrates the steps for handling Delta mechanism with Relational Database Management System (RDBMS) like SQL,

More information

SAP PI/XI: Generating Sequence Number Between Multiple Instances of Mapping Execution

SAP PI/XI: Generating Sequence Number Between Multiple Instances of Mapping Execution SAP PI/XI: Generating Sequence Number Between Multiple Instances of Mapping Execution Applies to: SAP XI 3.0, PI 7.0 and 7.1. Summary The paper discusses about how to obtain sequence number between multiple

More information

Step by Step Guide How to Use BI Queries in Visual Composer

Step by Step Guide How to Use BI Queries in Visual Composer Step by Step Guide How to Use BI Queries in Visual Composer Applies to: SAP BW 7.x. For more information, visit the EBW homepage. Summary The objective of this Article is to explain step by step guide

More information

Standalone BW System Refresh

Standalone BW System Refresh Applies to: Software Component: SAP_BW. For more information, visit the EDW homepage Summary BW relevant steps/scenarios during refresh of an existing non-productive BW system from productive BW system

More information

ios Ad Hoc Provisioning Quick Guide

ios Ad Hoc Provisioning Quick Guide ios Ad Hoc Provisioning Quick Guide Applies to: Applications developed for all kinds of ios devices (iphone, ipad, ipod). For more information, visit the Mobile homepage. Summary This article is a quick

More information

JCo 3.0 in Web Channel 7.54

JCo 3.0 in Web Channel 7.54 Document Version: 1.0 2016-01-20 Configuration & Migration Help Typographic Conventions Type Style Example Example EXAMPLE Example Example EXAMPLE Description Words or characters quoted from

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

Config Tool Activities

Config Tool Activities Applies to: This Article applies to Enterprise Portal 7.0. For more information, visit the Portal and Collaboration homepage. Summary This article describes a few of the activities in Config Tool. Author:

More information

Duet Enterprise Developer Guide

Duet Enterprise Developer Guide Applies to: Duet Enterprise 1.0 SP2. For more information, visit Duet Enterprise. Summary The Duet Enterprise Developer Guide explains the development process how to create your own custom development

More information

Web Dynpro: Coloring Table Conditionally

Web Dynpro: Coloring Table Conditionally Web Dynpro: Coloring Table Conditionally Applies to: SAP ECC 6.0. For more information, visit the Web Dynpro ABAP homepage. Summary This article is designed for the beginners in Web Dynpro who have ABAP

More information

How To Develop a Simple Web Service Application Using SAP NetWeaver Developer Studio & SAP XI 3.0

How To Develop a Simple Web Service Application Using SAP NetWeaver Developer Studio & SAP XI 3.0 How-to Guide SAP NetWeaver 04 How To Develop a Simple Web Service Application Using SAP NetWeaver Developer Studio & SAP XI 3.0 Version 1.00 Nov 2005 Applicable Releases: SAP NetWeaver 04 SPS 13 and above

More information

Changing the Source System Assignments in SAP BW Objects without Affecting the Data Modeling

Changing the Source System Assignments in SAP BW Objects without Affecting the Data Modeling Changing the Source System Assignments in SAP BW Objects without Affecting the Data Modeling Applies to: SAP ECC 6.00 and SAP BW 7.0 releases. For more information, visit the Business Intelligence homepage.

More information

Programmatical Approach to User Management in Enterprise Portal

Programmatical Approach to User Management in Enterprise Portal Programmatical Approach to User Management in Enterprise Portal Applies to: SAP Netweaver 2004 SPS15/ SAP Enterprise Portal 6.0 or higher. Summary This article provides information to create user in EP,

More information

Material Listing and Exclusion

Material Listing and Exclusion Material Listing and Exclusion Applies to: Applies to ECC 6.0. For more information, visit the Enterprise Resource Planning homepage Summary This document briefly explains how to restrict customers from

More information

Developing Crystal Reports on SAP BW

Developing Crystal Reports on SAP BW Developing Crystal Reports on SAP BW Applies to: SAP BusinessObjects Crystal Reports. Summary This white paper explores various methods of accessing SAP BW data through Crystal Reports. Author: Arka Roy

More information

Displaying SAP Transaction as Internet Application in Portal

Displaying SAP Transaction as Internet Application in Portal Displaying SAP Transaction as Internet Application in Portal Summary This article explains how we can display SAP transaction as Internet Application Components (IAC) in portal to make it simpler for the

More information

How to Create Business Graphics in Web Dynpro for ABAP

How to Create Business Graphics in Web Dynpro for ABAP Applies To: SAP Netweaver 2004s Internet Graphics Server 7.0 Summary The purpose of this document is to show you how to create business graphics in and to supply code samples to realize this. By: Velu

More information

Internationalization in WebDynpro ABAP Applications

Internationalization in WebDynpro ABAP Applications Internationalization in WebDynpro ABAP Applications Applies to: SAP ECC 6.0. For more information, visit the Web Dynpro ABAP homepage. Summary The article describes the concept and procedure of developing

More information

External Driver Configuration for Process Integration 7.0

External Driver Configuration for Process Integration 7.0 External Driver Configuration for Process Integration 7.0 Applies to: This article will applies to XI3.0 and PI 7.0. If it needs to talk to the other database, we ll need to deploy the drivers in PI. Summary

More information

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format.

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format. J2EE Development Detail: Audience www.peaksolutions.com/ittraining Java developers, web page designers and other professionals that will be designing, developing and implementing web applications using

More information

SEEBURGER BICMD for SAP Exchange Infrastructure - Configuration Guide

SEEBURGER BICMD for SAP Exchange Infrastructure - Configuration Guide SEEBURGER BICMD for SAP Exchange Infrastructure - Configuration Guide Applies to: The Business Integration Converter Mapping Designer (BIC MD) version 5.5.2/6.3.2 is a visual tool used for creating mappings,

More information

Security Optimization Self Service A Real-life Example

Security Optimization Self Service A Real-life Example Security Optimization Self Service A Real-life Example Applies to: SAP Solution Manager 4.0 EhP1 SP2 - Security Optimization Self Service. For more information, visit the Security homepage. Summary This

More information

ODBO, BAPI and XMLA It s All MDX to Me

ODBO, BAPI and XMLA It s All MDX to Me Applies To: ODBO, OLAP BAPI and XMLA interfaces for connecting to SAP BW. Summary Over the years, there has been a lot of discussion and confusion about what interface to use when connecting to SAP BW.

More information

TBIT40 SAP NetWeaver Process Integration

TBIT40 SAP NetWeaver Process Integration TBIT40 SAP NetWeaver Process Integration. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter Release 12.2.1.1.0 E73562-01 June 2016 Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter, Release 12.2.1.1.0 E73562-01 Copyright 2015,

More information

Information Broadcasting-Part 2 - System Settings

Information Broadcasting-Part 2 - System Settings Information Broadcasting-Part 2 - System Settings Applies to: SAP BW 3.5 Summary This article covers the information broadcasting (IB) setup process. As this is part-2, it talks all about the system settings

More information

Freely Programmed Help- Web Dynpro

Freely Programmed Help- Web Dynpro Freely Programmed Help- Web Dynpro Applies to: SAP ABAP Workbench that supports Web dynpro development. For more information, visit the Web Dynpro ABAP homepage. Summary In addition to the Dictionary Search

More information

List of Values in BusinessObjects Web Intelligence Prompts

List of Values in BusinessObjects Web Intelligence Prompts List of Values in BusinessObjects Web Intelligence Prompts Applies to: This solution is implemented for a combination of SAP NW BI 7.0 and SAP BO XI 3.1. For more information visit Business Objects Home

More information

Creating Custom SU01 Transaction Code with Display and Password Reset Buttons

Creating Custom SU01 Transaction Code with Display and Password Reset Buttons Creating Custom SU01 Transaction Code with Display and Password Reset Buttons Applies to: All versions of SAP. Summary This article will explain you the process of creating custom SU01 transaction code

More information

Enterprise Services Repository and Registry

Enterprise Services Repository and Registry Enterprise Services Repository and Registry Applies to: Enterprise Services Repository & Registry together with SAP NetWeaver Process Integration and SAP NetWeaver Composition Environment. For more information,

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter Release 12.2.1.3.0 E83336-02 July 2017 Documentation for Oracle Service-Oriented Architecture (SOA) developers that describes how to use the Oracle

More information

Linking Documents with Web Templates

Linking Documents with Web Templates Linking Documents with Web Templates Summary This article explains certain ways to link documents with our Web-Templates which is a useful way of attaching information with a query. When the enduser runs

More information