cancel
Showing results for 
Search instead for 
Did you mean: 

WebDynpro App is not launched from UWL

Former Member
0 Kudos

Hi all,

I have a WF that contains a decision task and I want to execute a WDP JAVA application.

When I triggers the WF I can see the WorkItem into UWL and see the decision options too.

My problem is that the WebDynpro application its not been launched.

I've followed the steps described into this [url|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0731bbc-810b-2a10-7fb8-900f16fd3c7d]

The UWL Item Type into the 'uwl_configuration.dtd' XML file has the following entries:

<ItemType name="uwl.task.webflow.TS00008267.<System_Alias>" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchWebDynPro" executionMode="default">
      <ItemTypeCriteria systemId="<System_Alias>" externalType="TS00008267" connector="WebFlowConnector"/>
      <Actions>
        <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
          <Properties>
            <Property name="WebDynproApplication" value="<WDP Java App>"/>
            <Property name="WebDynproDeployableObject" value="<vendor/development component name>"/>
            <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
            <Property name="DynamicParameter" value="WI_ID=${item.externalId}"/>
            <Property name="openInNewWindow" value="yes"/>
            <Property name="System" value="<System_Alias>"/>
            <Property name="display_order_priority" value="5"/>
          </Properties>
          <Descriptions default=""/>
        </Action>
      </Actions>
    </ItemType>

Could somebody tell me, what am I missing or doing wrong?

Regards,

Gregory.

Edited by: Gregory Mayorga on Jun 2, 2011 4:20 PM

I forgot to say that the server where the WDP Java is deployed is the Portal Server from where the user access the UWL and the Alias into the text below is for an ABAP system.

Edited by: Jason Lax on Dec 28, 2011 2:39 PM (Fixed broken link)

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member188326
Active Participant
0 Kudos

Hi Gregory,

The UWL xml file entries seems ok.

What error you get when click the related tasks link in UWL?

Or it is opening different screen and not WDJ application?

Thanks & Regards,

Bharat Mistry.

Former Member
0 Kudos

Hi Bharat, thanks for your answer. It was oppening the standard view of the WI.

I already solve the issue. The problem was that WebDynpro application its running on the portal (Java STACK only) and the WorkFlow into the ECC (ABAP stack only) and I was trying to run the application as if the WDP where running on the ECC.

To solve the problem I create a new system into the portal (LocalSystem) and set only the Web AS properties and Logon Method properties, then into the UWL System set the "Web Dynpro Launch System" property to the alias of my local System.

Gregory.