Skip to Content
0
Former Member
Feb 13, 2007 at 02:43 PM

IViewLauncher not opening up the application

28 Views

Hello All,

I have configured a UWL to fetch worklist items from MDM. This is working fine. Now I wish to launch a Custom Web Dynpro application when the user clicks on the worklist subject line. I also wish to pass the Job ID to the Web Dynpro application, so that the details can be retrieved. Here is the code which I have added.

******************************************

<ItemTypes>

<ItemType name="uwl.completedtask.mdm.all.MDM_BUPA_GLOBAL" connector="MdmUwlConnector" defaultView="MdmWorkItemsCompletedView" defaultAction="showMdmDetails" executionMode="default">

<Actions>

<Action name="showMdmDetails" groupAction="no" handler="IViewLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes">

<Properties>

<Property name="taskId" value="${item.jobId}"/>

<Property name="externalRequestEvent" value="com.sap.pct.mdm.appl.masteriviews.events.externals.ViewTaskRecordsHandler"/>

<Property name="iview" value="pcd:portal_content/com.ab.MDM_Pilot_Preparation/com.ab.iViews/com.ab.pscme.iviews.java_local_ApplicationChanger_com_ab_pscme_applicationchanger_ApplicationChanger"/>

</Properties>

<Descriptions default="Show Record Details"/>

</Action>

</Actions>

</ItemType>

</ItemTypes>

******************************************

There are another 3 Item Types defined in the default mdm.xml (the config file for the UWL), and I have changed all of the to launch my application.

What could have gone wrong here?

TIA,

PKS.