SAP NetWeaver Identity Management Virtual Directory Server. Tutorial. Version 7.0 Rev 4. - Joining data sources

Size: px
Start display at page:

Download "SAP NetWeaver Identity Management Virtual Directory Server. Tutorial. Version 7.0 Rev 4. - Joining data sources"

Transcription

1 SAP NetWeaver Identity Management Virtual Directory Server Tutorial - Joining data sources Version 7.0 Rev 4

2 SAP Library document classification: PUBLIC 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, Excel, 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, System i, System i5, System p, System p5, System x, System z, System z9, z/os, AFP, Intelligent Miner, WebSphere, Netfinity, Tivoli, Informix, i5/os, POWER, POWER5, POWER5+, OpenPower and PowerPC are trademarks or registered trademarks of IBM Corporation. Adobe, the Adobe logo, Acrobat, PostScript, and Reader are either trademarks or registered trademarks of Adobe Systems Incorporated 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, SAP NetWeaver, 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 information 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.

3 i Preface The product The SAP NetWeaver Identity Management Virtual Directory Server can logically represent information from a number of disparate directories, databases, and other data repositories in a virtual directory tree. Different users and applications can, based on their access rights, get different views of the information. Features like namespace conversion and schema adaptations provide a flexible solution that can continually grow and change to support demands from current and future applications, as well as requirements for security and privacy, without changing the underlying architecture and design of data stores like databases and directories. The reader This manual is written for people who are to use join groups in the Virtual Directory Server. Prerequisites To get the most benefit from this tutorial, you should have the following knowledge: Basic knowledge of LDAP. Basic knowledge of Java. Knowledge of SAP NetWeaver Identity Management Virtual Directory Server corresponding to the tutorials (Accessing databases and Accessing LDAP servers). The following software is required: SAP NetWeaver Identity Management Virtual Directory Server version 7.0 or newer, correctly installed and licensed. A Java development environment. This can be downloaded from (version 1.5). Microsoft Access. The source file for this tutorial: The mvd-join.xml configuration file with a minimum configuration for the Virtual Directory Server, including the necessary Java classes. The addresses.mdb database file containing the postal addresses of the employees. The departments.mdb database file containing the employee's departments. The directory server for the tutorials that is installed with the product. The manual This document contains a tutorial for joining information from an LDAP directory and databases using the Virtual Directory Server.

4 ii Related documents You can find useful information in the following documents: The X.500 standard, which can be ordered from LDAP v. 2, RFC1777, "Lightweight Directory Access Protocol". LDAP v. 3, RFC 2251, "Lightweight Directory Access Protocol (V3)". RFCs and Internet drafts can be downloaded from

5 iii Table of contents Introduction... 1 The join process...1 Verifying the configuration of the Virtual Directory Server...2 Section overview...3 Section 1: Viewing the data sources and opening the server configuration... 4 Starting the directory server...4 Viewing the contents of the directory server...4 Viewing the contents of addresses.mdb...6 Viewing the contents of departments.mdb...6 Defining the LDAP mapping...7 Opening the server configuration...8 Enable logging...10 Section 2: Adding the directory server...11 Section 3: Building the virtual tree Renaming the virtual tree...14 Creating the nodes in the virtual tree...15 Section 4: Running the server Specifying the port number...18 Running the server...18 Viewing the contents...19 Section 5: Adding the databases as data sources Creating the ODBC System DSNs...21 Adding the addresses.mdb as a data source...21 Adding the departments.mdb as a data source...29 Testing the data sources...33 Section 6: Creating the join group Adding the join group...35 Adding the addresses as an attribute source...36 Adding the attribute definition...38 Modifying the data source node...40 Viewing the contents...41 Section 7: Extending the join group Adding the attribute source...42 Adding attributes from the attribute source...43 Viewing the contents...44

6 iv

7 Introduction 1 Introduction When performing a SEARCH request, the Virtual Directory Server normally will access the backend data source and return the result. With a join group you can extend this by adding secondary data sources that provide additional information before returning the result to the client. This tutorial shows how you can define the necessary data sources and configure the join group. The Virtual Directory Server receives the incoming SEARCH request and joins the information in the master data source with information from the external data sources. The result is then returned to the client. The join process The join process used in this tutorial can be illustrated as following: 1. A client submits a search request to the Virtual Directory Server. In the virtual tree, the starting point of this search request is a join group. 2. First, a search toward join groups main data source (the master) is executed and the resulting attribute set is obtained. 3. Based on the data in the returned data set and the information that can be obtained from the incoming starting point, rules that describe how to extract the corresponding entries from additional data sources must be configured. 4. The configured rules are utilized through a series of new searches in additional data sources is executed. 5. The response, an attribute set containing attributes both from the master data source and the additional data sources, is returned to the client.

8 2 Introduction Verifying the configuration of the Virtual Directory Server When you installed the Virtual Directory Server, you specified the location of the Java runtime environment. The configuration may look like this when choosing Tools/Options :

9 Introduction 3 Section overview The tutorial consists of the following sections: Section 1: Viewing the data sources and opening the server configuration Section 2: Adding the directory server Section 3: Building the virtual tree Section 4: Running the server Section 5: Adding the databases as data sources Section 6: Creating the join group Section 7: Extending the join group In this section you will view the contents of the database. You will also open the server configuration that contains the initial configuration. This section describes how you can add the directory server as a data source in the Virtual Directory Server. In this section, you create the virtual tree with the nodes referencing the directory server. Here, you run the server and use an LDAP client to view the contents of the virtual directory. This section describes how you add the databases as data sources and test the connection to the data sources. Here, you create the join group and add the addresses as an attribute source. Finally, you will add the second attribute source to the join group.

10 4 Section 1: Viewing the data sources and opening the server configuration Section 1: Viewing the data sources and opening the server configuration In this section, you look at the data sources involved in the tutorial. You also open the server configuration that contains the initial configuration. The tutorial and the necessary files are installed in a sub-directory below the product installation directory. For a default installation, the tutorial will be located in C:\Program Files\SAP\IdM\Virtual Directory Server\Tutorials. Copy them to another directory before you start working with the configuration so that you can repeat this tutorial if you wish to do so. The tutorial includes three files: The configuration file mvd-join.xml. Copy this file to a directory where you can access it from the Virtual Directory Server. Two Microsoft Access database file, addresses.mdb and departments.mdb. Copy these files to the same directory as the configuration file. Additionally you need to start the directory server that you will access in this tutorial. Starting the directory server You will access a directory server that is part of the installation. To start the database server on Microsoft Windows: Choose Programs/SAP NetWeaver Identity Management/Virtual Directory Server/Start tutorial prerequisites from the Start menu. A status window is displayed where you verify that the server started successfully. The port number to use is 7389 to avoid conflicts with any other LDAP servers on the system. Viewing the contents of the directory server The directory server for this tutorial runs on localhost, port 7389, with the user name and password join and starting point o=join. When using an external LDAP client, the contents look like this.

11 Section 1: Viewing the data sources and opening the server configuration 5 When selecting the "General" tab of the "Directory object properties" dialog box, you can view all LDAP attributes for this entry: Note that there are no phone numbers or postal addresses for these entries.

12 6 Section 1: Viewing the data sources and opening the server configuration Viewing the contents of addresses.mdb The Microsoft Access database addresses.mdb contains the title, postal addresses, telephone number, address and department of the employees listed in the directory server. The employee ID will be used to join the entries in this database with the corresponding entries in the directory server. Viewing the contents of departments.mdb The database departments.mdb contains the departments with locality and fax number of the employees. The departments will be used to join the entries in this database to the corresponding departments in the addresses.mdb.

