cancel
Showing results for 
Search instead for 
Did you mean: 

creating new users in portal

Former Member
0 Kudos

hi,

We have a scenario in which we are required to develop an application for creating new users in portal programatically.Is it possible using Webdynpro APIs. If anyone has worked in this scenario please provide a code sample using webdynpro APIs.

Thanks in advance

Regards

Rohit

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Rohit

U can create new Users thru IUserMaint Interface which extends IUser Interface.

IUser is is for Reading the User Accounts it is in read only Mode purpose and IUserMaint is extension of it.

This is done keeping performance point of view.

u can create new User thr

IUserMaint newUser = UMFactory.getUserFactory().newUser(<<UserId>>)

newUser.save();

newUser.commit();

Wishes

Krishna Kanth