Show TOC Start of Content Area

Background documentation URL Launcher  Locate the document in its SAP Library structure

Purpose

You can use UrlLauncher to launch any URL.

Provider specific Information

UrlLauncher is provider agnostic. Items may belong to any connector.

Supported Actions

Action name can be anything.

Properties

UrlLauncher expects the following property:

      url (mandatory)

URL to be launched

All other properties will be passed as name=URL encoded value to the target URL.

Example

Following is the definition of an action that launches a URL my.web.com and passes to it the parameter workitem_id, which is filled with the work item ID during run time:

<Action name="launchUrl" handler="UrlLauncher">

  <Properties>

    <Property name="url" value="http://my.web.com"/>

   <Property name="workitem_id" value="${item.externalId}"/>

  </Properties>

 </Action>

 

End of Content Area