13 Section 1: Viewing the data sources and opening the server configuration 7 Defining the LDAP mapping The columns in the database do not match the LDAP attributes in the clients' requests. There are several ways to perform this mapping in the Virtual Directory Server. In this case, the mapping is performed as part of the data source configuration. The tables below show the columns in the database and suggested LDAP attributes. The addresses.mdb database Column name LDAP attribute Comments Title PostalAdress Homenumber Dep EmployeeID title postaladdress telephonenumber mail ou Normally, this attribute would have been converted to the LDAP attribute uid, but in this join scenario we will show a join method without converting this attribute. The departments.mdb database Column name LDAP attribute Comments Dep ou Locality l Fax facsimiletelephonenumber

14 8 Section 1: Viewing the data sources and opening the server configuration Opening the server configuration To open the configuration file: 1. Start the Virtual Directory Server by choosing Programs/SAP NetWeaver Identity Management/Virtual Directory Server from the Start menu. 2. Choose File/Open. The "Open server configuration" dialog box is displayed: Locate and select the configuration file mvd-join.xml that accompanied this tutorial.

15 Section 1: Viewing the data sources and opening the server configuration 9 3. The expanded configuration tree looks like this:

16 10 Section 1: Viewing the data sources and opening the server configuration Enable logging To see errors, warnings or other information when running the server we will enable the operation log: 1. Choose Configure/Logging/Operation log. Select "Debug" as log level, including log level for extensions. 2. Choose "OK" to close the dialog. You can view the log by choosing the "Operation" button in the toolbar.

17 Section 2: Adding the directory server 11 Section 2: Adding the directory server In this section you add the directory server as a data source in the Virtual Directory Server. To add the directory server as a data source: 1. Select the entry "Singles" below "Data sources" and choose "New " from the context menu. The "Select template" dialog box is displayed: Select "LDAP" in the "Group" list and "Generic directory" in the "Template" list. 2. Choose "OK" to open the "LDAP Directory" wizard.

18 12 Section 2: Adding the directory server Fill in the fields: Server Enter localhost as the server's host name. Port Enter 7389 as the directory server's port number. Starting point Enter o=join as starting point in the directory server. User name Enter join as the user name to log on to the directory server. Password Enter join as the password. 3. Choose "OK". The "LDAP server properties" dialog box is displayed: Fill in the following fields: Enable Select "Enable". Display name Enter Master directory server as the name of the data source. Unique name Enter a unique name for the data source. This name is used when referencing the data source from the Java classes.

19 Section 2: Adding the directory server Select the "LDAP" tab: The values you specified in the wizard are filled in. 5. Choose "Test connection" to verify that you have specified correct parameters to the data source. 6. Choose "OK" to close the dialog box.

20 14 Section 3: Building the virtual tree Section 3: Building the virtual tree To be able to view the contents of the directory server, you need to create a virtual tree with a node that references the data source. Renaming the virtual tree The first step is to rename the default virtual tree. 1. Select the entry "Tree 1" and choose "Properties " from the context menu. The "Virtual tree properties" dialog box is displayed: Fill in the following fields: Virtual tree name Enter Join tree as the name of the virtual tree. 2. Choose "OK" to close the dialog box.

21 Section 3: Building the virtual tree 15 Creating the nodes in the virtual tree The next step is to define the necessary nodes in the virtual tree. It will consist of one static node (the organization) and one data source node referencing the data source, the directory server containing the person entries. Adding the static node 1. Select the virtual tree and choose "New " from the context menu. The "Add node" dialog box is displayed: Fill in the fields with the following values: Relative DN Enter o=employees as the node's relative distinguished name. Object class Select the object class "top" and "organization" for this node. Keep the default values for the other fields.

22 16 Section 3: Building the virtual tree 2. Select the "Access control list" tab: Select the default user group "Anonymous" and the default rule "FullReadAccess". This will allow anybody connecting with anonymous access read-only access to this virtual tree. 3. Choose "OK" to close the dialog box. Adding the data source node To add the data source node: 1. Select the node o=employees and choose "New " from the context menu. The "Node properties" dialog box is displayed: Fill in the fields with the following values: Relative DN Enter * as the node's relative distinguished name. This will match all possible DNs on this level. Data source category Select "Data source" in the list.

23 Section 3: Building the virtual tree 17 Source Select "Master directory server" in the list. Object class Select "inetorgperson" in the "<Append Object Class>" list. Keep the default values in the other fields. 2. Choose "OK" to close the dialog box.

24 18 Section 4: Running the server Section 4: Running the server In this section, you configure the service, start the server and perform a search. Specifying the port number We are going to deploy the configuration as an LDAP deployment. The port number is part of the deployment configuration: 1. Select the entry "main_listener" and choose "Properties " from the context menu to open the "Server properties" dialog box: If the existing port number conflicts with an existing server, enter another port number. 2. Choose "OK" to close the dialog box. Running the server Start the service by choosing the "Start" button in the toolbar. When the server is started, the indicator in the status bar turns green. Use the internal LDAP client to view the virtual directory, or you can use an external LDAP client to access the Virtual Directory Server. Configure the client using the following information: Server address (host name) according to your system's configuration. The same port number as you used when configuring the server. LDAP version 3. Starting point o=employees. Anonymous login.

25 Section 4: Running the server 19 Viewing the contents When browsing the virtual directory, you should see the following:

26 20 Section 4: Running the server When viewing the properties of the entry, you see that the person does not have phone numbers or address: Note: If you have problems accessing the directory, turn on the operation log to see any error messages and correct the problem.

27 Section 5: Adding the databases as data sources 21 Section 5: Adding the databases as data sources In this section you will add the databases addresses.mdb and departments.mdb as data sources. Creating the ODBC System DSNs Before you can add the databases as data sources, you need to define an ODBC system DSN for the database. Name the DSN "Addresses" and "Departments". A detailed description of how you define an ODBC system DSN is included in the database tutorial for the Virtual Directory Server. You can also access the help system in the "ODBC Data Source Administrator" for details. Adding the addresses.mdb as a data source To add the database as a data source: 1. Select entry "Singles" below "Data sources" and choose "New " from the context menu. The "Select template" dialog box is displayed: Select "Database" in the left list and "Generic Database" in the right.

28 22 Section 5: Adding the databases as data sources 2. Choose "OK" to open the "Generic Database template" wizard. 3. Choose the " " button to the right of the "Database" field to open the "JDBC URL wizard". Locate and select "Sun JDBC-ODBC bridge" in the list.

29 Section 5: Adding the databases as data sources Choose "Next >". Enter the system DSN you created for the database. 5. Choose "Next >" and then "Finish" to complete the wizard and return to the "Generic database template" dialog box. 6. Choose "OK". The "Database properties" dialog box is displayed: Fill in the following fields: Select "Enable". Display name Enter Addresses as the data source's display name. Unique name Enter a unique name for the data source.

30 24 Section 5: Adding the databases as data sources 7. Select the "Database" tab: The values you entered in the URL wizard are filled in. 8. Choose "Get database schema" to verify that you have access to the database and get the database schema.

31 Section 5: Adding the databases as data sources 25 The "Available attributes" dialog is displayed. Select the "Addresses" table to view the columns in the table. 9. Choose "OK" to return to the "Database properties" dialog box. Size limit type Select "TOP" as the size limit type for this database. This is because Microsoft Access uses "SELECT TOP n" to limit the number of records returned.

