
PortalEventLauncher can be used to launch portal events.
Provider Specific Information
PortalEventLauncher is Provider agnostic. Items may belong to any connector.
Supported Actions
Action name can be anything.
Properties
PortalEventLauncher expects the following properties:
Namespace (mandatory)
Portal event's namespace
Event (mandatory)
Portal event's name
EventParameter (optional)
Portal event's parameter
All other properties will be ignored.
Following is the definition of an action that raises an event TestEvent for the namespace urn:com.sap.tc.webdynpro.test.porta l and passes a work item ID as an event parameter:
<Action name="launchPortalEvent" handler="PortalEventLauncher">
<Properties>
<Property name="Namespace" value="urn:com.sap.tc.webdynpro.test.portal"/>
<Property name="Event" value="TestEvent"/>
<Property name="EventParameter" value="${item.externalId}"/>
</Properties>
</Action>