cancel
Showing results for 
Search instead for 
Did you mean: 

Passing parameters to quick link

Former Member
0 Kudos

Hi All,

I have a WDA iview and I have defined a quick link for that.

I want to pass some parameters while calling the quick link.

I found some threads for this but the solution (Shortening Portal URL such that Dynamic parameters can be passed) provided is not accessible(screenshot attached)

Kindly help.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hie,

In the iview , u could pass the parameters in the attribute "Application Parameter".

Regards,

Simran

Former Member
0 Kudos

Hi,

In my case the parameter will be different for all users.

We need to provide the quick link in mail notification to the user.

it will be something like http(s)://<hast name>:<port>/irj/portal/qulcklink?parameter=value

Regards,

Praveen

SandipAgarwalla
Active Contributor
0 Kudos

how r u triggering the email to the users? That program would have to add the value dynamically..

And in the quicklink WDA program, get the parameter when the view loads..doinit()...

Former Member
0 Kudos

Hi Sandip,

generating the parameter value and reading into the application is fine...

my issue is how to call it , if i try to add the parameter like below example...system is not accepting.

http(s)://<hast name>:<port>/irj/portal/qulcklink?parameter=value

Regards,

Praveen

former_member246153
Active Contributor
0 Kudos

Hi ,

You are passing some dynamic parameter to Webdynpro ABAP application right.

If so then in that iView you have property Do Not Forward These Parameters to Web Dynpro , from this remove the Dynmaic Parameter .Then  in Application Parameter property set the your parameter as empty like this yourparametername=. Now pass the yourparametername=value using quick link.

hope it will help.

Regards,

Nivas209

Former Member
0 Kudos

Hi Srinivas,

your answer was very helpful...almost correct.

In addition to your answer I just added the parameter to property Parameters Forwarded to Web Dynpro.

So to pass dynamic parameters in quick link we need to keep iview properties for parameters as below:

Application Parametersparameter=
Do Not Forward These Parameters to Web Dynpro
Parameters Forwarded to Web Dynproparameter


now call your quick link url like :  http(s)://<hast name>:<port>/irj/portal/qulcklink?parameter=value

Regards,

Praveen

Answers (1)

Answers (1)

former_member189631
Active Contributor
0 Kudos

Hi User,

It is possible to passing parameter from portal url to your WDA application.

Youe just need to append parameters to be passed in the URL , add the request parameter in the WDA iView with few lines of code in WDA abap application to receive parameters.

Please refer my article below for more details.

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/1093948e-3fcb-2e10-3482-aa828b8ae...

Thanks!