32 26 Section 5: Adding the databases as data sources 10. Select the "Data source attributes" tab: The columns in the database table are listed in the attribute list. You can keep the values that are selected. 11. It is necessary to map between the unique identifier of the database, EmployeeID and the LDAP unique identifier, uid. This is the attribute that is used to construct the DN for the SEARCH request that joins the information from the master data source with the information from the attribute source. Choose "Define " to open the "Define parameters" dialog box: Select "UID=" from the "Attribute types" list.

33 Section 5: Adding the databases as data sources 27 Select "EmployeeID" from the "Available attributes" list. "Treat as String" is deselected, as the EmployeeID is a numeric value in the database. Choose "Add attribute" to fill in the fields with the correct values. Choose "OK" to return to the "Database properties" dialog box. 12. Select the "Conversion from" tab: Select "Enable conversion from internal attributes". Use the information in the table on page 7 and enter the attribute pairs as displayed above. This is necessary to be able to return the attributes to the client. Select "Add all data source attributes" to fill in the "To column". Select the value in the "LDAP attribute" column in the "From" list.

34 28 Section 5: Adding the databases as data sources 13. Select the "Conversion to" tab: Select "Enable conversion to internal attributes". Choose "Synchronize" to add the conversions you defined on the "Conversion from" tab. 14. Choose "OK" to close the dialog box.

35 Section 5: Adding the databases as data sources 29 Adding the departments.mdb as a data source Add the departments.mdb in the same way as addresses.mdb: 1. Add the data source under the "Singles" node and choose the "Generic database" template. 2. Use the "JDBC URL wizard" to create the URL to the database. 3. The "Database properties" dialog box is displayed: Select "Enable" and enter "Departments" as the name and a unique name for the data source.

36 30 Section 5: Adding the databases as data sources 4. Select the "Database" tab: Choose "Get database schema" and select the "Departments" table. Select "TOP" as "Size limit type.

37 Section 5: Adding the databases as data sources Select the "Data source attributes" tab: Select "Define " and create a DN of "OU=" as "Attribute type" and "Dep" as attribute. 6. Select the "Conversion from" tab:

38 32 Section 5: Adding the databases as data sources Select "Enable conversion from internal attributes" and add the conversions from the table on page 7 as displayed above. 7. Select the "Conversion to" tab: Select "Enable conversion to internal attributes" and choose "Synchronize" to add the conversions. 8. Choose "OK" to close the dialog box.

39 Section 5: Adding the databases as data sources 33 Testing the data sources You are able to test that you can access the data sources by running the Virtual Directory Server in test mode. When running in test mode, you can access the data sources through the internal virtual tree instead of building a separate virtual tree only to access the attribute sources. 1. Choose Server/Test mode : Select "Enable test mode" The fields "User name" and "Password" contain the credentials that you must use to access the data sources. The list below contains all available starting points in the internal tree, o=internal. You see the data source name to the right of the starting point. 2. Choose "OK" to close the dialog box. 3. If necessary start the server or update the configuration if it is already running. Note: Reloading the configuration may take a few seconds. The light in the status bar turns yellow while it is reloaded and turns green when the server is running again. 4. Use the internal LDAP client and select "Test user" to perform a search using the credentials for the test mode. Verify that you are able to access the data source and that the search returns the expected result. 5. Turn off test mode again and reload the server configuration when you are finished.

40 34 Section 6: Creating the join group Section 6: Creating the join group You have now defined the directory server and the databases as single data sources. The next step is to create a join group where you add the information from the databases to the entries in the directory server before they are returned to the client. This involves the following steps: Adding the join group Adding the attribute sources Defining the attributes In the final configuration, the relations will be as illustrated below: The data source "Master directory server" is added as the master in the join group. The two databases "Addresses" and "Departments" are added as attribute sources. The join group is referenced from the data source node in the virtual tree.

41 Section 6: Creating the join group 35 Adding the join group To add the join group: 1. Choose the entry "Groups/Operations/Join" below "Data sources" and choose "New " from the context menu. The "Join group properties" dialog box is displayed: Fill in the fields with the following values: Select "Enable". Display name Enter Employees as the name of the group. Unique name Enter EMPL as the data source groups unique name. Join properties Select "Join base search operations" to specify that the join will be performed only on base SEARCH operations. The join operation can be time consuming, so it can be necessary to limit the join to base SEARCH operations. 2. Select " " to the right of the "Master" field to open the "Select data source" dialog box: Select "Data source" and select the directory server in the "Source" list. 3. Choose "OK" to return to the "Join group properties" dialog box. 4. Choose "OK" to close the dialog box. You must confirm that you want to close the dialog box without any attribute definitions.

42 36 Section 6: Creating the join group Adding the addresses as an attribute source You already have added the addresses.mdb as a data source, but now you need to add it as an attribute source to the join group. There are two ways you could have referenced the data source: You could either have defined a separate virtual tree for the attribute sources, or you can reference the data source in Virtual Directory Server's internal tree, as we will do here. The nodes in this virtual tree are generated by the Virtual Directory Server based on the available data sources. In the next step, we have to define properties of the SEARCH request that is able to find the single, unique entry that matches the entry from the master data source. The execution of this SEARCH request will retrieve the attributes that are included in the join operation. In this tutorial we will describe two ways this can be done. Both will yield the same result. You can choose one of them or try both. Join by DN Join by filter Join by DN In this example, we will find the correct entry by constructing its exact distinguished name. To achieve this, the search type will be set to BASE and the filter to (objectclass=*) (not relevant for the search result). In order to construct the target distinguished name, we will use the uid from the incoming distinguished name. To extract the uid from the DN, we use the DN matching template feature. To add the attribute source: 1. Select the "Employees" node and choose "New " from the context menu. The "Attribute source" dialog box is displayed: Fill in the fields with the following values: Attribute source name Enter Addresses as the name of the attribute source.

43 Section 6: Creating the join group 37 DN matching template Enter uid=<valueofuid> as the uid attribute is retrieved from the SEARCH request and used in the starting point. The value of the uid from incoming distinguished name will be stored into the temporary variable valueofuid. VDS tree Select "Internal tree" as we will access the attribute source through the internal tree. Starting point Enter uid=<valueofuid> as the starting point. The stored value of valueofuid will be used here. on The list contains all data sources. Select the starting point in the internal tree that corresponds to the attribute source. Filter Enter (objectclass=*) as the filter. 2. Choose "OK" to close the dialog box. Join by filter In the second example, we will find the correct entry by performing a ONE-LEVEL (or SUB) search in the data source and specifying a filter that will result in a single entry. In order to construct the correct filter we will use a uid from the incoming distinguished name. Note: You are not limited to use values from the RDN from incoming distinguished name. Any attribute value from master s data set could be used here. 1. Select the "Employees" node and choose "New " from the context menu to display the "Attribute source" dialog box: Attribute source name Enter Addresses as the name of the attribute source.

