cancel
Showing results for 
Search instead for 
Did you mean: 

URL - Iview with LogonUser as parameter in Url-string

Former Member
0 Kudos

Hi,

i want to create an URL-Iview with additional URL-parameters. One of the parameters (in between) should be the LogonUser like: http://www.abc.de/param1/LogonUser/param2. Does someone know the syntax for that ?

Frank

Accepted Solutions (0)

Answers (6)

Answers (6)

Former Member
0 Kudos

Hi all,

Is this also possible in Ep5 sp5 ?

Alex

Former Member
0 Kudos

Hi Frank Kunath,

Create an Iview based on com.sap.portal.appintegrator.sap . Select generic option, then in Iview Property URLTemplate give "http://websitename.com/<b><User.LogonUid>/</b>yourpage.htm". At runtime <User.LogonUid> is substituted with the logon userid.

Hope this helps.

Thanks,

Praveen

Former Member
0 Kudos

hi,Praveen,

Great! I am successful to create it.Could you advise me how to find the related system parameter list? like <User.LogonUid> or password and else.

Thanks!

Jolin

Former Member
0 Kudos

Hi Jolin,

wonderful. As this has solved ur problem, dont forget to give me the points - Yellow Star. Ok Coming to list, u can get list in how to guide for "how to use application integrator" - http://help.sap.com/bp_epv260/documentation/How-to_Guides/25_HowToUseAppIntegrator_en.pdf

All the best,

Praveen

Former Member
0 Kudos

in a url iView you can add parameters at thr table of the iview properties so use it like: NAME:userid OPERATOR:= VALUE:the user id value and so on

Former Member
0 Kudos

Hi,

try to use the HRNL tags. There is one called <DBUSER>.

Search for this in help.sap.com

I saw also in a SAP Outlook calendar iView with a URL parameter (it was not a URL iView !) like you want to use it.

The way to get the userid would be .../User.UserId/...

Kai

Former Member
0 Kudos

Hi Kai,

I am creating a iview for sap transaction and require to send userid to execute the R/3 transactio.

How to attach userid with url for calling sap R/3 transaction

Appreciate for the help.

Thanks,

sanjeev Mourya

Former Member
0 Kudos

Hi Frank,

I've created an iView that, among other things, enables an administrator to create a system that a user can map up against. The credentials from this system is then included in the URL in places specified when setting up the iView (by including a [USER] and [PASSWORD] paremeter in the URL). The iView can also read content from a named cookie and include this in the URL.

I tryed to see if it was possible to get the portal users credentials, but was only able to get the users encrypted password. If enybody knows how to decrypt this password, pleases let me know.

/Erik

Former Member
0 Kudos

Hi Frank,

Do you want to use the existing URL iView and just pass some static parameters then the syntax is http://www.mycompany.com/login.html?user=username&pwd=password.

R/Erik

Former Member
0 Kudos

Hi Erik,

thanks for your answer, but this not exactly what i need. I want to use the standard URL-Iview. Some of the parameters are static but not the username this one should be the name of the logged on portaluser: E.g. in the Url Iview editor the Url looks like: http://www.abc.de/test/<b><userid></b>/yourpage.htm in the runtime iview it has to be http://www.abc.de/test/<b>kunath</b>/yourpage.htm