cancel
Showing results for 
Search instead for 
Did you mean: 

Search multiple users in portal UME

Former Member
0 Kudos

Hi All,

We want to search for multiple users in UME who are coming from LDAP ( Ex: like select options in R3 by passing 50 to 100 users id's at a time)

Is there any standard search option or webservices to search for multiple users at a time OR do we need to develop a custom application?

Regards,

Satish

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Satish,

Please try the below link, may be it is useful for you ::

http://scn.sap.com/thread/53399

Regards,

Sushil

Former Member
0 Kudos

Hi Satish,

check this link if it helps:

https://scn.sap.com/thread/687810

Thanks

saar_dagan
Employee
Employee
0 Kudos

Hi Satish,

As Rishi said the * is the wildcard for UME search:

IUserFactory ufact = UMFactory.getUserFactory();

    IUserSearchFilter isf = ufact.getUserSearchFilter();

//  Provide the search attributes
   
isf.setDisplayName ("H*");//  Start search
   
ISearchResult sr = fact.searchUsers(isf);

BR,

Saar

Former Member
0 Kudos

Hi,

You can use wild character in the user administration.

So try using some common details like all the id are starting with D so use D*.

Thanks

Rishi Abrol