44 38 Section 6: Creating the join group DN matching template Enter uid=<valueofuid> as the uid attribute is retrieved from the SEARCH request and used in the filter. VDS tree Select "Internal tree" as we will access the attribute source through the internal tree. Starting point Leave the starting point empty, as this would search from the top of the data source. on The list contains all data sources. Select the starting point in the internal tree that corresponds to the attribute source. Filter Enter (employeeid=<valueofuid>) as the filter as this would search for the entry with the EmployeeID matching the uid received from the SEARCH request. 2. Choose "OK" to close the dialog box. Adding the attribute definition The next step is to define how the attributes are retrieved from the attribute source: 1. View the properties of the "Employees" join group and choose "New " to the right of the "Attribute definitions" list: Fill in the fields with the following values: Select "Enable". Attribute name Enter or select the attribute name in the list. Original attribute set Keep the default value "A Append to original value" to specify that you will append the values from the attribute source to any values that exists in the master data source. Data source Select "S Single data source" to specify that the attribute will be found in only one data source..

45 Section 6: Creating the join group 39 Available data sources Select "Addresses" in the list and choose "->". 2. Choose "OK" to add the attribute. 3. Repeat this process for the attributes postaladdress, telephonenumber and mail. 4. The ou attribute will be used as a key in the second attribute source, so we will be sure that the attribute has a value. Thus, we will define the attribute as mandatory and supply a default value that will be used if the attribute is not found in the first attribute source: 5. The attribute list will look like this: 6. Choose "OK" to close the dialog box.

46 40 Section 6: Creating the join group Modifying the data source node At the moment, the data source node o=employees,* in the virtual tree references the data source "Master directory server" directly. To be able to view the result of the join process, this node must reference the join group you have created: 1. View the properties of the data source node: Modify the values in the following fields: Data source category Select "Join group" in the list. Source Select "Employees" in the list. 2. Choose "OK" to close the dialog box.

47 Section 6: Creating the join group 41 Viewing the contents Reload (or start) the server configuration by choosing the "Update" button. You can view the properties of an entry in the directory: Here you see that the postal address has been added to the entry. If this does not happen, you can try to find the reason by inspecting the operation log. Follow the processing of the LDAP request and see if you find information that can help you solve the problem.

48 42 Section 7: Extending the join group Section 7: Extending the join group Finally we will add the departments to the join group. Adding the attribute source To add the attribute source: 1. Select the join group "Employees" and choose "New " from the context menu: Fill in the following fields: Attribute source name Enter Departments as the name of the attribute source. DN matching template You can leave this field empty as the attributes needed to build the starting point is not in the DN of the SEARCH request. VDS tree Select "Internal tree" in the list to specify that you want to reference the data source through the internal tree in the Virtual Directory Server. Starting point Enter ou=<ou>. on Select the data source in the list. Filter Enter (objectclass=*) as the filter for the search. 2. Choose "OK".

49 Section 7: Extending the join group 43 Adding attributes from the attribute source The next step is to specify which attributes that should be included from this attribute source: 1. View the properties of the join group and choose "New " to add the attribute: Fill in the fields with the following values: Select "Enable". Select "l" in the "Attribute name" list. Select "S Single data source" in the "Data sources" list. Select "Departments" in the "Available data sources" list and choose "->". 2. Choose "OK". 3. Repeat the process for the facsimiletelephonenumber attribute. 4. Choose "OK" to close the dialog box.

50 44 Section 7: Extending the join group Viewing the contents Update the server configuration and view the contents of the server. You see that the "locality" attribute is added to the entries. View the properties of an entry: You see that the fax number has been added to the entry.

SAP NetWeaver Identity Management Virtual Directory Server. Tutorial. Version 7.0 Rev 3. - Accessing databases

SAP NetWeaver Identity Management Virtual Directory Server. Tutorial. Version 7.0 Rev 3. - Accessing databases SAP NetWeaver Identity Management Virtual Directory Server Tutorial - Accessing databases Version 7.0 Rev 3 SAP Library document classification: PUBLIC No part of this publication may be reproduced or

More information

SAP NetWeaver Identity Management Virtual Directory Server. Tutorial. Version 7.0 Rev 4. - Accessing LDAP servers

SAP NetWeaver Identity Management Virtual Directory Server. Tutorial. Version 7.0 Rev 4. - Accessing LDAP servers SAP NetWeaver Identity Management Virtual Directory Server Tutorial - Accessing LDAP servers Version 7.0 Rev 4 SAP Library document classification: PUBLIC No part of this publication may be reproduced

More information

SAP NetWeaver Identity Management Virtual Directory Server. Tutorial. Version 7.2 Rev 1. - Accessing databases

SAP NetWeaver Identity Management Virtual Directory Server. Tutorial. Version 7.2 Rev 1. - Accessing databases SAP NetWeaver Identity Management Virtual Directory Server Tutorial - Accessing databases Version 7.2 Rev 1 No part of this publication may be reproduced or transmitted in any form or for any purpose without

More information

What s New / Release Notes SAP Strategy Management 10.1

What s New / Release Notes SAP Strategy Management 10.1 What s New / Release Notes SAP Strategy Management 10.1 PUBLIC Document Version: 1.1 [November 6, 2013] Copyright Copyright 2013 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

SAP NetWeaver Identity Management Identity Center. Tutorial. Version 7.0 Rev 2. - Basic synchronization

SAP NetWeaver Identity Management Identity Center. Tutorial. Version 7.0 Rev 2. - Basic synchronization SAP NetWeaver Identity Management Identity Center Tutorial - Basic synchronization Version 7.0 Rev 2 SAP Library document classification: PUBLIC No part of this publication may be reproduced or transmitted

More information

How To Configure the Websocket Integration with SAP PCo in SAP MII Self Service Composition Environment Tool

How To Configure the Websocket Integration with SAP PCo in SAP MII Self Service Composition Environment Tool SAP MII Websocket Integration with SAP PCo in Self Service Composition Environment How To Configure the Websocket Integration with SAP PCo in SAP MII Self Service Composition Environment Tool Applicable

More information

Installation Guide Business Explorer

Installation Guide Business Explorer Business Explorer 7. 1 0 Copyright Copyright 2006 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

More information

How to Create a New SAPUI5 Development Component

How to Create a New SAPUI5 Development Component SAP Overall Equipment Effectiveness Management How-To Guide How to Create a New SAPUI5 Development Component Applicable Release: OEE 1.0 SP01 Version 1.0 August 8, 2013 Copyright 2013 SAP AG. All rights

More information

How to Set Up and Use the SAP OEE Custom UI Feature

How to Set Up and Use the SAP OEE Custom UI Feature SAP Overall Equipment Effectiveness Management How-To Guide How to Set Up and Use the SAP OEE Custom UI Feature Applicable Release: OEE 1.0 SP01 Version 1.0 August 8, 2013 Copyright 2013 SAP AG. All rights

More information

Install TREX for CAF Version 1.00 March 2006

Install TREX for CAF Version 1.00 March 2006 How-to Guide SAP NetWeaver 04s How To Install TREX for CAF Version 1.00 March 2006 Applicable Releases: SAP NetWeaver 04s Copyright 2006 SAP AG. All rights reserved. No part of this publication may be

More information

Visual Composer - Task Management Application

Visual Composer - Task Management Application Visual Composer - Task Management Application Applies to: Visual Composer for NetWeaver 2004s. Summary This document describes the basic functionality of the Task Management application, which is now available

More information

MDM Syndicator Create Flat Syndication File

MDM Syndicator Create Flat Syndication File MDM Syndicator Create Flat Syndication File Applies to: SAP NetWeaver Master Data Management (MDM) SP3, SP4, SP5. Summary This article provides a step-by-step procedure in manually syndicate the data to

More information

How To Set up NWDI for Creating Handheld Applications in SAP NetWeaver Mobile 7.1

