Filter UWL for certain Workflows

Dear,
Is it possible to exclude some Workitems, depending on the task or workflow from the UWL?
I've tried it by removing it from the XML file but that didn't seem to work.
Is it also possible to exclude WF's in the SBWP transaction?
Thanks,
Andy.

Hi,
I have been able to exclude workflow's within the UWL, but this only is possible by creating a configuration xml with the items you want to be used or visible and this will be used instead of the default.
If you want more information I will be happy to help as we have done this with our ESS/MSS items.
If this is useful, please award points.

Similar Messages

  • Hiding Button in UWL for specific workflow task items

    Hi -
    In UWL, is there a way to control the visibility of standard buttons like "forward", "replace", or "create Adoc Request" based on the task type.
    Example, i would not want to provide the "forward" button option for a specific tasks  like expense tasks.
    We are on EP 6 and ECC 5.0
    Helpful answers will be rewarded with points.
    Thanks
    PR

    I don't think excluding the actions on the uwl iview property will fully solve this problem as, from what I understand, the actions should only be removed for certain tasks. The way to achieve this is to create different views for the tasks. This can be done in the uwl xml config file. You can assign tasks to be displayed by specific views, and within the definition of these views you can remove/add actions as well as modify the look and feel (to a certain extent). However, this will only affect the buttons/actions you see on the view section of the task - not the uwl list itself as the actions on the list are generic.
    Check the following document which describes how to configure the uwl - check the section on views:
    [How to configure the uwl.pdf|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a3461636-0301-0010-3787-978f5ac8bd45]
    Cheers,
    Dion

  • WD application is not opening in UWL for custom workflow

    Hi,
    I have created entries in SWFVISU, and webflow connecter also has entries for my custom task .
    I can see work item in UWL but as soon as I click on workitem I am not able to see application or workitem .
    Kindly check screenshot.
    Regards,
    Vijay

    Hi Vijay,
    As prashanth said please activate the services in the SICF and generate the error once again and check the log in nwa-->trouoble shooting-->logs and traces -->developer traces and check the error their.
    Regards,
    Anil

  • Integrating WebDynpro ABAP applications with UWL for workflow in Portal

    Dear
    We want to integrate an abap webdynpro application as task in the workflow with UWL.
    More information was found in /people/ginger.gatling/blog/2005/12/14/create-new-uis-for-existing-workflow-tasks-with-abap-web-dynpro-and-universal-worklist
    But no answer on the following issue:
    We use the transaction SWFVISU to prepare standard setting for our  task. This defines how a task is executed, once you select the task subject line on the worklist.
    Task                           TS91700001
    Visualization Type             ABAP Web Dynpro
    APPLICATION     z_wd_pas
    DYNPARAM     IV_WIID=${item.externalId}&period=${item.PERIOD}
    NAMESPACE     SAP
    SYSTEM_ALIAS     SAP_BSP_EREC
    But we want to start the abap webdynpro application with a dynamic parameter: period 07.2010 or 08.2010 or MM.YYYY. This parameter is a container element of the task, filled when the task is created. Also other parameters are available in the abap webdynpro application.
    Component       Z_WD_PAS
    Interface View  PAS
    Plug Name       DEFAULT
    Help Menu Text
    Help Link
                                                                                    Package         Z_PAS
    Language        EN
    URL             http://saperpd1.imec.be:8000/sap/bc/webdynpro/sap/z_wd_pas                                                                               
    with parameters
    IV_WIID     000000000000     SWW_WIID
    ORG_UNIT     00000000     ORGEH
    PERIOD                              SPMON
    PERNR     00000000     PERSNO                            
    Can we set the dynamic parameter list DYNPARAM from the task
    or should  we read the container in our abap webdynpro application described in http://wiki.sdn.sap.com/wiki/display/WDABAP/IntegratingWebDynproABAPapplicationswithUWLforworkflowin+Portal?
    More information: The task is a webservice
    Standard task        91700001   Z_PAS_CC
    Object Category      BOR Object Type
    Object Type          WEBSERVICE   WebFlow Service
    Method               PROCESSDIALOG                      Dialog Service
    with the following standard program code for this method:
    begin_method processdialog changing container.
    DATA: l_wi_objkey TYPE swotobjid-objkey.
    DATA: l_wiid TYPE swwwihead-wi_id.
                                                                                    CALL FUNCTION 'SWE_WI_GET_FROM_REQUESTER'
      IMPORTING
        requester_workitemid = l_wi_objkey.
    l_wiid = l_wi_objkey.
                                                                                    CALL FUNCTION 'SWF_WSC_START_LH_DIALOG'
      EXPORTING
        i_wiid                 = l_wiid
      EXCEPTIONS
        url_creation_failed    = 1
        browser_launch_failure = 2
        OTHERS                 = 3.
    IF sy-subrc <> 0.
      CASE sy-subrc.
        WHEN 1.
          exit_return '1000' space space space space.
        WHEN 2.
          exit_return '1001' space space space space.
        WHEN OTHERS.
          exit_return '1002' space space space space.
      ENDCASE.
    ENDIF.
    end_method.                                           
    Before calling the function SWF_WSC_START_LH_DIALOG the parameters for the abap webdynpro should be defined. Is this possible ?
    Thanks for your suggestions.
    Best regards
    Luc Marent

    I added below sources .
    >    <ItemType name="uwl.request.webflow.WS91000001" connector="WebFlowConnector" defaultView="WorkItemRequestsView" defaultAction="launchWebDynPro" executionMode="default">
    >      <ItemTypeCriteria systemId="UWLSETXXX" externalType="WS91000001" connector="WebFlowConnector" />
    >      <Actions>
    >        <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproABAPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    >          <Properties>
    >            <Property name="WebDynproApplication" value="ZWD_WF_002" />
    >            <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no" />
    >            <Property name="DynamicParameter" value="wi_id=${item.externalId}" />
    >            <Property name="openInNewWindow" value="yes" />
    >            <Property name="System" value="WDSETXXX" />
    >            <Property name="WebDynproNamespace" value="sap" />
    >            <Property name="display_order_priority" value="5" />
    >          </Properties>
    >          <Descriptions default="" />
    >        </Action>
    >      </Actions>
    >    </ItemType>
    >    <ItemType name="uwl.request.webflow.decision.WS91000001.UWLSETXXX" connector="WebFlowConnector" defaultView="WorkItemRequestsView " defaultAction="viewDetail" executionMode="default">
    >      <ItemTypeCriteria systemId="UWLSETXXX" externalType="WS91000001" connector="WebFlowConnector" />
    >    </ItemType>

  • Looking for a Workflow-Checklist (plugin)

    Hello everybody,
    I really like LR as my primary workflow-tool.
    What I'm actually looking for: a "workflow-checklist-plugin".
    This plugin should be a plugin visible in the develop module of Lightroom.
    It (the plugin) should show me a list of checkboxes (which I could define).
    These Checkboxes contain the different steps of my LR-Workflow (to make shure that I don't forget one of them).
    Also, the "TAG" Metadata of the photo should be edited within the plugins-windows (with this feature, there's no need to jump back to the library to add a TAG).
    All data might be saved in the photos metadata.
    To describe a bit more in detail what I mean, I generated a "sample picture"
    Do you have any idea if there's somewhere such a workflow-plugin?
    And: do you have any additional idea if it's possible to modify the TAG of a photo in the develop module (without jumbing back to the library)?
    I should be glad about any suggestion as I just started a small project on freelancer and don't have a good feeling about the offers coming in ;-)
    Thanks for your help,
    regards,
    Marcel

    Hi everybody,
    thanks a lot for your very helpful suggestions regarding the workflow.
    Coming back to the plugin I'm looking for, here are four more examples to explain what I want to address with this "customizable checklist" in the devlop module of lightroom:
    -identify all photos for batch processing in photoshop (HDR, stacking etc.) - one point on the checklist ("batch in PS") and a smart collection to filter all this photos would speed up this a little bit.
    -identify all photos that needs a "batch" noice reduction. I.e. I have many photos for which I do the first noice reduction depending on camera model and ISO. With a checkmark at "batch noice reduction", these photos could be found easily in a smart collection (and would not be done twice).
    -identify all photos accepted by "fineart gallery x". With a checkmark on the checklist and a smart collection showing all the photos with this checkmark, you could get a visual understandig of what (kind of) photos they've accepted (and what not).  This point probably is not a point for the development module only, of course, but for the library too. So, if the checklist could be shown in the library too, it woould be fantastic.
    -identify all photos for which I transferred the copyright to somebody else (i.e. a client) or photos which I develop only once as an original (and which will never be pubished online).
    Of course, all this could be done by using the "tag" field. Jumping back to the library, putting in some words in the tag (i.e. "PS-batch","HDR" etc.) would do this job too (that's how I do it today).
    But a quick to "check/uncheck list" seems to be the faster way  (just my 2c).
    And the plugin I'm looking for should only do one thing: speed up the work not done "with the camera at hand."
    From my non-programmer-view, this plugin seemed to be not very complicated : extend the LR metadata and show a checklist to edit this metadata (nothing more ;-)
    But I already learned that, within LR, this is not as easy as it seemed ;-)
    As I initially wrote, I also posted a freelancer project for this programming and there are already applicants for this job but "I have to check if they really do have the competency needed" (I'm not very optimistic, that I'll find someone thru freelancer).
    So, I'm still hoping that there is already a plugin doing this job or that it will be easy to develop this "show a list-plugin ;-)
    Regards,
    Marcel

  • Firefox does not fully load Barclaycard Authentication site. It loads as far as asking for certain letters in my pasword but does not load the "Submit" button so I cannot continue with my purchase and have to switch to IE8 browser to purchase anything ov

    Firefox does not fully load Barclaycard Authentication site. It loads as far as asking for certain letters in my pasword but does not load the "Submit" button so I cannot continue with my purchase and have to switch to IE8 browser to purchase anything over the internet. Any clues?
    == This happened ==
    A few times a week
    == Couple of weeks ago

    Your UserAgent string in Firefox is totally messed up by another program that you installed, and Barclays doesn't know you are using Firefox 3.6.6 - it probably looks like IE 6.0 to that website.
    [http://en.wikipedia.org/wiki/User_Agent]
    type '''about:config''' in the URL bar and hit Enter
    ''If you see the warning, you can confirm that you want to access that page.''
    Filter = '''general.useragent.'''
    Right-click the preferences that are '''bold''', one line at a time, and select '''''Reset''''',
    Then restart Firefox

  • Leave Request Not Appearing in UWL for Manager

    Hi,
    We have a strange issue where leave requests are not appearing in the UWL for a specific manager.  We have checked with other managers and the leaves are appearing in their UWLs and they are able to process their employee's leaves without any issue.
    For the manager not seeing the leave in their UWL, I have confirmed the following:
    1) Proper manager defaults in 'approver' field in ESS and employee is able to send leave request without issue
    2) Manager receives email to process employees leave request after RPTARQEMAIL program runs
    3) Leave is reaching the manager's business workplace in R/3 so this verifies workflow is working and the leave is being directed to proper manager for approval
    4) Proper roles have been assigned to manager and verified in PRD
    *Also, the leaves were appearing in the manager's UWL at one point but no longer appearing.  This makes it more confusing!
    Does anyone have any suggestions/ideas as to what may have happened?
    Any feedback would be greatly appreicated!
    Regards,
    Brian

    Hi:
    We transported our ESS/MSS changes from the DEV client to STG client.  I have verifiied the follwoing settings in STG:
    1) SWU3 - all connections are green.
    2) Workflow template and tasks - all are assigned as general task with agents assigned
    3) Configuration in SAP contains the correct WF template for leave processing
    4) UWL has been regenerated
    I am able to submit a leave request under ESS user.  I check workflow and it shows leave has been submitted and waiting for Manager to approve step. 
    However, under MSS user the leave request is not showing up in the UWL.  All configuration on backend and the items noted above have been verified. 
    Is there configuration or a connection on the portal side that I need to check? Or anywhere else?  Any input would be greatly appreciated.
    Regards,
    Brian

  • Where can I get a list of available selection for certain dict type?

    Where can I get a list of available selection for certain dict type in code?  For instance, when I use SE16 to view VBFA table, I am presented with many filter criteria.  One of them would be "VBTYP_N".  When I click on the square next to the option, I am presented with a list of possible values to select from.  Where can I get the list of this possible values for any given dict type in code?

    Hi Frank,
    The list of possible selection you see can be from diferent sources
    1) Search helps defined either programatically or search helps defined at table level.
    If it is a Z Selection screen check the program, then the data declaration of the parameter
    2)Check tables provided at field level. They can be through use of foreign keys. The proposal generated could be simple compund ..
    3) Fixed values at Domain level ()
    Please refer to this link as well for detailed explanation
    [http://help.sap.com/saphelp_470/helpdata/en/9f/dbaa5435c111d1829f0000e829fbfe/content.htm]

  • No records in UWL for mdm

    Hi all,
    I have a problem with the UWL for MDM, no records are displayed. I have configured things after all the guides and articles found here on SDN and all connection tests are fine, data is displayed in the iVews. (for Vendors). There are tasks in the MDM system. I have restarted the portal server and all services, cleared the cache etc but without any luck..
    Any ideas?
    Cheers,
    Max

    Hi,
    Looks like this:
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE UWLConfiguration PUBLIC '-//SAP//UWL1.0//EN' 'uwl_configuration.dtd'>
    <UWLConfiguration version="1.0">
         <ItemTypes>
              <ItemType name="uwl.completedtask.mdm.all.SAP_MDM_Repository_Vendors.Vendors" connector="MdmUwlConnector" defaultView="MdmWorkItemsCompletedView" defaultAction="showMdmDetails" executionMode="default">
                   <Actions>
                        <Action name="showMdmDetails" groupAction="no" handler="IViewLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes">
                             <Properties>
                                  <Property name="taskId" value="${item.jobId}"/>
                                  <Property name="stepId" value="${item.stepId}"/>
                                  <Property name="userId" value="${item.userNames}"/>
                                  <Property name="workflowTable" value="${item.workflowTable}"/>
                                  <Property name="externalRequestEvent" value="com.sap.pct.mdm.appl.masteriviews.events.externals.ViewTaskRecordsHandler"/>
                                  <Property name="iview" value="pcd:portal_content/net.xx.semc/net.xx.MDM/net.xx.Pages/com.sap.pct.mdm.appl.vendors.search"/>
                             </Properties>
                             <Descriptions default="Show Record Details"/>
                        </Action>
                        <Action name="showHistory" handler="IViewLauncher" launchInNewWindow="yes" launchNewWindowFeatures="width=557,height=560,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
                             <Properties>
                                  <Property name="jobId" value="${item.jobId}"/>
                                  <Property name="workflowTable" value="${item.workflowTable}"/>
                                  <Property name="stepId" value="${item.stepId}"/>
                                  <Property name="userId" value="${item.userNames}"/>
                                  <Property name="systemId" value="${item.systemId}"/>
                                  <Property name="iview" value="pcd:portal_content/com.sap.pct/specialist/com.sap.pct.mdm.appl.mdm_550/com.sap.pct.mdm.appl.iviews/com.sap.pct.mdm.appl.workflow.taskhistory"/>
                             </Properties>
                             <Descriptions default="History"/>
                        </Action>
                        <Action name="createJob" handler="IViewLauncher" launchInNewWindow="yes" launchNewWindowFeatures="width=557,height=560,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
                             <Properties>
                                  <Property name="iview" value="pcd:portal_content/com.sap.pct/specialist/com.sap.pct.mdm.appl.mdm_550/com.sap.pct.mdm.appl.iviews/com.sap.pct.mdm.appl.workflow.createjob"/>
                             </Properties>
                             <Descriptions default="Create Job"/>
                        </Action>
                   </Actions>
              </ItemType>
              <ItemType name="uwl.task.mdm.jobs.SAP_MDM_Repository_Vendors.Vendors" connector="MdmUwlConnector" defaultView="MdmViewJobs" defaultAction="showMdmDetails" executionMode="default">
                   <Actions>
                        <Action name="createJob" handler="IViewLauncher" launchInNewWindow="yes" launchNewWindowFeatures="width=557,height=560,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
                             <Properties>
                                  <Property name="iview" value="pcd:portal_content/com.sap.pct/specialist/com.sap.pct.mdm.appl.mdm_550/com.sap.pct.mdm.appl.iviews/com.sap.pct.mdm.appl.workflow.createjob"/>
                             </Properties>
                             <Descriptions default="Create Job"/>
                        </Action>
                   </Actions>
              </ItemType>
              <ItemType name="uwl.task.mdm.tasks.SAP_MDM_Repository_Vendors.Vendors" connector="MdmUwlConnector" defaultView="MdmViewTasks" defaultAction="showMdmDetails" executionMode="default">
                   <Actions>
                        <Action name="showMdmDetails" groupAction="no" handler="IViewLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes">
                             <Properties>
                                  <Property name="taskId" value="${item.jobId}"/>
                                  <Property name="stepId" value="${item.stepId}"/>
                                  <Property name="userId" value="${item.userNames}"/>
                                  <Property name="workflowTable" value="${item.workflowTable}"/>
                                  <Property name="externalRequestEvent" value="com.sap.pct.mdm.appl.masteriviews.events.externals.ViewTaskRecordsHandler"/>
                                  <Property name="iview" value="pcd:portal_content/net.xx.semc/net.xx.MDM/net.xx.Pages/com.sap.pct.mdm.appl.vendors.search"/>
                             </Properties>
                             <Descriptions default="Show Record Details"/>
                        </Action>
                        <Action name="showHistory" handler="IViewLauncher" launchInNewWindow="yes" launchNewWindowFeatures="width=557,height=560,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
                             <Properties>
                                  <Property name="jobId" value="${item.jobId}"/>
                                  <Property name="workflowTable" value="${item.workflowTable}"/>
                                  <Property name="stepId" value="${item.stepId}"/>
                                  <Property name="userId" value="${item.userNames}"/>
                                  <Property name="systemId" value="${item.systemId}"/>
                                  <Property name="iview" value="pcd:portal_content/com.sap.pct/specialist/com.sap.pct.mdm.appl.mdm_550/com.sap.pct.mdm.appl.iviews/com.sap.pct.mdm.appl.workflow.taskhistory"/>
                             </Properties>
                             <Descriptions default="History"/>
                        </Action>
                        <Action name="createJob" handler="IViewLauncher" launchInNewWindow="yes" launchNewWindowFeatures="width=557,height=560,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
                             <Properties>
                                  <Property name="iview" value="pcd:portal_content/com.sap.pct/specialist/com.sap.pct.mdm.appl.mdm_550/com.sap.pct.mdm.appl.iviews/com.sap.pct.mdm.appl.workflow.createjob"/>
                             </Properties>
                             <Descriptions default="Create Job"/>
                        </Action>
                   </Actions>
              </ItemType>
         </ItemTypes>
           <Views>
        <View name="MdmViewJobs" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.mdm.jobs" columnOrder="mdmStatus, priority, subject, jobId, userNames, dueDate, creatorId, createdDate" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="86400000" dueDateWarning="259200000" emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="top">
          <Descriptions default="My Open MDM Jobs"/>
          <DisplayAttributes>
            <DisplayAttribute name="workflowTable" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Workflow Table">
                <ShortDescriptions>
                  <Description Language="en" Description="Workflow Table"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="userNames" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="User Names">
                <ShortDescriptions>
                  <Description Language="en" Description="User Names"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="mdmStatus" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="MDM Status">
                <ShortDescriptions>
                  <Description Language="en" Description="MDM Status"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="jobId" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Job ID">
                <ShortDescriptions>
                  <Description Language="en" Description="Job ID"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
          </DisplayAttributes>
          <Actions>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
            <Action reference="removeFromNavigation"/>
            <Action reference="personalize"/>
          </Actions>
        </View>
        <View name="MdmViewTasks" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.mdm.tasks" columnOrder="mdmStatus, priority, subject, jobId, userNames, dueDate, creatorId, createdDate" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="86400000" dueDateWarning="259200000" emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="top">
          <Descriptions default="My Open MDM Tasks"/>
          <DisplayAttributes>
            <DisplayAttribute name="workflowTable" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Workflow Table">
                <ShortDescriptions>
                  <Description Language="en" Description="Workflow Table"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="userNames" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="User Names">
                <ShortDescriptions>
                  <Description Language="en" Description="User Names"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="mdmStatus" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="MDM Status">
                <ShortDescriptions>
                  <Description Language="en" Description="MDM Status"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="stepId" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Step ID">
                <ShortDescriptions>
                  <Description Language="en" Description="Step ID"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="jobId" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Job ID">
                <ShortDescriptions>
                  <Description Language="en" Description="Job ID"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="stepName" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Step Name">
                <ShortDescriptions>
                  <Description Language="en" Description="Step Name"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
          </DisplayAttributes>
          <Actions>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
            <Action reference="removeFromNavigation"/>
            <Action reference="personalize"/>
          </Actions>
        </View>
        <View name="MdmWorkItemsCompletedView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.completedtask.mdm.all" columnOrder="subject, jobId, userNames, creatorId, createdDate, status" sortby="creatorId:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="-1" dueDateSevere="0" dueDateWarning="0" emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="top">
          <Descriptions default="Completed MDM Tasks"/>
          <DisplayAttributes>
            <DisplayAttribute name="workflowTable" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Workflow Table">
                <ShortDescriptions>
                  <Description Language="en" Description="Workflow Table"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="userNames" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="User Names">
                <ShortDescriptions>
                  <Description Language="en" Description="User Names"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="jobId" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Step Name">
                <ShortDescriptions>
                  <Description Language="en" Description="Job ID"/>
                </ShortDescriptions>
              </Descriptions>
            </DisplayAttribute>
          </DisplayAttributes>
          <Actions>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
            <Action reference="removeFromNavigation"/>
            <Action reference="personalize"/>
          </Actions>
        </View>
      </Views>
    </UWLConfiguration>

  • Webdynpro for java workflow

    hi experts,
    do we have any concepts of webdynpro for java workflow(UWL), if yes, how can we do it
    pls guide me how we can proceed (implement) , step by step
    thank you in advance,
    vijai

    Hi Vijay..
    Check this links.. u might get useful..
    WebDynpro application that can work with SAP workflow work items?
    /thread/142477 [original link is broken]
    Configuring UWL with WebDynpro
    /people/niharika.jeena/blog/2006/06/06/launching-webdynpro-from-universal-worklist
    Sample Application,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/how%20to%20configure%20the%20universal%20worklist.pdf
    URs GS

  • Cannot view workflow log via Services for Object Workflow Overview

    We recently had an upgrade of R3/ECC and discovered a new issue.  For some reason we can no longer view workflow log via Services for Object > Workflow Overview for Material Master (transaction MM03).  We get the message "There are no workflows that have already worked with this object".  However, we have confirmed via SWEL and other t-codes that the workflow and log do exist.  This seems to be the only object we have this issue for after the upgrade.
    Anyone know what issue is and how to fix?   Or at least path to config in SPRO for "generic object services" where we can see if anything changed via upgrade for this object?
    Thanks,
    Matt
    Edited by: Matthew Huth on Apr 22, 2008 9:23 PM

    Found the solution.  See OSS note 553246.  This has been tested and works for us.   -Matt
    Note 553246
    Summary
    Symptom
    In the material master, the system no longer displays the attachments for the material or workflow items in the Generic Object Services.
    Other terms
    MM01, MM02, MM03
    Reason and Prerequisites
    As of Release 4.6B, business object BUS1001006 is valid for the material master. Until you have implemented Note 452424, the Generic Object Services is still published for the old BUS1001 business object. After implementing the note, all attachments, relationships, notes and workflow items that are assigned to business object BUS1001 are no longer displayed.
    Instead, all new attachments are assigned to business object BUS1001006. As a result, attachments cannot exist for both systems.
    For workflow items, the assignment to the business object occurs in the respective tasks. It may be very time consuming to convert the business object, depending on whether an individual subtype (assigned to BUS1001) is created.
    In other words, after you implement the note, the workflow items for business object BUS1001 can no longer be displayed in the material master.
    Solution
    With the following correction you can call the Generic Object Services for both business objects. When it is called, the system displays a dialog box in which you can choose the required business object, that is, BUS1001 ('Material') or BUS1001006 ('Standard material').
    This correction is delivered as a modification supported by SAP only. This is because the additional option means that attachments can be maintained as required in either of the business objects and users may therefore require extra training.
    However, the corrections enable you to display attachments and workflow items for both business objects without the need for a major conversion; this means that you do not get the impression that these have been lost.
    Alternatively, as of Release 4.70 (or Basis 6.20) you can, without making a modification, implement method ADD_OBJECTS of BAdI GOS_MULT_PUBLISH for filter attribute WF_OVERVIEW ('Workflow overview'), SRELATIONS ('Relationships') and VIEW_ATTA ('Attachment list'). The implementation should be similar to the following:
    METHOD if_ex_gos_mult_publish~add_objects .
      DATA:
        ls_lporb TYPE sibflporb.
      READ TABLE ct_lporb INTO ls_lporb INDEX 1.
      if ls_lporb-typeid = 'BUS1001006'.
        ls_lporb-typeid = 'BUS1001'.
        append ls_lporb to ct_lporb.
      endif.
    endmethod.

  • Workitem exists in SAP Inbox But does not appear in UWL for some users

    Hi,
    We have a peculiar problem with a standard workflow. This workflow is working fine in SAP Inbox and UWL in portal for most of the users. But sometimes, it does not send workitem to UWL for some users.
    Any input of as why this happens?

    Hi All,
    I had experienced this type of problem as well, just to share it could be that the Identity of the Portal user misses a role which can be solved by any user assigning the identity in their identity management or it could also be the connection status of the UWL to the backend, there should be at least two connection statuses for workflow items to get into the UWL I could not recall it but I would post it here once I have the access to our system again.
    Cheers,

  • Filter Value for BADI

    Hi,
    Kindly Let me know the Filter Defined for Implementaing
    BADI.
    Hoping for your Response...!!!

    Hi,
    BADI may be implemented depending on a specific filter value( example COUNTRY-SPECIFIC VERSIONS: distinct implementations of the BADI can be created for the COUNTRY).
    a filter type must be entered when defining your enhancement ( a country or industry, for example).
    all methods created in the enhancement's interface have filter value 'FLT_VAL' as their import parameter.
    the method then selects the active implemetation based on the data provided in the filter value.
    for seting the filter value, you must enable the option FILTER DEPEND and provide FILTER TYPE in the ATTRIBUTES of the BADI defination.
    SE18 is the transaction code for creating BADI.
    Filter dependence for BADI definitions means that each interface method automatically has an importing parameter FLT_VAL assigned ot it. This parameter must be filled with a filter value as current parameter when it is called.
    A BADI definition should be marked as filter-dependent whenever the characteristic of the BADI implementation should match the characteristics of the filter type - that is, whenever the implementation of different filter values should be different or should only exist at all for certain filter values.
    Typical filter types are line of industry or country.
    The BADI is filter dependent. In the first tab of your BADI implementation (SE19), the lower half will contain filter details.
    STEPS FOR SETTING UP A FILTER
    just go to se18 and give ur BADI name..
    then Select 'Attributes' Tab ,there u will find option Filter-Dependent in window named "type"..
    check tht filter dependent checkbox and give ur data element/field in the Filter type field say u can give 'MOLGA' ..save and come back..
    now go to se19 and implement this BADi and there u can give filter values for filed MOLGA..
    Reward Points if found helpfull..
    Cheers,
    Chandra Sekhar.

  • How to achieve Delegation & Substitution for GP system in UWL for CE 7.1

    Hi all
    Could you please guide me , how to achieve delegation & substitution concept for GP system in UWL for CE 7.1.
    when i am trying to click on the Manage Delegation dropdown link which was there in top right corner of the UWL screen , then i am getting the error as " No system is activated for substitution rule " .
    Could you please tell me in our scenario how to activate the System for delegation rule since we are using GP system for GP related tasks in UWL. in all the documents they have mentioned how to achieve the same in R/3 workflow tasks but we are looking for GP tasks how to activate system.
    Is there any changes are required in UWL XML files for achieving this substitution & delegation rule for CE 7.1??
    In EP 7.0 how this delegation & substitution was enabled in UWL , could you pls tell me what are the changes are required to be done??
    if anybody helps on this then it is great help!
    Regards
    Sunil

    Hi Sr,
    There is Trails view in Result . which is newly introduced by Oracle.
    With the help of this you can achive this solution.
    Thanks & Regards
    Rahul

  • FileDialog (filtering for certain file extensions)

    I have used JFileChooser in the past and was modifying my code to use FileDialog instead as it looks better, looks like the one used by every other Windows program and takes less code to get the job done. My
    question is how to filter for certain file extensions in FileDialog as you can in JFileChooser. I cannot seem to figure out how to, so any help would be highly appreciated. Thank you.
    P.S. Also if you know how to turn off all files like you can in JFileChooser, that would also be extremely helpful.

    Go to the JFileChooser tutorial at http://java.sun.com/docs/books/tutorial/uiswing/components/filechooser.html and skip to the section entitled "Filtering the List of Files". That sounds like it should answer your question.

Maybe you are looking for

  • Ical crashes with error log

    When i'm trying to start Ical on my Imac with intel i3 10.6.8, sice today it crasshes. The next error log is shown after Ical was closed: Process:         iCal [229] Path:            /Applications/iCal.app/Contents/MacOS/iCal Identifier:      com.app

  • How to handle the our stock in logicistic service provide

    Hi, I have the scenio and how to config in SAP.Iam placing the PO to vendor, Vendor suply the raw material directly to our logistic service provider when ever we need we pull the stock ( consignment). The stock is in Service provide place.How to desi

  • PARTNER SHIP_TO ADDRESS NOT FOUND problem in PDP---Please help

    Hi all, We are using the plan driven procurement to push our requirements using the RFC user. When running the prgm "BBP_EXTREQ_TRANSFER" to transfer the PR to SRM it shows item transferred, but its getting stuck in the ques in 'SMQ1' transaction wit

  • Standard output in Web Logic

    Can anyone pls tell me where do all "system.out.println"s go in Web Logic server. I can get to see if it hits any exception, but it doesn't print the standard output there. I checked the Web Logic docs and it says that if I do not use Node manager to

  • Is there a way to visualize clipping like  Audacity 2?

    Hi when i open a audio file in  Audacity , it add red lines where the audio has clipping is there a quickly way to have in audition 3? or a quickly way to view all the clipping points? thanks