cancel
Showing results for 
Search instead for 
Did you mean: 

Pre-populate Portal sign-on screen

Former Member
0 Kudos

Is there a way to pre-populate the portal sign-on screen with user-id and password ? We are in the process of migrating users to SAP portal, and are looking at re-directing (auto login if possible (or) pre-populate login fields at the least) them to the new site when they access the old site.

I reviewed the HTMl source of the portal login page, but did not see a way to pass parameters in the URL.

Thanks in advance for any suggestion !

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Srikanth,

It would be very encouraging if you could award points & close the thread.

Best Regards,

Nibu.

Former Member
0 Kudos

Hi Srikanth,

You can send your user name & password to the portal as url parameters like:

http://<server>:port/irj/portal?j_user=your_user_name&; j_password=your_password

Hope this helps,

Best Regards,

Nibu.

Former Member
0 Kudos

Nibu,

I tried logonuidfield and logonpassfield, but that didnt work.

Thanks. Your solution worked!

Former Member
0 Kudos

1)

IWDClientUser user = WDClientUser.forceLoggedInClientUser();

String userID = user.getSAPUser().getUniqueName();

2) set WebDynPro Application property sap.authentication to true

May be this?