How To Set up NWDI for Creating Handheld Applications in SAP NetWeaver Mobile 7.1 SAP NetWeaver How-To Guide How To Set up NWDI for Creating Handheld Applications in SAP NetWeaver Mobile 7.1 Applicable Releases: SAP NetWeaver Mobile 7.1 Topic Area: User Productivity Capability: Mobile

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

Data Validation in Visual Composer for SAP NetWeaver Composition Environment

Data Validation in Visual Composer for SAP NetWeaver Composition Environment Data Validation in Visual Composer for SAP NetWeaver Composition Environment Applies to: Visual Composer for SAP enhancement package 1 for SAP NetWeaver Composition Environment 7.1 For more information

More information

Consuming Web Dynpro components in Visual Composer.

Consuming Web Dynpro components in Visual Composer. Consuming Web Dynpro components in Visual Composer. Applies to: Visual Composer for SAP enhancement package 1 for SAP NetWeaver Composition Environment 7.1 Summary A step by step guide for translating

More information

SAP GRC Access Control: Configuring compliant user provisioning (formerly Virsa Access Enforcer) into CUA Systems

SAP GRC Access Control: Configuring compliant user provisioning (formerly Virsa Access Enforcer) into CUA Systems SAP GRC Access Control: Configuring compliant user provisioning (formerly Virsa Access Enforcer) into CUA Systems Applies to: SAP GRC Access Enforcer, release 5.2 Summary For GRC Access Control to be able

More information

SAP NetWeaver How-To Guide

SAP NetWeaver How-To Guide SAP NetWeaver How-To Guide Search and Adapt SAP Best Practice content from Business Process Repository (BPR) Applicable Releases: Business Process Blueprinting 1.0 for SAP Solution Manager 7.1 IT Practice

More information

How to Set Up and Use the SAP OEE Custom KPI Andons Feature

How to Set Up and Use the SAP OEE Custom KPI Andons Feature SAP Overall Equipment Effectiveness Management How-To Guide How to Set Up and Use the SAP OEE Custom KPI Andons Feature Applicable Release: OEE 1.0 SP02 Patch 2 Version 1.0 February 20, 2014 Copyright

More information

How to View Dashboards in the Self Service Composition Environment with Additional Metadata

How to View Dashboards in the Self Service Composition Environment with Additional Metadata SAP MII Add Metadata to Dashboards in Service Composition Environment How-To-Guide How to View Dashboards in the Self Service Composition Environment with Additional Metadata Applicable Release: MII 15.0

More information

A Step-By-Step Guide on File to File Scenario Using Xslt Mapping

A Step-By-Step Guide on File to File Scenario Using Xslt Mapping A Step-By-Step Guide on File to File Scenario Using Xslt Mapping Applies to: SAP Exchange Infrastructure (XI) 3.0 / Process Integration (PI) 7.0 This document is for all XI aspirants who want to create

More information

Do Exception Broadcasting

Do Exception Broadcasting How-to Guide SAP NetWeaver 2004s How To Do Exception Broadcasting Version 1.00 October 2006 Applicable Releases: SAP NetWeaver 2004s Copyright 2006 SAP AG. All rights reserved. No part of this publication

More information

Quick Reference Guide SAP GRC Access Control Compliant User Provisioning (formerly Virsa Access Enforcer): HR Triggers

Quick Reference Guide SAP GRC Access Control Compliant User Provisioning (formerly Virsa Access Enforcer): HR Triggers Quick Reference Guide SAP GRC Access Control Compliant User Provisioning (formerly Virsa Access Enforcer): Purpose: Why: When: How often: Main Tasks: Perform configuration steps for used in GRC Access

More information

Simplified Configuration of Single System Update in Maintenance Optimizer

Simplified Configuration of Single System Update in Maintenance Optimizer SAP Solution Manager How-To Guide Simplified Configuration of Single System Update in Maintenance Optimizer Applicable Releases: SAP Solution Manager 7.0 Enhancement Package 1 SP23 or higher SAP Solution

More information

Web Page Composer anonymous user access

Web Page Composer anonymous user access Web Page Composer anonymous user access Applies to: SAP NetWeaver Knowledge Management SPS14. For more information, visit the Content Management homepage. Summary Web Page composer is a tool used for publishing

More information

configure an anonymous access to KM

configure an anonymous access to KM How-to Guide SAP NetWeaver 2004s How To configure an anonymous access to KM Version 1.00 February 2006 Applicable Releases: SAP NetWeaver 2004s Copyright 2006 SAP AG. All rights reserved. No part of this

More information

SAP NetWeaver Identity Management Identity Center Minimum System Requirements

SAP NetWeaver Identity Management Identity Center Minimum System Requirements SAP NetWeaver Identity Management Identity Center Minimum System Requirements Version 7.2 Rev 1 No part of this publication may be reproduced or transmitted in any form or for any purpose without the express

More information

How To Configure IDoc Adapters

How To Configure IDoc Adapters How-to Guide SAP NetWeaver 04 How To Configure IDoc Adapters Version 1.00 Feb 2005 Applicable Releases: SAP NetWeaver 04 XI 3.0 SR1 and above Copyright 2005 SAP AG. All rights reserved. No part of this

More information

How to Use Function Keys in Mobile Applications for Handhelds

How to Use Function Keys in Mobile Applications for Handhelds SAP NetWeaver How-To Guide How to Use Function Keys in Mobile Applications for Handhelds Applicable Releases: SAP NetWeaver 7.1 Topic Area: User Productivity Capability: Mobile Version 1.00 June 2009 Copyright

More information

How To... Promote Reports and Input Schedules Through Your System Landscape

How To... Promote Reports and Input Schedules Through Your System Landscape SAP BOBJ Planning & Consolidation (BPC), version for Netweaver How-To Guide How To... Promote Reports and Input Schedules Through Your System Landscape Applicable Releases: SAP BusinessObjects Planning

More information

How To... Master Data Governance for Material: BADI USMD_SSW_SYSTEM_METHOD_CALLER to create successor change request

How To... Master Data Governance for Material: BADI USMD_SSW_SYSTEM_METHOD_CALLER to create successor change request SAP How-To Guide Master Data Governance for Material How To... Master Data Governance for Material: BADI USMD_SSW_SYSTEM_METHOD_CALLER to Applicable Releases: EhP5, EhP6, MDG6.1 Version 1.1 March 2013

More information

Building a Tax Calculation Application

Building a Tax Calculation Application Building a Tax Calculation Application Applies to: Business Rules Framework plus shipped with SAP NetWeaver 7.0 Enhancement Package 1. Summary In this tutorial, you learn to model an application for calculating

More information

How To... Configure Integrated Configurations in the Advanced Adapter Engine

How To... Configure Integrated Configurations in the Advanced Adapter Engine SAP NetWeaver How-To Guide How To... Configure Integrated Configurations in the Advanced Adapter Engine Applicable Releases: SAP NetWeaver Process Integration 7.1, EhP 1 Topic Area: SOA Middleware Capability:

More information

How To Extend User Details

How To Extend User Details How-to Guide SAP NetWeaver 2004s How To Extend User Details May 2006 Applicable Releases: SAP NetWeaver 2004s Copyright 2006 SAP AG. All rights reserved. No part of this publication may be reproduced or

More information

Using Business Graphics

Using Business Graphics Using Business Graphics SAP NetWeaver 2004 Copyright Copyright 2004 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the

More information

How To Recover Login Module Stack when login to NWA or Visual Administrator is impossible

