PortalEventLauncher
PortalEventLauncher can be used to launch portal events.
PortalEventLauncher is Provider agnostic. Items may belong to any connector.
Action name can be anything.
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.portal 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> |