Start of Content Area

Procedure documentation Defining To Which SAP Systems User Data is Replicated  Locate the document in its SAP Library structure

Use

Use this procedure to define that user data is to be replicated to a particular system. You can define up to three systems.

Prerequisites

·        The SAP ABAP system must have release 4.6D or higher.

·        The user management property ume.replication.messaging.active is set to true. By default it is false.

Procedure

Open user management properties for editing

You define to which systems user data is replicated in UME Properties.

Specify the receiving systems

In UME Properties, set the following property for each system to which you wish to replicate:

ume.replication.adapters.index_<index>=xmladapter?adapterid=<adapterID>

<index>is a number between 1 and 3.

<adapterID> is an ID that uniquely identifies the system. Allowed values are 001, 002, and 003. This ID is used in all parameters relating to this system.

xmladapter specifies that replication is performed using XML documents. At present this part of the property value is always the same.

Specify the sending system and add it to the ACL in the SAP ABAP system

In UME Properties, make sure the following property is set:

ume.r3.sync.sender=SAPMUM

This property gives the system that is sending the replication data (in this case UME) a name. The default value is SAPMUM. When an XML document is sent to the SAP ABAP system, the system performs a security check on the sender. If the sender is not in an access control list (SMUM_ACL table), the system returns an error.

In the SAP ABAP system, open the table SMUM_ACL using transaction SM30 and add the sender name specified in the above property.

Define the system connection information for SAP ABAP systems

In UME Properties, define the properties as required for each SAP ABAP system to which you wish to replicate data. You will find a complete list of the properties in SAP ABAP-Based System as Data Source. In all properties <adapterID> must be the same adapter id as you specified in ume.replication.adapters.index_<index>.

Example

The following is an example of UME property values.

Property

Value

ume.replication.adapters.index_1

xmladapter?adapterid=001

ume.r3.sync.sender

SAPMUM

ume.r3.connection.001.client

100

ume.r3.connection.001.user

sapume

ume.r3.connection.001.passwd

<password>

ume.r3.connection.001.sysnr

38

ume.r3.connection.001.ashost

server01.company.com

ume.r3.connection.001.lang

EN

ume.r3.connection.001.poolmaxsize

10

ume.r3.connection.001.poolmaxwait

10000

 

End of Content Area