How To Recover Login Module Stack when login to NWA or Visual Administrator is impossible SAP NetWeaver How-To Guide How To Recover Login Module Stack when login to NWA or Visual Administrator is impossible Applicable Releases: SAP NetWeaver 7.0 SAP NetWeaver CE 7.1 Topic Area: Security & Identity

More information

Resume Parsing. SAP enhancement package 3 for SAP ERP 6.0. Document Version ERECRUIT 603 RECRUIT 603

Resume Parsing. SAP enhancement package 3 for SAP ERP 6.0. Document Version ERECRUIT 603 RECRUIT 603 Resume Parsing ERECRUIT 603 RECRUIT 603 SAP enhancement package 3 for SAP ERP 6.0 Document Version 1.0 1 Copyright Copyright 2007 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

SAP Composite Application Framework. Creating a Content Package Object

SAP Composite Application Framework. Creating a Content Package Object SAP Composite Application Framework Creating a Content Package Object Version 1.00 July 2006 SAP AG Neurottstraße 16 69190 Walldorf Germany T +49/18 05/34 34 24 F +49/18 05/34 34 20 www.sap.com Copyright

More information

link SAP BPC Excel from an enterprise portal Version th of March 2009

link SAP BPC Excel from an enterprise portal Version th of March 2009 How-to Guide SAP CPM How To link SAP BPC Excel from an enterprise portal Version 1.00 12 th of March 2009 Applicable Releases: SAP BPC 7.0 M, 7.0 NW Copyright 2007 SAP AG. All rights reserved. No part

More information

How To... Reuse Business Objects and Override Operations of a Business Object

How To... Reuse Business Objects and Override Operations of a Business Object SAP NetWeaver How-To Guide How To... Reuse Business Objects and Override Operations of a Business Object Applicable Releases: SAP NetWeaver Composition Environment 7.1 Topic Area: Development and Composition

More information

Authentication of a WS Client Using a SAP Logon Ticket

Authentication of a WS Client Using a SAP Logon Ticket Authentication of a WS Client Using a SAP Logon Ticket Release 650 HELP.BCWEBSERVICES_TUTORIALS SAP Online Help 04.04.2005 Copyright Copyright 2004 SAP AG. All rights reserved. No part of this publication

More information

SAP Composite Application Framework. Creating an External Service type Callable Object in Guided Procedures

SAP Composite Application Framework. Creating an External Service type Callable Object in Guided Procedures SAP Composite Application Framework Creating an External Service type Callable Object in Guided Procedures Version 1.00 July 2006 SAP AG Neurottstraße 16 69190 Walldorf Germany T +49/18 05/34 34 24 F +49/18

More information

Integrating a Web Service in a Composite Application. SAP Composite Application Framework

Integrating a Web Service in a Composite Application. SAP Composite Application Framework Integrating a Web Service in a Composite Application SAP Composite Application Framework Document Version 1.00 November 2005 SAP AG Neurottstraße 16 69190 Walldorf Germany T +49/18 05/34 34 24 F +49/18

More information

How To...Configure Integration of CUP with SPM

How To...Configure Integration of CUP with SPM SAP SOLUTIONS FOR GOVERNANCE, RISK, AND COMPLIANCE How-To Guide How To...Configure Integration of CUP with SPM SAP GRC Regional Implementation Group Applicable Releases: SAP GRC Access Control 5.3 Topic

More information

How To...Use a Debugging Script to Easily Create a Test Environment for a SQL-Script Planning Function in PAK

How To...Use a Debugging Script to Easily Create a Test Environment for a SQL-Script Planning Function in PAK SAP NetWeaver SAP How-To NetWeaver Guide How-To Guide How To...Use a Debugging Script to Easily Create a Test Environment for a SQL-Script Planning Function in PAK Applicable Releases: SAP NetWeaver BW

More information

Visual Composer Build Process

Visual Composer Build Process Applies to: Visual Composer for Composition Environment 7.1 Summary This paper explains how Visual Composer builds & creates its applications, and what are the dependencies and naming consideration a modeler

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

Duet Enterprise: Tracing Reports in SAP, SCL, and SharePoint

Duet Enterprise: Tracing Reports in SAP, SCL, and SharePoint Duet Enterprise: Tracing Reports in SAP, SCL, and SharePoint Applies to: Duet Enterprise 1.0. For more information, visit the. Duet Enterprise Home Site Summary Duet Enterprise consists of a SharePoint

More information

How to Browse an Enterprise Services Registry in Visual Composer

How to Browse an Enterprise Services Registry in Visual Composer How to Browse an Enterprise Services Registry in Visual Composer Applies to: Visual Composer SAP NetWeaver Composition Environment 7.1 (Ehp0 and Ehp1) For more information, visit the User Interface Technology

More information

Exercise 1: Adding business logic to your application

Exercise 1: Adding business logic to your application Exercise 1: Adding business logic to your application At the conclusion of this exercise, you will be able to: - Enhance a Business Object with a new Property - Implement an Event Handler for a Business

More information

Cache Settings in Web Page Composer

Cache Settings in Web Page Composer Cache Settings in Web Page Composer Applies to: EP 7.0, SAP NetWeaver Knowledge Management SPS14. For more information, visit the Content Management homepage. Summary This paper explains what cache settings

More information

Visual Composer for SAP NetWeaver Composition Environment - Connectors

Visual Composer for SAP NetWeaver Composition Environment - Connectors Visual Composer for SAP NetWeaver Composition Environment - Connectors Applies to: Visual Composer for SAP enhancement package 1 for SAP NetWeaver Composition Environment 7.1 For more information, visit

More information

View Time Security for crystalreports.com

View Time Security for crystalreports.com View Time Security for crystalreports.com Applies to: crystalreports.com, SAP BusinessObjects BI OnDemand This white paper demonstrates a method for implementing view time security within a Crystal Report

More information

How To... Master Data Governance for Material: BADI USMD_SSW_PARA_RESULT_HANDLER to merge result of parallel workflow tasks

How To... Master Data Governance for Material: BADI USMD_SSW_PARA_RESULT_HANDLER to merge result of parallel workflow tasks SAP How-To Guide Master Data Governance for Material How To... Master Data Governance for Material: BADI USMD_SSW_PARA_RESULT_HANDLER to merge result of parallel workflow tasks Applicable Releases: EhP5,

More information

Enterprise Portal Logon Page Branding

Enterprise Portal Logon Page Branding Enterprise Portal Logon Page Branding Applies to: This document applies to Enterprise Portal 6.0 based on NW04 and 2004s platforms. Summary This document describes a procedure that uses the NetWeaver Development

More information

How to Translate a Visual Composer Model Part I

How to Translate a Visual Composer Model Part I How to Translate a Visual Composer Model Part I Applies to: SAP NetWeaver Visual Composer. Summary This How To guide is the first part in a series of guides which explain how to create and maintain translations

More information

Visual Composer for NetWeaver CE: Getting Started with a Typical Workflow

Visual Composer for NetWeaver CE: Getting Started with a Typical Workflow Visual Composer for NetWeaver CE: Getting Started with a Typical Workflow Applies to: Visual Composer for SAP NetWeaver Composition Environment 7.1 Summary This article aims to help you get started modeling

More information

Sizing for Guided Procedures, SAP NetWeaver 7.0

Sizing for Guided Procedures, SAP NetWeaver 7.0 Sizing Guide Sizing for Guided Procedures, SAP NetWeaver 7.0 Released for SAP Customers and Partners Document Version 1.0 - September 2007r Released for SAP Customers and Partners Copyright 2005 SAP AG.

More information

