Set http- Header Parameters using the Axis Framework
|
|
|
- Nigel Adrian Anthony
- 9 years ago
- Views:
Transcription
1 How-to Guide SAP NetWeaver 7.0 (2004s) How To Set http- Header Parameters using the Axis Framework Version 1.10 June 2008 Applicable Releases: SAP NetWeaver 04 SAP NetWeaver 7.0 (2004s) End-to End-Process Integration Enabling Application-to-Application Processes Enabling Business-to-Business Processes
2 Copyright 2007 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG. The information contained herein may be changed without prior notice. Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors. Microsoft, Windows, Outlook, and PowerPoint are registered trademarks of Microsoft Corporation. IBM, DB2, DB2 Universal Database, OS/2, Parallel Sysplex, MVS/ESA, AIX, S/390, AS/400, OS/390, OS/400, iseries, pseries, xseries, zseries, z/os, AFP, Intelligent Miner, WebSphere, Netfinity, Tivoli, and Informix are trademarks or registered trademarks of IBM Corporation in the United States and/or other countries. Oracle is a registered trademark of Oracle Corporation. UNIX, X/Open, OSF/1, and Motif are registered trademarks of the Open Group. Citrix, ICA, Program Neighborhood, MetaFrame, WinFrame, VideoFrame, and MultiWin are trademarks or registered trademarks of Citrix Systems, Inc. HTML, XML, XHTML and W3C are trademarks or registered trademarks of W3C, World Wide Web Consortium, Massachusetts Institute of Technology. Java is a registered trademark of Sun Microsystems, Inc. JavaScript is a registered trademark of Sun Microsystems, Inc., used under license for technology invented and implemented by Netscape. MaxDB is a trademark of MySQL AB, Sweden. SAP, R/3, mysap, mysap.com, xapps, xapp, and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and in several other countries all over the world. All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document serves informational purposes only. National product specifications may vary. These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("SAP Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. These materials are provided as is without a warranty of any kind, either express or implied, including but not limited to, the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. SAP shall not be liable for damages of any kind including without limitation direct, special, indirect, or consequential damages that may result from the use of these materials. SAP does not warrant the accuracy or completeness of the information, text, graphics, links or other items contained within these materials. SAP has no control over the information that you may access through the use of hot links contained in these materials and does not endorse your use of third party web pages nor provide any warranty whatsoever relating to third party web pages. SAP NetWeaver How-to Guides are intended to simplify the product implementation. While specific product features and procedures typically are explained in a practical business context, it is not implied that those features and procedures are the only approach in solving a specific business problem using SAP NetWeaver. Should you wish to receive additional information, clarification or support, please refer to SAP Consulting. Any software coding and/or code lines / strings ( Code ) included in this documentation are only examples and are not intended to be used in a productive system environment. The Code is only intended better explain and visualize the syntax and phrasing rules of certain coding. SAP does not warrant the correctness and completeness of the Code given herein, and SAP shall not be liable for errors or damages caused by the usage of the Code, except if such damages were caused by SAP intentionally or grossly negligent.
3 1 Scenario As per XI 3.0 SP 20 (SAP NetWeaver 7.0 SP12, Usage Type Process Integration, respectively), HTTP header parameters can be set dynamically by means of the Axis Framework used by XI's SOAP adapter. Within the scope of this How-to guide the relevant settings will be exemplified by the parameters Cookie, Set-Cookie and SOAPAction which often occur in SOA communication scenarios. HTTP cookies are a frequently used technology to enable stateful client-server interactions. This How-to guide provides a detailed description, how cookies can be exchanged between the HTTP header and XI s payload. According to World Wide Web Consortium (W3C), The SOAPAction HTTP request header field can be used to indicate the intent of the SOAP HTTP request. The value is a URI identifying the intent. SOAP places no restrictions on the format or specificity of the URI or that it is resolvable. An HTTP client MUST use this header field when issuing a SOAP HTTP Request. 1 This How-to guide provides a detailed description, how the SOAPAction parameter can be set dynamically by means of the Axis Framework. 2 Introduction 2.1 What are Cookies The HTTP protocol is stateless by definition. Each HTTP call is technically independent from any precedent call. In order to enable stateful processing, session information has to be handled on client side. HTTP cookies are a common technique to associate the session on the client side to the one on the server side. The cookies contain a unique session identifier and they are passed forth and back as HTTP header parameters. Cookies are mainly used in the following use cases: Cookies may support server-sessions where a specific set of session data is kept on the server. This data can then be set-up, re-used, enhanced in multiple sequential HTTP calls. Cookies allow single sign-on to web servers. A session ID transported by the cookie parameters might be used instead of a repetitive sending of logon data. Cookies can be used to enable load balancing on the servers. Cookies are transported as name-value pairs of the attributes Set-Cookie and Cookie in the HTTP header. In case that a session has to be kept during a sequence of HTTP calls, the response message of the first HTTP call of that session returns the cookie information in the Set-Cookie attribute: HTTP/ OK Content-Type: text/xml; charset=utf-8 Set-Cookie: SessionID=myOwnPrivateSession12345 All following HTTP calls sent within the scope of that session will make use of the content of the Set-Cookie parameter. The client application will have to provide the cookie information of the initial response message in all following request messages. This 1 See:
4 information is transported in the Cookie attribute of the HTTP header of the request message: POST /service/services/myservice HTTP/1.0 Content-Type: text/xml; charset=utf-8 Host: <host>:<port> Cookie: SessionID=myOwnPrivateSession12345 The server application will than allocate the HTTP call to the correct session. 2.2 How to Handle Cookies in XI Since XI 3.0 SP 20 (SAP NetWeaver 7.0 SP12, Usage Type Process Integration, respectively), HTTP header attributes can be set and read in the SOAP adapter using the Axis Framework provided by the Adapter Engine. The content of the header attributes can be transferred from/to the DynamicConfiguration header of the XI SOAP protocol using the DynamicConfigurationHandler of the Axis Framework. The relevant settings will be explained in details in section 3. The XI-header parameters of the DynamicConfiguration (the so-called adapter-specific message attributes ASMAs) can then be accessed (read/write) in a mapping program. The following schema provides an overview how cookies can be handled during message processing in XI. 1. During the first call (logon, session create, ) the server application creates cookie to identify the session and sends it in the Set-Cookie parameter of the HTTP header of the response message of the synchronous call. 2. The SOAP adapter transfers the header parameter Set-Cookie to the DynamicConfiguration header of the XI SOAP message using the Axis framework. 3. The DynamicConfiguration header of the XI SOAP message can be accessed by means of a mapping program and its content can be transferred to the message payload
5 4. The client application handles the cookie within its session and adds it to the payload of all following calls belonging to that session. 5. A mapping program transfers the content of the cookie to the DynamicConfiguration header of the XI SOAP message. 6. By means of the Axis framework the content of the cookie is written to the HTTP header of synchronous request message in the SOAP adapter. 7. The server application allocates the HTTP call to the correct session. 2.3 How to set the SOAPAction HTTP Header Field dynamically The handling of the SOAPAction HTTP Header field in the Axis Framework of the SOAP adapter follows the schema of the Cookie attribute described in section 3.3: In a first step an ASMA of the DynamicConfiguration header of the XI SOAP protocol has to be filled with the relevant value (e.g. by means of a mapping). Its content is then populated to the HTTP header using the DynamicConfigurationHandler of the Axis Framework. Since the configuration for the SOAPAction header field varies slightly from the one for the Cookie attribute, it will be highlighted in section
6 3 The Step By Step Solution 3.1 General settings for the Axis Framework of the SOAP adapter 1. Set up the SOAP receiver Communication Channel to handle HTTP header parameter dynamically It is important to set following parameters: Transport Protocol HTTP(Axis) Message Protocol Axis Keep XI Headers true 3.2 Transferring the content of Set-Cookie to the message payload 1. We assume that the content aimed for the cookie is provided by the Set- Cookie parameter in the HTTP message header. 2. To transfer the HTTP header parameter Set-Cookie to the XI s Dynamic Configuration header called SetCookie add a module of type AF_Adapters/axis/HandlerBean to your processing sequence of the SOAP receiver Communication Channel created before. It has to be inserted just before the predefined module xires. You may choose an arbitrary name as module key (here dcres ) HTTP/ OK Content-Type: text/xml; charset=utf-8 Set-Cookie: SessionID=myOwnPrivateSession
7 3. Specify the following parameters for that module Modul e Key dcres Parame ter Name handler.type Parameter Value java:com.sap.aii.axis.xi.xi 30DynamicConfigurationHandl er dcres key.a read TP SetCookie dcres locatio n.a header dcres value.a Set-Cookie Your Module Configuration should look like this: 4. Set up a mapping program for the response message (here: a Message Mapping). Develop a user-defined function getheaderparameter to transfer the content of XI s Dynamic Configuration parameter SetCookie to the message payload. public String getheaderparameter(string paramname,string paramnamespace,container container){ //write your code here DynamicConfiguration conf = (DynamicConfiguration) container.gettransformationparameters(). get(streamtransformationconstants.dynami C_CONFIGURATION); DynamicConfigurationKey key = DynamicConfigurationKey.create(paramName space, paramname); String value = conf.get(key); 5. Set up a mapping to transfer the parameter to the relevant field of your message payload. The input parameters have to follow the names of the keys of XI s Dynamic Configuration header defined in step 3 of this section. 6. This field can now be evaluated in your client application and can be used in the following calls of your session. } return value; <Item>SessionID=myOwnPrivateSession12345</Item > - 5 -
8 3.3 Filling the Cookie parameter of the HTTP header 1. We assume that the content aimed for the Cookie parameter is provided by the message payload (here: within a field called Item). 2. Set up a mapping program for the request mapping (here: a Message Mapping). Develop a user-defined function setheaderparameter to transfer the content of the message payload to XI s Dynamic Configuration parameter Cookie. <Item>SessionID=myOwnPrivateSession12345</Item > public String setheaderparameter(string paramvalue,string paramname,string paramnamespace,container container){ //write your code here DynamicConfiguration conf =(DynamicConfiguration) container.gettransformationparameters(). get(streamtransformationconstants.dynami C_CONFIGURATION); DynamicConfigurationKey key =DynamicConfigurationKey.create(paramNam espace, paramname); conf.put(key, paramvalue); } return paramvalue; 3. Set up a mapping to transfer the parameter to XI s Dynamic Configuration parameter Cookie. The input parameters have to follow the names of the keys of XI s Dynamic Configuration header defined in step 5 of this section (here: TP Cookie). 4. To transfer XI s Dynamic Configuration header called Cookie to the HTTP header parameter Cookie you have to add two modules of type AF_Adapters/axis/HandlerBean to your processing sequence of the SOAP receiver Communication Channel created before. They have to be inserted just after the predefined module xireq. You may choose an arbitrary name as module key (here dcreq and rem ) - 6 -
9 5. Specify the following parameters for these modules Modul e Key dcreq Parame ter Name handler.type Parameter Value java:com.sap.aii.axis.xi.xi 30DynamicConfigurationHandl er dcreq key.b write TP Cookie dcreq locatio n.b header dcreq value.b Cookie rem rem handler.type namespa ce java:com.sap.aii.axis.soap. HeaderRemovalHandler e/30 Your Module Configuration should look like this. Note: 1. The parameters key.c, location.c and value.c are discussed in section The module rem has to be used in order to remove the XI specific SOAP header. 6. The header of your HTTP request looks like the following POST /service/services/myservice HTTP/1.0 Content-Type: text/xml; charset=utf-8 Host: <host>:<port> SOAPAction: "urn:dosomething" Cookie: SessionID=myOwnPrivateSession
10 3.4 Filling the SOAPAction parameter of the HTTP header 1. We assume that the content aimed for the SOAPAction parameter is provided by the message payload (here: within a field called Item). 2. Set up a mapping program for the request mapping (here: a Message Mapping). Develop a user-defined function setheaderparameter to transfer the content of the message payload to XI s Dynamic Configuration parameter THeaderSOAPACTION (You may reuse the user-defined function of step 2 of section 3.3). <Item>urn:doSomethingDifferent</Item> public String setheaderparameter(string paramvalue,string paramname,string paramnamespace,container container){ //write your code here DynamicConfiguration conf =(DynamicConfiguration) container.gettransformationparameters(). get(streamtransformationconstants.dynami C_CONFIGURATION); DynamicConfigurationKey key =DynamicConfigurationKey.create(paramNam espace, paramname); 3. Set up a mapping to transfer the parameter to XI s Dynamic Configuration parameter THeaderSOAPACTION. The input parameters have to follow the names of the keys of XI s Dynamic Configuration header defined in step 5 of this section. You can make use of the Adapter-Specific Message Attribute /SOAP THeaderSOAPACTION of the SOAP adapter. 4. To transfer XI s Dynamic Configuration header called THeaderSOAPACTION to the HTTP header parameter SOAPAction, add two modules of type AF_Adapters/axis/HandlerBean to your processing sequence of the SOAP receiver Communication Channel created before. They have to be inserted just after the predefined module xireq. You may choose an arbitrary name as module key (here dcreq and rem ) } conf.put(key, paramvalue); return paramvalue; - 8 -
11 5. Specify the following parameters for these modules Module Key xireq xireq dcreq Parame ter Name default SOAPAct ion handler.type handler.type Parameter Value urn:dosomething java:com.sap.aii.axis.xi.x I30OutboundHandler java:com.sap.aii.axis.xi.x I30DynamicConfigurationHan dler dcreq key.c write m/soap THeaderSOAPACTION dcreq locatio n.c context dcreq value.c javax.xml.rpc.soap.http.so apaction.uri rem rem handler.type namespa ce java:com.sap.aii.axis.soap.headerremovalhandler ge/30 Your Module Configuration should look like this. Note: 1. It is mandatory to set the parameter defaultsoapaction in module xireq 2. The parameters key.b, location.b and value.b are discussed in section The module rem has to be used in order to remove the XI specific SOAP header. 6. The header of your HTTP request looks like the following POST /service/services/myservice HTTP/1.0 Content-Type: text/xml; charset=utf-8 Host: <host>:<port> SOAPAction: "urn:dosomethingdifferent" Cookie: SessionID=myOwnPrivateSession
12
Download and Install Crystal Reports for Eclipse via the Eclipse Software Update Manager
Download and Install Crystal Reports for Eclipse via the Eclipse Software Update Manager Applies to: Crystal Reports for Eclipse version 2 Summary This document provides a step-by-step guide on how to
How To Configure MDM to Work with Oracle ASM-Based Products
SAP NetWeaver How-To Guide How To Configure MDM to Work with Oracle ASM-Based Products Applicable Releases: MDM 7.1 SP10 and later Version 1.0 June 2013 Copyright 2013 SAP AG. All rights reserved. No part
Configuring Distribution List in Compliant User Provisioning
Configuring Distribution List in Compliant User Provisioning Applies To: GRC Access Control Suite for 5.3 Summary: Configuration of Distribution List in Compliant User Provisioning will allow a group of
prioritize XI messages on integration server
How-to Guide SAP NetWeaver 2004s How To prioritize XI messages on integration server Version 1.00 May 2006 Applicable Releases: SAP NetWeaver 2004s Process Integration Enabling Application-to-Application
How to Set Up an Authorization for a Business Partner in Customer Relationship Management (CRM) Internet Sales: Sample Case
How to Set Up an Authorization for a Business Partner in Customer Relationship Management (CRM) Internet Sales: Sample Case Applies to: SAP CRM 4.0 Internet Sales and beyond Summary You want to set up
Extract Archived Data from SAP ERP
How-to Guide SAP NetWeaver 7.0 How To Extract Archived Data from SAP ERP Version 1.00 May 2006 Applicable Releases: SAP NetWeaver 7.0 (BI capability) Copyright 2008 SAP AG. All rights reserved. No part
Backup & Restore with SAP BPC (MS SQL 2005)
How-to Guide SAP CPM How To Backup & Restore with SAP BPC (MS SQL 2005) Version 1.0 September 2007 Applicable Releases: SAP BPC 5.1 Copyright 2007 SAP AG. All rights reserved. No part of this publication
Analyzing Sales Data for Choosing Forecast Strategies
Analyzing Sales Data for Choosing Forecast Strategies Applies to The article applies to the Demand Planner in SAP APO. Works for version 4.7 and upwards. Summary Choosing the right forecasting strategy
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
Methodology to Implement SAP Process Integration
Methodology to Implement SAP Process Integration Applies to: SAP NetWeaver, SAP Exchange Infrastructure, SAP Process Integration Summary When starting a SAP PI project from scratch, it is very important
3 rd party Service Desk interface
SAP Solution Manager 3 rd party Service Desk interface Product Management SAP Solution Manager SAP AG Disclaimer This presentation is a preliminary version and not subject to your license agreement or
SAP GRC Access Control: Background jobs for risk analysis and remediation (formerly Virsa Compliance Calibrator)
SAP GRC Access Control: Background jobs for risk analysis and remediation (formerly Virsa Compliance Calibrator) Applies to: SAP GRC Access Control, version 5.2 Summary This document discusses the background
Implementing Outlook Integration for SAP Business One
Welcome to your RKT Live Expert Session Implementing Outlook Integration for SAP Business One Valerie Arguin Solution Manager Please note that we are recording this session! Your Presenter Please insert
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
CREATING A PURCHASE ORDER STORE RECORD WEB SERVICE
SAP BEST PRACTICES AND SERVICE SOLUTION MANAGEMENT CREATING A PURCHASE ORDER STORE RECORD WEB SERVICE Exercise / Solution ITAI SADAN, SOLUTION OFFICE, SAP AMERICA SAP BEST PRACTICES AND SERVICE SOLUTION
Performance Best Practices Guide for SAP NetWeaver Portal 7.3
SAP NetWeaver Best Practices Guide Performance Best Practices Guide for SAP NetWeaver Portal 7.3 Applicable Releases: SAP NetWeaver 7.3 Document Version 1.0 June 2012 Copyright 2012 SAP AG. All rights
E-Recruiting Job Board Integration using XI
E-Recruiting Job Board Integration using XI SAP AG 2005 SAP AG 1 Overview of Integration Scenario E-Recruiting System Configuration Delivered XI Components Basic XI-side Configuration Message Monitoring
Ronald Bueck SBO Product Definition
SAP Business One Welcomes you to the Weekly Partner Webinar Series Overview Microsoft Outlook Integration Add-on Ronald Bueck SBO Product Definition Please note that we are recording this session! Your
Utilities for downloading and uploading OO ABAP classes in XML format
SDN Contribution Utilities for downloading and uploading OO ABAP classes in XML format Applies to: SAP WebAS 6.20 and above. Summary This article will present two utility reports for downloading and uploading
How to configure BusinessObjects Enterprise with Citrix Presentation Server 4.0
How to configure BusinessObjects Enterprise with Citrix Presentation Server 4.0 Applies to: BusinessObjects Enterprise XI 3.0 Summary The objective of this document is to provide steps to install and configure
Roster Configuration (Payroll) in SAP ECC 6.0 Tips & Tricks
Roster Configuration (Payroll) in SAP ECC 6.0 Tips & Tricks Applies to: SAP ECC 6.0 onwards. Summary Roster is an application which shows persons of reserved category against specific roster points. Roster
How to Configure and Trouble Shoot Email Notification for Process Control 2.5
SAP SOLUTIONS FOR GOVERNANCE, RISK, AND COMPLIANCE How-To Guide How to Configure and Trouble Shoot Email Notification for Process Control 2.5 SAP GRC Regional Implementation Group Applicable Releases:
Integrate Third Party Collaboration Tools in the SAP NetWeaver Portal. SAP NetWeaver Product Management
Integrate Third Party Collaboration Tools in the SAP NetWeaver Portal SAP NetWeaver Product Management Overview Native Third-Party Services Code Samples Summary Integration of Third-Party Collaboration
Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts
How-to Guide SAP NetWeaver 7.0 (2004s) How to Avoid Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts Version 1.00 May 2007 Applicable Releases: SAP NetWeaver 2004 SAP NetWeaver 7.0 (2004s)
How To Balance In Sap Bw
How-to Guide SAP NetWeaver 04 How To Load Balancing For Data Load Processing and Warehouse Management In BW Version 1.10 January 2005 Applicable Releases: SAP NetWeaver 04 For source system requirements
SAP NetWeaver MDM 5.5 SP3 SAP Portal iviews Installation & Configuration. Ron Hendrickx SAP NetWeaver RIG Americas Foundation Team
SAP NetWeaver MDM 5.5 SP3 SAP Portal iviews Installation & Configuration Ron Hendrickx SAP NetWeaver RIG Americas Foundation Team Prerequisites Required: Basic MDM knowledge Basic EP6 content management
Budget Control by Cost Center
SAP Business One Budget Control by Cost Center Ecosystem & Channels Readiness July 2011 Allows a precise follow up of costs booked using the cost accounting dimensions functionality as introduced in SAP
How To... Call BEx Web Applications from SAP BusinessObjects Dashboards (Xcelsius) and vice versa
SAP NetWeaver SAP How-To NetWeaver Guide How-To Guide How To... Call BEx Web Applications from SAP BusinessObjects Dashboards (Xcelsius) and vice versa Applicable Releases: SAP NetWeaver BW 7.01 SP6 and
Enabling Full-Text Search for Business Objects in mysap ERP
SDN Contribution Enabling Full-Text Search for Business Objects in mysap ERP Applies to: SAP NetWeaver 2004s, mysap ERP 2005 Summary The SAP NetWeaver Search Engine Service (SES) for business objects is
Using SAP Logon Tickets for Single Sign on to Microsoft based web applications
Collaboration Technology Support Center - Microsoft - Collaboration Brief March 2005 Using SAP Logon Tickets for Single Sign on to Microsoft based web applications André Fischer, Project Manager CTSC,
How to Create Web Dynpro-Based iviews. Based on SAP NetWeaver 04 Stack 09. Jochen Guertler
How to Create Web Dynpro-Based iviews Based on SAP NetWeaver 04 Stack 09 Jochen Guertler Copyright Copyright 2004 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted
SAP Master Data Governance- Hiding fields in the change request User Interface
SAP Master Data Governance- Hiding fields in the change request User Interface Applies to: ERP 6 Ehp 5 SAP Master Data Governance. For more information, visit the Master Data Management homepage. Summary
Business One in Action - How can we post bank fees and charges while posting Incoming or Outgoing Payment transactions?
Business One in Action - How can we post bank fees and charges while posting Incoming or Outgoing Payment transactions? Applies to: SAP Business One, Accounting, Banking and Reconciliation Summary: This
Integration of SAP central user administration with Microsoft Active Directory
Collaboration Technology Support Center Microsoft - Collaboration Brief June 2005 Integration of SAP central user administration with Microsoft Active Directory Chris Kohlsdorf, Senior System Architect
Sales Rush Sales Order Processing S01- Lean Baseline Package. SAP Lean Baseline Package Version: V1.500 Country: UK Language: EN Date: February 2006
SAP Lean Baseline Package Version: V1.500 Country: UK Language: EN Date: February 2006 Sales Rush Sales Order Processing S01- Lean Baseline Package SAP AG Neurottstr. 16 69190 Walldorf Germany 1.1.1 Copyright
Maintaining Different Addresses and Email Ids for a Business Partner via CRM Web UI
Maintaining Different Addresses and Email Ids for a Business Partner via CRM Web UI Applies to: CRM 7.0 SP09. For more information, visit the Customer Relationship Management homepage. Summary This article
Collaboration Technology Support Center - Microsoft - Collaboration Brief
Collaboration Technology Support Center - Microsoft - Collaboration Brief February 2007 Single Sign-On to a Microsoft Exchange Cluster Summary Users of the SAP NetWeaver Portal can take advantage of Single
SAP Sales and Operations Planning Software Product (xsop)
SAP Sales and Operations Planning Software Product (xsop) Ray Adams IBU Chemicals March 20 th, 2007 S&OP Overview Functions in xsop Demonstration Wrap-up Why is Sales & Operations Planning needed? Constrained
ARCHIVING OF IDOCS IN SAP
SDN Contribution ARCHIVING OF IDOCS IN SAP Summary Archiving is the process of offloading data in SAP documents to a file at the Operating system layer for future retrieval and optionally delete the documents
How To... Integrate Custom Formulas into the Formula Builder
SAP NetWeaver How-To Guide How To... Integrate Custom Formulas into the Formula Builder Applicable Releases: SAP NetWeaver 2004 SAP NetWeaver 7.0 IT Practice: Business Information Management IT Scenario:
Alert Notification in SAP Supply Network Collaboration. SNC Extension Guide
Alert Notification in SAP Supply Network Collaboration SNC Extension Guide Version: 1.2 Date 08.02.2010 1 The SNC Extension Guide is a collection of tips and tricks on how to extend SAP Supply Network
Integrating Easy Document Management System in SAP DMS
Integrating Easy Document Management System in SAP DMS Applies to: SAP Easy Document Management System Version 6.0 SP12. For more information, visit the Product Lifecycle Management homepage. Summary This
How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide
SAP How-to Guide Mobile Device Management SAP Afaria How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide Applicable Releases: SAP Afaria 7 SP3 HotFix 06, SAP Afaria
Monitoring and Management of Landscapes with SAP NetWeaver Administrator. Dieter Krieger, SAP AG
Monitoring and Management of Landscapes with SAP NetWeaver Administrator Dieter Krieger, SAP AG Overview of SAP NetWeaver Administrator Setting up SAP NetWeaver Administrator Using SAP NetWeaver Administrator
Siteco Relies on SDN for its SAP CRM 5.0 Upgrade
Siteco Relies on SDN for its SAP CRM 5.0 Upgrade Applies to: Enterprise Portal Summary Based in Traunreut, Germany, Siteco is one of the leading suppliers and manufacturers of technical indoor and outdoor
Understanding HR Schema and PCR with an Example
Understanding HR Schema and PCR with an Example Applies to: SAP ECC 6.0 version, SAP HCM module. For more information, visit the Enterprise Resource Planning homepage. Summary This document will provide
mysap ERP Talent Management Dr. Christian Acosta-Flamma
mysap ERP Talent Management Dr. Christian Acosta-Flamma The Talent Management Imperative SAP Talent Management Strategy Why SAP for Talent Management Today s Business Environment Today s business challenges
Sending Additional Files from SAP Netweaver PI to third Party System
Sending Additional Files from SAP Netweaver PI to third Party System Applies to: SAP Netweaver PI. Summary The document describes about a scenario where the requirement is to send multiple files from one
User Experience in Custom Apps
User Experience in Custom Apps p o w e r e d b y t h e S A P M o b i l e P l a t f o r m S e a n L o n g U X A r c h i t e c t M a n u e l S a e z - D i r e c t o r M o b i l e I n n o v a t i o n C e
TM111. ERP Integration for Order Management (Shipper Specific) COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)
TM111 ERP Integration for Order Management (Shipper Specific). COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this
USDL XG WP3 SAP use case. Kay Kadner
XG WP3 SAP use case Kay Kadner Customer Marketplace Company B Runtime Company D Innovation & Community Community Company A Repository Company C Repository Provider Provider 2 Integrated Demonstrator -
R/3 and J2EE Setup for Digital Signature on Form 16 in HR Systems
R/3 and J2EE Setup for Digital Signature on Form 16 in HR Systems Agenda 1. R/3 - Setup 1.1. Transaction code STRUST 1.2. Transaction code SM59 2. J2EE - Setup 2.1. Key Storage 2.2. Security Provider 2.3.
Global Transport Label - General Motors -
SAP Customer Success Story Automotive Consulting Solutions Print form for the Sales and Distribution process Global Transport Label - General Motors - Agenda GETRAG Corporate Group Description of the Function
Workflow extended notifications
Workflow extended notifications Motivation Automatic Notifications Motivation The longest duration in a process is the wait time Purchaser Prod. Planner Wait time Accountant Wait time Wait time can be
HR400 SAP ERP HCM Payroll Configuration
HR400 SAP ERP HCM Payroll Configuration. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced
Enterprise Software - Applications, Technologies and Programming
Enterprise Software - Applications, Technologies and Programming Dr. Uwe Kubach, Dr. Gregor Hackenbroich, Dr. Ralf Ackermann SAP Research 2010 SAP AG. All rights reserved. / Page 1 Abstract This lecture
Debugging Portal Applications
Debugging Portal Applications Applies to: SAP NetWeaver Portal, and developers of portal applications Summary NetWeaver Developer Studio and the AS Java provide tools for helping you debug your applications.
NetWeaver Business Client (NWBC) for Incentives and Commissions Management (ICM)
NetWeaver Business Client (NWBC) for Incentives and Commissions Management (ICM) Applies to: Enhancement Pack 5 (Ehp5), EA-APPL, Incentives and Commissions Management (FS-ICM). Summary This article discusses
OData in a Nutshell. August 2011 INTERNAL
OData in a Nutshell August 2011 INTERNAL Objectives At the end of this module, you will be able to: Understand the OData Standard and how it works. Understand how OData uses the Atom Protocol. Understand
SAPFIN. Overview of SAP ERP Financials COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)
SAPFIN Overview of SAP ERP Financials. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced
Process Archiving using NetWeaver Business Process Management
Process Archiving using NetWeaver Business Process Management Applies to: NetWeaver Composition Environment 7.2, 7.3. For more information, visit the Business Process Modeling homepage. Summary This document
Single Sign-On between SAP Portal and SuccessFactors
Single Sign-On between SAP Portal and SuccessFactors Dimitar Mihaylov 7/1/2012 Contents 1. Overview... 3 2. Trust between SAP Portal 7.3 and SuccessFactors... 5 2.1. Initial configuration in SAP Portal
How to Create a Support Message in SAP Service Marketplace
How to Create a Support Message in SAP Service Marketplace Summary This document explains how to create a message (incident) on the SAP Service Marketplace. It is assumed that the customer has never logged
SAP CCMS Monitors Microsoft Windows Eventlog
MSCTSC Collaboration Brief November 2004 SAP CCMS Monitors Microsoft Windows Eventlog Christian Klink Member of CTSC Focus Group SAP Technology Consultant SAP Technology Consulting II SAP Deutschland AG
Accounts Receivable. SAP Best Practices
Accounts Receivable SAP Best Practices Purpose, Benefits, and Key Steps Purpose This scenario deals with posting accounting data for customers in Accounts Receivable. Benefits The Accounts Receivable is
Table of Contents. How to Find Database Index usage per ABAP Report and Creating an Index
How to Find Database Index usage per ABAP Report and Creating an Index Applies to: SAP NETWEAVER WEB AS ABAP. For more information, visit the ABAP homepage Summary The aim of this article is to show how
UI Framework Logo exchange without skin copy. SAP Enhancement Package 1 for SAP CRM 7.0
UI Framework Logo exchange without skin copy SAP Enhancement Package 1 for SAP CRM 7.0 1 Objectives At the end of this unit, you will be able to: Change the logo within CRM 7.0 WebClient UI Add a logo
Data Archiving in CRM: a Brief Overview
Data Archiving in CRM: a Brief Overview Applies to: Developing Archiving Solutions in SAP CRM technology. For more information, visit the Customer Relationship Management homepage. Summary This document
SAP Business ByDesign Reference Systems. Scenario Outline. SAP ERP Integration Scenarios
SAP Business ByDesign Reference Systems Scenario Outline SAP ERP Integration Scenarios Content Scenario Overview Business Scenarios in a Reference System Introduction Typical Usage Process Illustration
Intelligent Business Operations Chapter 1: Overview & Strategy
Intelligent Business Operations Chapter 1: Overview & Strategy Legal Disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission
AC200. Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable COURSE OUTLINE
AC200 Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015
Third Party Digital Asset Management Integration
Third Party Digital Asset Management Integration Objectives At the end of this unit, you will be able to: Assign Digital Assets to CRM Objects Work with the Where-Used List Describe the necessary customizing
BC407 Reporting: QuickViewer, InfoSet Query and SAP Query
Reporting: QuickViewer, InfoSet Query and SAP Query SAP NetWeaver Course Version: 93 Course Duration: 2 Day(s) Publication Date: 12-04-2012 Publication Time: 1050 Copyright Copyright SAP AG. All rights
SAP Central Process Scheduling (CPS) 8.0 by Redwood
SAP Central Process Scheduling (CPS) 8.0 by Redwood What s new in SAP CPS 8.0? November 2010 Agenda 1. SAP Central Process Scheduling by Redwood Architecture Overview 2. Enhanced User Interface 3. New
UI Framework Task Based User Interface. SAP Enhancement Package 1 for SAP CRM 7.0
UI Framework Task Based User Interface SAP Enhancement Package 1 for SAP CRM 7.0 1 Agenda 1. Overview 2. Task Based User Interface 3. Further Information SAP 2009 / Page 2 2 Objectives of the Presentation
Integration of Outlook Web Access (OWA) into SAP Enterprise Portal
Collaboration Technology Support Center - Microsoft - Collaboration Brief October 2004 Integration of Outlook Web Access (OWA) into SAP Enterprise Portal André Fischer, Project Manager CTSC, SAP AG Michael
Integration of SAP Netweaver User Management with LDAP
Integration of SAP Netweaver User Management with LDAP Applies to: SAP Netweaver 7.0/7.1 Microsoft Active Directory 2003 Summary The document describes the detailed steps of configuring the integration
Log Analysis Tool for SAP NetWeaver AS Java
Log Analysis Tool for SAP NetWeaver AS Java Applies to: SAP NetWeaver 6.40, 7.0x, 7.1x, 7.20 and higher Summary Log Analysis is an SAP tool for analyzing list formatted logs and traces in Application Server
SOP through Long Term Planning Transfer to LIS/PIS/Capacity. SAP Best Practices
SOP through Long Term Planning Transfer to LIS/PIS/Capacity SAP Best Practices Purpose, Benefits, and Key Steps Purpose Check if the budgeted sales quantities can be produced, assess material requirements
Consume an External Web Service in a Nutshell with good old ABAP
Consume an External Web Service in a Nutshell with good old ABAP Applies to: SAP_BASIS, Release 701, SP Level 8 Summary Have you ever tried to consume an external web service out of ABAP? This document
How to Add an Attribute to a Case, Record and a Document in NW Folder Management (ex-records Management)
How to Add an Attribute to a Case, Record and a Document in NW Folder Management (ex-records Management) Applies to: SAP Folder Management 2.4 & 3.0. For more information, visit the Enterprise Performance
Portfolio and Project Management 5.0: Excel Integration for Financial and Capacity Planning
Portfolio and Project Management 5.0: Excel Integration for Financial and Capacity Planning Applies to: Portfolio and Project Management 5.0 Summary Financial and Capacity planning for item, initiative
RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One
RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One September 2013 Customer External Become a Best-Run Business with Remote Support Platform for SAP Business One Run
DBA Cockpit for Oracle
DBA Cockpit for Oracle Ralf Hackmann, Matthias Lienert Database Platforms Group SAP AG Contents Introduction Pages 3-8 Selected New Performance Monitors Pages 9-17 Space Monitoring Pages 18-20 New DBA
How to Schedule Report Execution and Mailing
How To Guide SAP Business One Document Version: 1.0 2012-09-02 Applicable Releases: SAP Business One 8.81 PL10 and higher, SAP Business One 8.82 Typographic Conventions Type Style Example Description Words
SAP NetWeaver BRM 7.3
SAP NetWeaver BRM 7.3 New Features Overview Arti Gopalan Solution Specialist SAP NetWeaver BRM NetWeaver Orchestration SAP Labs India Agenda Technical Components of NW BRM Rules Composer Rules Manager
Business Requirements... 3 Analytics... 3 Typical Use Cases... 8 Related Content... 9 Copyright... 10
SAP BW Data Mining Analytics: Process Reporting Applies to: SAP BW Data Mining. For more information, visit the Analytics homepage. Summary SAP BW Data Mining serves as a process design platform for a
Data Source Enhancement Using User Exit
Data Source Enhancement Using User Exit Applies to: Any SAP system from which data needs to be pulled into SAP BI system. Summary This document describes how to enhance a data source in the source system
Unified Service Description Language Enabling the Internet of Services
Unified Service Description Language Enabling the Internet of Services Dr. Kay Kadner, SAP AG, SAP Research, Chair USDL XG [email protected], 2011-05-16 Growth due to increasing service orientation Source:
How To... configure and execute Business Process Flows in SAP BusinessObjects Planning and Consolidation 7.5 version for SAP NetWeaver
SAP BusinessObjects EPM RIG How-To Guide How To... configure and execute Business Process Flows in SAP BusinessObjects Planning and Consolidation 7.5 version for SAP NetWeaver Applicable Releases: SAP
FSC130 SAP Bank Communication Management
SAP Bank Communication Management SAP ERP - Financials Course Version: 97 Course Duration: 2 Day(s) Publication Date: 2014 Publication Time: Copyright Copyright 2014 SAP AG. All rights reserved. No part
Compliant, Business-Driven Identity Management using. SAP NetWeaver Identity Management and SBOP Access Control. February 2010
Compliant, Business-Driven Identity Management using SAP NetWeaver Identity Management and SBOP Access Control February 2010 Disclaimer This presentation outlines our general product direction and should
SAP Service Tools for Performance Analysis
SAP Service Tools for Performance Analysis Kerstin Knebusch Active Global Support Month 05, 2013 Public Performance Analysis Wait event based Focus on statements causing high load and / or high wait time
Secure MobiLink Synchronization using Microsoft IIS and the MobiLink Redirector
Secure MobiLink Synchronization using Microsoft IIS and the MobiLink Redirector A whitepaper from ianywhere Author: Joshua Savill, Product Manager This whitepaper was written in the context of SQL Anywhere
Ariba Network Integration to SAP ECC
Ariba Network Integration to SAP ECC Mark Willner Principal Technical Solutions Consultant Ariba an SAP Company» October 2014 ERP Materials Management Core Integration Scenario Ariba Collaborative Commerce,
Integration of Universal Worklist into Microsoft Office SharePoint
Integration of Universal Worklist into Microsoft Office SharePoint Applies to: SAP NetWeaver Portal 7.01 SP3 Microsoft Office SharePoint 2007 For more information, visit the Portal and Collaboration homepage.
BW Workspaces Use Cases
BW Workspaces Use Cases Applies to SAP NetWeaver Business Warehouse 7.30 (BW7.30) SP05 and SAP NetWeaver Business Warehouse Accelerator 7.20 (BWA7.20)/HANA 1.0 running as a database for SAP NetWeaver BW
UI Framework Simple Search in CRM WebClient based on NetWeaver Enterprise Search (ABAP) SAP Enhancement Package 1 for SAP CRM 7.0
UI Framework Simple Search in CRM WebClient based on NetWeaver Enterprise Search (ABAP) SAP Enhancement Package 1 for SAP CRM 7.0 1 Objectives At the end of this unit, you will be able to: Use the new
Work with XI 3.0 Java Proxies
How-to Guide SAP NetWeaver 04 How To Work with XI 3.0 Java Proxies Version 2.00 May 2006 Applicable Releases: SAP NetWeaver 04 SAP Exchange Infrastructure 3.0 Copyright 2006 SAP AG. All rights reserved.
