cancel
Showing results for 
Search instead for 
Did you mean: 

Web dynpro & UWL

Former Member
0 Kudos

Hi everyone,

I want use web dynpro as UWL work item handler, here is the configuration:

<ItemType name="uwl.task.webflow.decision.TS00008267.D01CLNT300" connector="WebFlowConnector" defaultView="webflowView" defaultAction="launchWebDynPro" executionMode="pessimistic">

<ItemTypeCriteria systemId="D01CLNT300" externalType="TS00008267" connector="WebFlowConnector"/>

<Actions>

<Action name="launchWebDynPro" handler="SAPWebDynproLauncher">

<Properties>

<Property name="WebDynproApplication" value="RequestQueryApp"/>

<Property name="WebDynproDeployableObject" value="local/cn.dimension.cebbank.trip"/>

<Property name="DynamicParameter" value="wiii_id=${item.externaId}"/>

<Property name="System" value="aaa"/>

</Properties>

</Action>

</Actions>

</ItemType>

The web dynpro page can open correctly when i click the work item in UWL, but the parameter is lost. So my question is:

How to past some parameters from UWL to web dynpro and how to get the parameters in web dynpro, thank you very much!

Regards,

Xiaoming Yang

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Thank you, Donald Zhu,Bharathwaj R,Kishor Gopinathan,

points to you guys,

thanks,

Xiaoming Yang

Former Member
0 Kudos

Can anybody help me out?

Thanks a lot!

Xiaoming Yang

donald_zhu
Explorer
0 Kudos

What is UWL? Do you mean URL?

You can put the following code in your custom controllers.

import com.sap.tc.webdynpro.services.sal.adapter.api.*;

String headerText = WDWebContextAdapter.getWebContextAdapter().getRequestParameter("ReportID");

Former Member
0 Kudos

Hi,

What you have done is correct. You have to give it as name value pairs in property tag.

It should be available in the request object.

WDWebContextAdapter.getWebContextAdapter().getRequestParameter("DynamicParameter"); will give its value.

<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/20/f0c82c9f6748c58d9ea14b3bbed93a/frameset.htm">WebDynpro Launcher</a>

Regards

Bharathwaj

kishorg
Advisor
Advisor
0 Kudos

HI xiaoming yang ,

i have tried this with PDK applications.

could pass parameter , capture that.

if u have pdk in your portal , try it with abstract portal application or Dynpage.

have you tried it with PDK..

regards

Kishor Gopinathan