Visual Composer Modeling: Data Validation in the UI

Visual Composer Modeling: Data Validation in the UI Visual Composer Modeling: Data Validation in the UI Applies to: Visual Composer for SAP NetWeaver Composition Environment (CE) 7.1. Summary In Visual Composer, validation rules are an often overlooked

More information

SAP NetWeaver How-To Guide

SAP NetWeaver How-To Guide SAP NetWeaver How-To Guide Integrate your Business Blueprint with SAP Netweaver BPM Applicable Releases: Business Process Blueprinting 1.0 for SAP Solution Manager 7.1 IT Practice / Topic Area: Blueprinting

More information

Single Sign-on For SAP NetWeaver Mobile PDA Client

Single Sign-on For SAP NetWeaver Mobile PDA Client Single Sign-on For SAP NetWeaver Mobile PDA Client Applies to: SAP NetWeaver PDA Mobile Client 7.30. For more information, visit the Mobile homepage. Summary Single Sign-On (SSO) is a mechanism that eliminates

More information

Configure SSO in an SAP NetWeaver 2004s Dual Stack

Configure SSO in an SAP NetWeaver 2004s Dual Stack How-to Guide SAP xrpm 4.0 How To Configure SSO in an SAP NetWeaver 2004s Dual Stack Version 1.00 December 2005 Applicable Releases: SAP xrpm 4.0 Copyright 2004 SAP AG. All rights reserved. No part of this

More information

Process Control 2.5 Implementation Checklist

Process Control 2.5 Implementation Checklist SAP SOLUTIONS FOR GOVERNANCE, RISK, AND COMPLIANCE Checklist Process Control 2.5 Implementation Checklist SAP GRC Regional Implementation Group Applicable Releases: SAP GRC Process Control 2.5 IT Practice

More information

Building a Composite Business Process from Scratch with SAP NetWeaver BPM Guide 2

Building a Composite Business Process from Scratch with SAP NetWeaver BPM Guide 2 Building a Composite Business Process from Scratch with SAP NetWeaver BPM Guide 2 Applies to: SAP enhancement package 1 for SAP NetWeaver Composition Environment 7.1 Summary This guide explains how to

More information

SDN Contribution HOW TO CONFIGURE XMII BUILD 63 AND IIS 6.0 FOR HTTPS

SDN Contribution HOW TO CONFIGURE XMII BUILD 63 AND IIS 6.0 FOR HTTPS SDN Contribution HOW TO CONFIGURE XMII 11.5.1 BUILD 63 AND IIS 6.0 FOR HTTPS Applies to: Configuring SAP xapp Manufacturing Integration and Intelligence (SAP xmii 11.5.1 build 63) and IIS 6.0 for https.

More information

BC100. Introduction to Programming with ABAP COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

BC100. Introduction to Programming with ABAP COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) BC100 Introduction to Programming with ABAP. 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

More information

How-To... Add Sensitive Content into an Area

How-To... Add Sensitive Content into an Area SAP NetWeaver How-To Guide How-To... Add Sensitive Content into an Area For Web Page Composer in SAP NetWeaver Portal 7.3 Applicable Releases: SAP NetWeaver 7.3 Version 1.0 Jun 2011 Some components of

More information

Duplicate Check and Fuzzy Search for Accounts and Contacts. Configuration with SAP NetWeaver Search and Classification (TREX) in SAP CRM WebClient UI

Duplicate Check and Fuzzy Search for Accounts and Contacts. Configuration with SAP NetWeaver Search and Classification (TREX) in SAP CRM WebClient UI Duplicate Check and Fuzzy Search for Accounts and Contacts Configuration with SAP NetWeaver Search and Classification (TREX) in SAP CRM WebClient UI April 2012 Copyright Copyright 2012 SAP AG. All rights

More information

Configure UD Connect on the J2EE Server for JDBC Access to External Databases

Configure UD Connect on the J2EE Server for JDBC Access to External Databases How-to Guide SAP NetWeaver 04 How to Configure UD Connect on the J2EE Server for JDBC Access to External Databases Version 1.05 Jan. 2004 Applicable Releases: SAP NetWeaver 04 (SAP BW3.5) Copyright 2004

More information

Create Partitions in SSAS of BPC Version 1.00 Feb 2009

Create Partitions in SSAS of BPC Version 1.00 Feb 2009 How-to Guide SAP EPM How To Create Partitions in SSAS of BPC Version 1.00 Feb 2009 Applicable Releases: SAP BPC 5.x Copyright 2007 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

SAP BusinessObjects Predictive Analysis 1.0 Supported Platforms

SAP BusinessObjects Predictive Analysis 1.0 Supported Platforms SAP BusinessObjects Predictive Analysis 1.0 Supported Platforms Applies to: SAP BusinessObjects Predictive Analysis 1.0 Summary This document contains information specific to platforms and configurations

More information

How to Set Up Data Sources for Crystal Reports Layouts in SAP Business One, Version for SAP HANA

How to Set Up Data Sources for Crystal Reports Layouts in SAP Business One, Version for SAP HANA How-To Guide SAP Business One 8.82, Version for SAP HANA Document Version: 1.0 2012-09-05 How to Set Up Data Sources for Crystal Reports Layouts in SAP Business One, Version for SAP HANA All Countries

More information

SAP Composite Application Framework. Creating a Callable Object in Group: Miscellaneous

SAP Composite Application Framework. Creating a Callable Object in Group: Miscellaneous SAP Composite Application Framework Creating a Callable Object in Group: Miscellaneous Version 1.00 July 2006 SAP AG Neurottstraße 16 69190 Walldorf Germany T +49/18 05/34 34 24 F +49/18 05/34 34 20 www.sap.com

More information

How to Upgr a d e We b Dynpro Them e s from SP S 9 to SP S 1 0

How to Upgr a d e We b Dynpro Them e s from SP S 9 to SP S 1 0 How- to Guide SAP NetW e a v e r 0 4 How to Upgr a d e We b Dynpro Them e s from SP S 9 to SP S 1 0 Ver si o n 1. 0 0 Dec e m b e r 2 0 0 4 Applic a b l e Rele a s e s : SAP NetW e a v e r 0 4 SP Sta c

More information

xmii UDS Overview and Troubleshooting

xmii UDS Overview and Troubleshooting xmii UDS Overview and Troubleshooting Applies to: SAP xmii Universal Data Servers (UDS) version 4.0 and higher. Summary This article describes the SAP xmii UDS line of products and methods for debugging

More information

Preview of Web Services Reliable Messaging in SAP NetWeaver Process Integration 7.1

Preview of Web Services Reliable Messaging in SAP NetWeaver Process Integration 7.1 Preview of Web Services Reliable Messaging in SAP NetWeaver Process Integration 7.1 Applies to: SAP NetWeaver Process Integration IT Scenarios in Version 7.1 Summary In this article I introduce some details

More information

Integrate a Forum into a Collaboration Room

Integrate a Forum into a Collaboration Room How-to Guide SAP NetWeaver 04 How To Integrate a Forum into a Collaboration Room Version 1.00 May 2007 Applicable Releases: SAP NetWeaver 04 SPS20 Copyright 2007 SAP AG. All rights reserved. No part of

More information

SAP AddOn Quantity Distribution. by Oliver Köhler, SAP Germany

SAP AddOn Quantity Distribution. by Oliver Köhler, SAP Germany SAP AddOn Quantity Distribution by Oliver Köhler, SAP Germany Agenda 1. Overview / Introduction 2. Prerequisites 3. How to use / Example 4. Integration with Change Log Monitor 5. Authorization SAP 2009

