cancel
Showing results for 
Search instead for 
Did you mean: 

SSO Logon Ticket and JCO,

Former Member
0 Kudos

Hi,

1.What are the Parameters we can get from SSO logon ticket(cookie) related to the user who has logged on to the portal?

2.If we can get details of JCO Creation parameters like ClientNumber,Password,SystemId,SystemIP,Language based on the Portal logon UserId, these can be used to create JCO at runtime.

Kind Regards,

Mukesh.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Mukesh,

If you configure your WD for SSO, you don't have to do anything through code. Refer, <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/44/45a04028f40160e10000000a1550b0/frameset.htm">Setting up a Web Dynpro Application for a Logon Ticket.</a>

Bala

Answers (1)

Answers (1)

former_member182372
Active Contributor
0 Kudos

Hi Mukesh,

To get SSO string you can use:


IUser user = WDClientUser.getCurrentUser().getSAPUser();
String sso = (String)user.getTransientAttribute(IPrincipal.DEFAULT_NAMESPACE, "MYSAPSSO2_STRING");

Best regards, Maksim Rashchynski.