cancel
Showing results for 
Search instead for 
Did you mean: 

User decision step execution from UWL

Former Member
0 Kudos

Hi,

I copied the standard user decision step and added my own text in that task. My requirement is i have to execute that step from UWL . i need to configure this task in SWFVISU, so that it will appear in UWL. My question is what are the parameters i need to maintain in swfvisu TXn . because this is not a webdynpro application or Bsp Application.

Accepted Solutions (0)

Answers (1)

Answers (1)

bpawanchand
Active Contributor
0 Kudos

Please check this SAP help [document|http://help.sap.com/erp2005_ehp_04/helpdata/EN/44/b7047434d91578e10000000a114a6b/content.htm]

In SWFVISU the two mandatory parameters that you need to consider are

APPLICATION -


> <application name>

PAGE_ID -


> page1.htm/ default.htm.


<ItemType name="uwl.task.webflow.TS<XXXXXXXX>.SAP_ECC" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchBSP" executionMode="default">
      <ItemTypeCriteria systemId="SAP_ECC" externalType="<XXXXXXXX>." connector="WebFlowConnector"/>
      <Actions>
        <Action name="launchBSP" groupAction="" handler="SAPBSPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
          <Properties>
            <Property name="CustomerNamespace" value="sap"/>
            <Property name="Namespace" value="sap"/>
            <Property name="Application" value="<app_name>"/>
            <Property name="PageId" value="page1.htm"/>  " case senitive
            <Property name="System" value="${item.systemId}"/>
            <Property name="display_order_priority" value="5"/>
          </Properties>
          <Descriptions default=""/>
        </Action>
      </Actions>
    </ItemType>

Former Member
0 Kudos

Hi Pavan,

Thank u for ur reply.

But My requirement is not to Call BSP application.

I should be able to execute the workitem of the Decision Step from UWL. Right now i amgetting is SBWP , the same thing i should be able to do in UWL

bpawanchand
Active Contributor
0 Kudos
My question is what are the parameters i need to maintain in swfvisu TXn .
because this is not a webdynpro application or Bsp Application.

In order to execute a decsion task w.r.t to the BSP application first you have to do the entries w.r.t task in the SWFVISU txn as i mentioned in my early previous post, then as soon as you execute the workitem in the UWL then if at all you want to see the application the you need to configure the application in the UWL as i mentioned in my previous post, now in order to handle decision step you have to do the

[Check this link|http://help.sap.com/erp2005_ehp_04/helpdata/EN/7a/df014b037141ca9afc6433ed42b519/content.htm]

Former Member
0 Kudos

sorry pavan , i didnt mention my requirement Clearly,

My user decision task is TSXXXXXXX .

i want to execute the workitem of this task in UWL

1)What is the visualization type i need to choose for this task in SWFVISU,

2) I am not calling any BSP Application and Webdynpro application from this task.

3) this is a simple decision task.i just want to take decision from UWL.

From workflow side Please suggest me.

vijy_mukunthan
Active Contributor
0 Kudos

Hi Sunil

For user dicision step no need to do any thing. It will come automatically on UWL. If its not visible on the UWL its portal config problem. Ask your EP guy to re-generate the XML file once. NO need to do task registration in SWFVISU for user dicision step.

Regards

vijay

Former Member
0 Kudos

Hi Pavan,

U r right , If i want to use user decision from BSP Application Or Webdynpro . Actually i am new to this . now i am clear abt this

Thank u