More information

How to Enable Single Sign-On for Mobile Devices?

How to Enable Single Sign-On for Mobile Devices? How to Enable Single Sign-On for Mobile Devices? Applies to: SAP Netweaver Mobile Client 7.11 and onwards. For more information, visit the Mobile homepage. Summary This guide explains how to enable Single

More information

How To Troubleshoot SSL with BPC Version 1.01 May 2009

How To Troubleshoot SSL with BPC Version 1.01 May 2009 How-to Guide SAP CPM How To Troubleshoot SSL with BPC Version 1.01 May 2009 Applicable Releases: SAP BPC 7 Microsoft Copyright 2007 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

Monitoring System Landscapes Using the DBA Cockpit

Monitoring System Landscapes Using the DBA Cockpit Monitoring System Landscapes Using the DBA Cockpit Applies to: Database Monitoring and Administration of SAP NetWeaver systems using the latest DBA Cockpit that is provided with release 7.10 and SAP NetWeaver

More information

Configure TREX 6.1 for Efficient Indexing. Document Version 1.00 January Applicable Releases: SAP NetWeaver 04

Configure TREX 6.1 for Efficient Indexing. Document Version 1.00 January Applicable Releases: SAP NetWeaver 04 How-to Guide SAP NetWeaver 04 How To Configure TREX 6.1 for Efficient Indexing Document Version 1.00 January 2005 Applicable Releases: SAP NetWeaver 04 Copyright 2005 SAP AG. All rights reserved. No part

More information

How To... Master Data Governance for Material: File Down- and Upload

How To... Master Data Governance for Material: File Down- and Upload SAP How-To Guide Master Data Governance for Material How To... Master Data Governance for Material: File Down- and Upload Applicable Releases: EhP5 Version 1.0 November 2011 Copyright 2011 SAP AG. All

More information

How To Generate XSD Schemas from Existing MDM Repositories

How To Generate XSD Schemas from Existing MDM Repositories SAP NetWeaver How-To Guide How To Generate XSD Schemas from Existing MDM Repositories Applicable Releases: SAP NetWeaver MDM 7.1 Topic Area: Information Management Capability: Master Data Management Version

More information

BIT460. SAP Process Integration Message Mapping COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BIT460. SAP Process Integration Message Mapping COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BIT460 SAP Process Integration Message Mapping. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may

More information

How to Package and Deploy SAP Business One Extensions for Lightweight Deployment

How to Package and Deploy SAP Business One Extensions for Lightweight Deployment How To Guide SAP Business One 9.1 Document Version: 1.0 2014-05-09 How to Package and Deploy SAP Business One Extensions for Lightweight Deployment All Countries Typographic Conventions Type Style Example

More information

SAP NetWeaver How-To Guide How to use Process Execution Manager Using SAP Test Data Migration Server

SAP NetWeaver How-To Guide How to use Process Execution Manager Using SAP Test Data Migration Server SAP NetWeaver How-To Guide How to use Process Execution Manager Using SAP Test Data Migration Server Applicable Releases: SAP Test Data Migration Server 4.0 SP03 Version 1.0 October 2012 Copyright 2012

More information

How to Download Software and Address Directories in SAP Service Marketplace

How to Download Software and Address Directories in SAP Service Marketplace How to Download Software and Address Directories in SAP Service Marketplace Summary This document explains how to download software and address directories from the SAP Service Marketplace. It assumes

More information

WDA - Custom themes for Web Dynpro ABAP applications without SAP Enterprise Portal integration

WDA - Custom themes for Web Dynpro ABAP applications without SAP Enterprise Portal integration WDA - Custom themes for Web Dynpro ABAP applications without SAP Enterprise Portal integration Applies to: SAP Netweaver 2004s Summary This document shows how to use custom themes for Web Dynpro ABAP applications

More information

R e l ea se 6. 20/

R e l ea se 6. 20/ Release 6.20/6.40 Copyright Copyright 2004 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

More information

SAP BW 3.3 April 2004 English. General Ledger Analysis. Business Process Procedure. SAP AG Neurottstr Walldorf Germany

SAP BW 3.3 April 2004 English. General Ledger Analysis. Business Process Procedure. SAP AG Neurottstr Walldorf Germany SAP BW 3.3 April 2004 English General Ledger Analysis Business Process Procedure SAP AG Neurottstr. 16 69190 Walldorf Germany Copyright Copyright 2004 SAP AG. All rights reserved. No part of this publication

More information

Setting Up an Environment for Testing Applications in a Federated Portal Network

Setting Up an Environment for Testing Applications in a Federated Portal Network SAP NetWeaver How-To Guide Setting Up an Environment for Testing Applications in a Federated Portal Network Applicable Releases: SAP NetWeaver 7.0 IT Practice: User Productivity Enablement IT Scenario:

More information

Work with Variables in SAP NetWeaver Visual Composer Version 1.00 May 2006

Work with Variables in SAP NetWeaver Visual Composer Version 1.00 May 2006 How-to Guide SAP NetWeaver 04s How To Work with Variables in SAP NetWeaver Visual Composer Version 1.00 May 2006 Applicable Releases: SAP NetWeaver 04s SPS07 or greater Copyright 2006 SAP AG. All rights

More information

Transport in GP. How-to Guide Beginning with SAP NetWeaver 2004s SPS06. Version 2.00 January 2006

Transport in GP. How-to Guide Beginning with SAP NetWeaver 2004s SPS06. Version 2.00 January 2006 How-to Guide Beginning with SAP NetWeaver 2004s SPS06 How To Transport in GP Version 2.00 January 2006 Applicable Releases: Beginning with SAP NetWeaver 2004s SPS06 Copyright 2006 SAP AG. All rights reserved.

More information

SAP NetWeaver Identity Management Identity Services Configuration Guide

SAP NetWeaver Identity Management Identity Services Configuration Guide SAP NetWeaver Identity Management Identity Services Configuration Guide Version 7.2 Rev 3 2011 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for

More information

Configuring relay server in Sybase Control Center

Configuring relay server in Sybase Control Center Configuring relay server in Sybase Control Center Applies to: SUP 2.1.x SUP 2.2.x SUP 2.3.x Summary Relay servers can be used to connect to SUP server through internet and this would be one of the best

More information

MODULE 2: CREATE A DECISION TABLE USING RULES COMPOSER (BRM)

MODULE 2: CREATE A DECISION TABLE USING RULES COMPOSER (BRM) SOA EXPERIENCE WORKSHOP MODULE 2: CREATE A DECISION TABLE USING RULES COMPOSER (BRM) Exercises / Solutions SAP NETWEAVER PRODUCT MANAGEMENT SOA SOA EXPERIENCE WORKSHOP 1 Creating a decision table using

More information

PLM210. Master Data Configuration in SAP Project System COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

PLM210. Master Data Configuration in SAP Project System COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) PLM210 Master Data Configuration in SAP Project System. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication

More information

ADM920 SAP Identity Management

ADM920 SAP Identity Management ADM920 SAP Identity Management. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

EWM125. Labor Management in SAP EWM COURSE OUTLINE. Course Version: 16 Course Duration: 4 Hours

EWM125. Labor Management in SAP EWM COURSE OUTLINE. Course Version: 16 Course Duration: 4 Hours EWM125 Labor Management in SAP EWM. COURSE OUTLINE Course Version: 16 Course Duration: 4 Hours SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information