Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
vikas2
Active Participant
Background:

Recently I was working on a SLD migration project.  We were migrating from a older version of SLD : 7.20 to a newer version : 7.5 .

It was primarily done by BASIS team but from PI development team perspective, our team was helping out testing to do sanity checks around business system creation, transport mapping of business systems etc - the usual stuff.

 

Issue encountered:

 

During migration we realized that we will need to migrate a lot of users from version 7.2 to 7.5 of SLD. The users were getting migrated except for a small issue we discovered. The security policy for users was getting set as “Default” for these users in the new system.

 

It can be displayed using the user admin screen in the new SLD system using the URL.

 

http(s)://<host>:<port>/useradmin

 



 

The value which is appearing as "Default" needs to be changed to "Technical User".



Sounds easy for a few users , may be few hundred users if you can have a nice cup of coffee to get rid of the monotony. However, we have 3500+ users and as our landscape has three SLDs, we’ll need to change around 10500+ users which will need to have the security policy updated.

 

Problem Statement Recap:

There are two default values for users and and we need to change the security policy from “Default” to “Technical”  for a lot of users.

 

Investigating Solution : Javadocs

 

Looking at Javadocs for 7.5 :

 

https://help.sap.com/doc/2f39047ed6b141cb83658041d2d4e029/7.5.13/en-US/index.html

 

Under Compostion Environment -> Security, there is an interface IUserAccount which gives access to user account attributes and has methods for reading as well as setting the user attributes.

 

Link to this interface:

 

https://help.sap.com/doc/2f39047ed6b141cb83658041d2d4e029/7.5.13/en-US/CE/se/com.sap.se/index.html

 

It has methods to read and set the security policy.





As modification of SAP user accounts is a sensitive feature, SAP wanted to make sure the developer really wanted to modify the user account object and hence even though we have reference to IUserAccount , we need to get a Mutable User Account . if you don’t do it, you’ll get an exception as the account is still not mutable.

 

Once we have reference to the Mutable user Account , setting security policy is straight forward.

Sample code to do the operation is highlighted below.
        IUserAccount account = UMFactory.getUserAccountFactory().getUserAccountByLogonId(user);

        IUserAccount mutUserAcct = UMFactory.getUserAccountFactory().getMutableUserAccount(account.getUniqueID());

        String secPolcyUpdate = "technical";

        mutUserAcct.setSecurityPolicy(secPolcyUpdate);

        mutUserAcct.save();

        mutUserAcct.commit();

We create a simple WebDynpro Java application which points to the file path with the list of users and a button to initiate processing .



File Path points to list of users for which the security policy needs to be updated.

On execution, messages appear at the bottom.



In case  there are any errors, they get displayed .




Hints for building the application:

 

In case you’re building the application, Interface IUserAccount has a dependency of DC tc/je/usermanagement/api in SC ENGFACADE.




Usage:

If you don’t want to build the application, you can download the EAR file and deploy it to your target system. It should work for any Java system.

 

The ear file can be downloaded from this link .

 

Once deployed, the application can be executed using the below URL .

 

http://<host>:<port>/webdynpro/resources/demo.sap.com/updsecpl/UpdSecPol

 

Benefits:

For each user, you need to click 5 times : Search  the User, Select , Modify , Change value to "Technical User" and Save again .

Apart from the time saved, it helped  BASIS colleagues from the mind numbing drudgery of clicking around over 52500 times for the list of 10500 + users.

 
1 Comment
mnoe
Participant
0 Kudos
Hello,

If recreating the users is not an issue you could use (not documented) attribute

 

SecurityPolicy=technical

 

in import file, example:
[User]
uid=Testuser
first_name=Test
last_name=USer
password=HelloPassword
SecurityPolicy=technical
role=Everyone;SAP_XI_APPL_SERV_USER;

 

Cheers

 
Labels in this area