SAPWebDynproABAPLauncher
Use
You can use SAPWebDynproABAPLauncher to launch a Web Dynpro for ABAP applications.
Provider Specific Information
SAPWebDynproABAPLauncher can be used to launch items belonging to any connector.
Properties
SAPWebDynproLauncher expects the following properties:
-
WebDynproApplication (mandatory)
This is the Web Dynpro application name.
-
WebDynproNamespace (mandatory)
This property refers to the development class of the Web Dynpro application
-
WebDynproConfiguration (optional)
The Web Dynpro configuration name is only used if different configurations are defined for this application.
-
System (optional)
A system alias of the system in the portal system landscape, where to launch the Web Dynpro. Default is the system where the work item originated. i
-
DynamicParameter (optional)
Dynamic parameters (name/value pairs, separated by & ) to be passed the Web Dynpro application.
-
DebugMode (optional)
The values are true and false .
All other properties will be passed as name=URL encoded value to the Web Dynpro application.
Example
Following is the definition of an action that launches a Web Dynpro application workshopapp with the dynamic parameters fruit=apple&vegetable=potato :
<Action name="launchWebDynPro" handler="SAPWebDynproABAPLauncher">
<Properties>
<Property name="WebDynproApplication" value="workshopapp"/>
<Property name="WebDynproNamespace" value="sap"/>
<Property name="fruit" value="apple"/>
<Property name="DynamicParameter" value="vegetable=potato"/>
</Properties>
</Action>