Remove buttons from CAD Supervisor toolbar

UCCE 9
CAD 9
I know we can remove Agent buttons from CDA -> CAD-Agent work flow -> User Interface section.
How to remove buttons from CAD Supervisor toolbar please? Like Recording. If not possible, is it possible to Disable / Grey out a button. I am looking to remove / disable VoIP Monitoring and Record buttons please?
Thanks,
Kartik Bhatia

Can you try this:
Go to CAD Admin web page
Services Configuration-> Remove VoIP/Recording & Playback Services
Make sure that there are no IP addresses of any servers in the Recording & Playback Service menu. If there are some, select them and press ‘Remove’ button to remove them.
Please make sure that you close CSD, CAD completely and login back to see the changes. I haven’t tried this before but I think this would disable the recording buttons in CSD. I don’t know whether it needs CAD services restarts(all).
-Sunil

Similar Messages

  • Remove 'Buttons' from INFOVIEW toolbar

    How would I go about removing buttons from the Infoview Toolbar (Send, New etc...)
    Thanks

    Hello Daniel,
    some of these Buttons can be removed by permissions in the CMC. The others have to be removed by coding the InfoView .jsp Files.
    Check the following SAP Notes:
    1286494
    1286496
    1197103
    1283449
    Regards
    -Seb.

  • Remove button from Ribbon in a specific toolbar

    Hi,
    I have created a custom list using feature. the list contains 7 content types inheriting from another custom content type. I have set the toolbar type for different views to "None".
    I want to remove the attach file option from Actions group in Ribbon. I tried the solution given in
    http://sharepoint.stackexchange.com/questions/32606/remove-button-from-ribbon-in-a-specific-toolbar
    by specifying custom action with
     the Registration type "ContentType" and registration Id "Content Type Id" for all the content types.
    <CustomAction
    Id="RemoveUploadButton"
    Location="CommandUI.Ribbon"
    RegistrationType="ContentType"
    RegistrationId="{firstcontenttypeid}">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition
    Location="Ribbon.ListItem.Actions" />
    </CommandUIDefinitions>
    </CommandUIExtension>
    </CustomAction>
    <CustomAction
    Id="RemoveUploadButton"
    Location="CommandUI.Ribbon"
    RegistrationType="ContentType"
    RegistrationId="{secondcontenttypeid}">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition
    Location="Ribbon.ListItem.Actions" />
    </CommandUIDefinitions>
    </CommandUIExtension>
    </CustomAction>
    but still the attach file option is appearing in ribbon under item tab. When I set the toolbar type to "Standard" attach file option disappear.
    Please help. TIA
    -Harry

    Hi,
    I tried to reproduced your issue like this: Create a custom Item Content Type, apply it to a custom list. Then I create a custom action for this custom Content Type with the
    code you provided.
    The outcome is: When I set the Toolbar Type as “Full Toolbar” or “Show Toolbar”, the “Attach File” button disappear as expected, when I set the Toolbar Type as “Summary Toolbar”
    or “No Toolbar”, the “Attach File” button appears again.
    Anyway, I will try to work on it or involve someone familiar with this topic to further look at this issue.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • How can I add and remove items from the bookmarks toolbar?

    I want to remove items from the bookmarks toolbar and add ones that I use on a regular basis. How can I do this?

    See:
    *https://developer.mozilla.org/en/Chrome
    *http://en.wikipedia.org/wiki/User_interface_chrome#User_interface_and_interaction_design

  • Hide/Change "Help" button from the Main Toolbar

    Hi all,
    I would like to know if there is any possibility to change the URLs displayed when clicking in "Help" button from the Main Toolbar.
    I think that it is not possible so that is the reason I was also asking the the "toolbar ID" in order to hide the button through "Toolbar customization".
    Thank you very much in advance!
    Regards,
    Laura

    Hi Laura,
    We can change the URLs displayed when clicking in "Help" button from the Main Toolbar.
    In System Properties please mention the URLs to which you want these links to point:
    Documentation - system.help.url.buyside
    E-Learning - system.link.community_url
    Community - system.link.elearning_url
    Guides - system.link.guides_url
    Also you can customize the display names of these by changing the Localized Resource values for below
    common$common.top_links.documentation_link.name
    portal$portal.channel.help_center.training
    portal$portal.channel.help_center.community
    portal$portal.channel.help_center.guides
    Hope this helps!!!
    Regards,
    Vignesh

  • Removing bing from safari 5 toolbar

    What preference(s) file must I alter on my mac to remove Bing from the dropdown toolbar in Safari?
    It is taking up space, and considering I'll never use Bing, I can prune it and shorten my list a little whenever needed.
    Thanks.

    The information that populates there is gathered from your history and bookmarks and cookies.
    http://www.google.com/support/forum/p/Web+Search/thread?tid=5a69f1094357f31b&hl= en
    As I mentioned before you can switch search engines from Safari / Preferences - General.
    You might like using Glims for Safari | www.MacHangout.com
    It's free and gives you more options for search engines and results. The latest buiilds are v10.7 Lion compatible / Safari v5.1 compatible.
    After it's installed you can access the settings from Safari / Preferences - Glims

  • Remove button from accordion widget

    Ok, I know this HAS to be simple and right in front of my face - But, I can't for the life of me find where to remove a button from the accordion widget of Captivate v6.  The default comes with 4 accordion buttons but I only need 3.  How do I get rid of the fourth???
    Thanks in advance.

    Select a button and you'll see a minus sign appearing, click it and the button will be removed.
    Lilybiri

  • How to remove Button from Flex Mobile app actionbar with AS3?

    How exactly would i remove a Button from the actionBar "actionContent" in a flex mobile app?
    I tried these:
        this.stage.removeChild(menu_btn);
        this.removeChild(menu_btn);
        stage.removeChild(menu_btn);
        this.stage.removeElement(menu_btn);
        this.removeElement(menu_btn);
        stage.removeElement(menu_btn);
    I'm not having any luck with those. Im guessing where it is located in the actioncontent isn't considered the stage. Any ideas?
        <s:actionContent>
                            <s:CalloutButton id="menu_btn" icon="@Embed('assets/images/menu/menu_btn.png')" visible="false">
                                      <s:VGroup>
                                      <s:Button id="btn_one" label="Button" />
                                      </s:VGroup>
                            </s:CalloutButton>
                  </s:actionContent>
    The actionContent is setup like that, I know like with most mxml stuff I could give it an ID to reference it but im not sure how how to give the action content an id number `<s:actionContent id="testID">` does not work. So how can i access this to remove it? making it invisible isn't cutting it i need to actually remove it.

    Does this do what you are looking for?
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
        <s:actionContent>
            <s:Button id="excess" label="excess" />
            <s:Button label="remove" click="this.navigator.actionBar.actionGroup.removeElement(excess);" />
        </s:actionContent>
    </s:View>

  • Remove Button from WEB UI

    Dear Experts,
    We need to remove Buttons of Individual and Group from WEB UI in Accoutn creation screen. However we couldn't find the relevant context node and view about it.
    what should we do? do you have any idea?
    thanks in advance?
    Mehmet

    The simple method to do this is the following:
    Enhance the component BP_HEAD_SEARCH
    Enhance the view BP_HEAD_SEARCH/MainSearchResult
    Now you will need to redefine the method
    DO_PREPARE_OUTPUT in the class CL_BP_HEAD__MAINSEARCHRES_IMPL.  If you look at the existing code they define the buttons that are display via appending entries into a "button" table.  You need to delete the button from the gt_button table.
    Your method redefined would look like:
    CALL METHOD super->do_prepare_output.
    if gt_button[] is not initial.
      delete gt_button where on_click eq 'CREATEIND'.
      delete gt_button where on_click eq 'CREATEGROUP'.
    endif.
    Take care,
    Stephen

  • Removing Buttons from Button Group

    Hi
    I am new to WAD 2004s, and am in the process of customising templates.
    I would like to remove some buttons from the button group, but so far the only way I can do this is to go in the XHTML and remove the code segments from there. Surely I should be able to do this from the layout view?
    Cheers,
    Andrew

    Hi,
    As Deepu says, in general everything is possible in the properties (you have to switch to "web item parameters" tab -> you will see all parameters for the web item.
    Regards, Karol Kalisz
    SAP NetWeaver BI Development

  • How the **** do you remove bookmarks from the bookmarks toolbar?

    I have just sat down for one hour to remove bookmarks from bookmarks toolbar - very easy to add more impossible in my case to remove them

    thank you so much after trying to find out how to do it for over an hour you solved it in a few seconds ........ thank you not so mad madperson

  • Remove buttons from Marketing Calendar

    Hi All,
    Is there any way to remove buttons like NEW/COPY/DELETE from marketing calendar screen? Please suggest.
    Regards,
    Nikhil

    You can check if there is a BADI for that.
    If not then you have to enhance that component and remove the buttons in custom code.
    How to enhance refer this ->http://wiki.sdn.sap.com/wiki/display/CRM/HowToEnhanceaWebUIComponentinSAP+CRM
    Regards,
    Alwyn

  • How to remove buttons from standard check in page

    Hi,
    Can any one tell me how to hide buttons from the standard check in page and re-arrange field in UCM. I want to just display Check In, Reset and Quick Help.
    Thanks,
    Abhijit
    Edited by: AbhijijitPr on Sep 6, 2010 2:28 PM

    Hey Tim,
    Even i am facing a similar situation but i have to hide the field on the selection of an option list
    How can i do it through profile and rules?
    Can it be done by using custom includes in the fields?
    if yes how?
    Thanks,

  • Removing buttons from SAP Records Management GUI.

    Hi Records Management Experts,
    I want to delete some push buttons like Back, Exit, Cancel... in records management(in portal), which is a SAP GUI.
    Please tell me how to delete the buttons from the GUI.
    Thanks,
    Rani.

    Dear BP,
    1. Is it possible in SAP Records Management copy records, using standard functionality or i need to Z development?
    Pragya - you will need to develop it..no standard module
    2. Is it possible in SAP Records Management dowload(serialize) and upload records to ORGANIZER/SCASE? (download/upload, that is, per se, copying.)
    Pragya-not in SCASE or ORGANIZER but in SCASEPS it is possible
    3. When I implemented the circulars in ORGANZER, I observed that the method COMPLETED from BUS SDISPOSITN does not start automatically. I can start it using transaction SWUE manually but it won't good... Maybe this can be done in the Status Profile,
    but I didn't manage because BUS RECORD is only started in Status Profile.
    Pragya- This cant be done via status profile in Record directly. What you can try though, is to raise an event for record say CLOSED...register a listener in SWETYPV & raise COMPLETED in that listener (could be a function module).
    Best Regards,
    Pragya

  • Removing buttons from standard UWL tracking tab

    Hi,
    I have got a requirement to remove the delete button in the Tracking tab iView.Once you select a worklist item, there are two options.One is to launch the item type or to delete it.I would like to remove the "Delete" button.
    Can you please help me in this regard?
    BR
    Siva

    Hi Shiva,
    Use this, i have deleted the lines containing delete actoin.
    Hope this will work fine.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE UWLConfiguration PUBLIC '-//SAP//UWL1.0//EN' 'uwl_configuration.dtd'
    <UWLConfiguration version="1.0">
    <DescriptionBundles>
    <DescriptionBundle name="blank" default=" "/>
    </DescriptionBundles>
    <Actions>
    <Action name="markAsRead" groupAction="" handler="UWLActionHandler" referenceBundle="mark_as_read" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL"/>
    <Action name="manageAttachments" groupAction="youCanAlsoDo" handler="SAPWebDynproLauncher" referenceBundle="manage_attachments" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="width=800,height=600,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="WebDynproApplication" value="UWLManageAttachments"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tckmcbc.uwl.ui~wd_ui"/>
    <Property name="isnewwindow" value="1"/>
    <Property name="sap_uwl_selecteditem" value="${item.internalId}"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="excludeNotes" value="true"/>
    <Property name="display_order_priority" value="-3"/>
    </Properties>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no">
    <Expression name="itemType" value="uwl.task" comparator="StartsWith"/>
    <Expression name="itemType" value="uwl.task.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value=".webflow.gp" comparator="NotContains"/>
    </CompoundExpression>
    </Action>
    <Action name="newItem" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    <CompoundExpression logicalOperation="OR" defaultViewFilter="no">
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no">
    <Expression name="itemSubtype" value="Q" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no">
    <Expression name="itemType" value="uwl.task.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.request.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.notassignedtome" comparator="NotStartsWith"/>
    </CompoundExpression>
    </CompoundExpression>
    </Action>
    <Action name="inProgressItem" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    <CompoundExpression logicalOperation="OR" defaultViewFilter="no">
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no">
    <Expression name="itemSubtype" value="Q" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no">
    <Expression name="itemType" value="uwl.task.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.request.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.notassignedtome" comparator="NotStartsWith"/>
    </CompoundExpression>
    </CompoundExpression>
    </Action>
    <Action name="priorityVeryHigh" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="newValue" value="4"/>
    <Property name="priority" value="VeryHigh"/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no">
    <Expression name="itemType" value="uwl.task.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.request.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.notassignedtome" comparator="NotStartsWith"/>
    </CompoundExpression>
    </Action>
    <Action name="submitUserDecisions" groupAction="" handler="UIActionHandler" referenceBundle="submit" returnToDetailViewAllowed="no" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <ConfirmDescriptions referenceBundle="submit_prompt"/>
    </Action>
    <Action name="uwlUserAction" groupAction="" handler="SAPWebDynproLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="width=700,height=600,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="WebDynproApplication" value="UWLUserAction"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tckmcbc.uwl.ui~wd_ui"/>
    <Property name="isnewwindow" value="1"/>
    <Property name="UWLItemIdList" value=""/>
    <Property name="UWLActionId" value="forward"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    <Property name="UWLItemId" value="${item.internalId}"/>
    </Properties>
    <Descriptions default="uwlUserAction"/>
    </Action>
    <Action name="viewSimilar" groupAction="youCanAlsoDo" handler="UIActionHandler" referenceBundle="view_all_of_same_type" returnToDetailViewAllowed="no" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="image" value="icon_detail.gif"/>
    <Property name="display_order_priority" value="-5"/>
    </Properties>
    </Action>
    <Action name="claimItem" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL"/>
    <Action name="addMemo" groupAction="youCanAlsoDo" handler="SAPWebDynproLauncher" referenceBundle="add_memo" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="width=600,height=400,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="WebDynproApplication" value="UWLAddMemo"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tckmcbc.uwl.ui~wd_ui"/>
    <Property name="isnewwindow" value="1"/>
    <Property name="sap_uwl_selecteditem" value="${item.internalId}"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="display_order_priority" value="-3"/>
    </Properties>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no">
    <Expression name="itemType" value="uwl.task" comparator="StartsWith"/>
    <Expression name="itemType" value="uwl.task.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value=".webflow.gp" comparator="NotContains"/>
    </CompoundExpression>
    </Action>
    <Action name="removeFromNavigation" groupAction="" handler="UIActionHandler" referenceBundle="remove_from_navigation" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="type" value="button"/>
    <Property name="onClick" value="onRemoveFromNavigation"/>
    </Properties>
    </Action>
    <Action name="uwlTaskWizard" groupAction="youCanAlsoDo" handler="SAPWebDynproLauncher" referenceBundle="wizard" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="width=550,height=650,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="WebDynproApplication" value="WizardApplication"/>
    <Property name="action" value="subprocess"/>
    <Property name="internalId" value="${item.internalId}"/>
    <Property name="isnewwindow" value="1"/>
    <Property name="item_type" value="${item.itemType}"/>
    <Property name="externalObjectID" value="${item.externalObjectId}"/>
    <Property name="external_obj_type" value="${item.externalType}"/>
    <Property name="dueDate" value="${item.dueDate}"/>
    <Property name="appContext" value="${context.appContext}"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="providerId" value="${item.connectorId}"/>
    <Property name="display_order_priority" value="-3"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tceujwfuiwizardtask"/>
    <Property name="launchContext" value="UWL"/>
    <Property name="systemId" value="${item.systemId}"/>
    <Property name="subject" value="${item.subject}"/>
    <Property name="item_id" value="${item.externalId}"/>
    </Properties>
    </Action>
    <Action name="accept" groupAction="yes" handler="UserDecisionHandler" referenceBundle="approve" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="UserDecisionNote" value="display"/>
    </Properties>
    </Action>
    <Action name="uploadMemo" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="fileName" value=""/>
    <Property name="content" value=""/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="priorityLow" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="newValue" value="1"/>
    <Property name="priority" value="Low"/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="alertBaseAction" groupAction="" handler="dummy" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
    <Property name="openInNewWindow" value="true"/>
    </Properties>
    <Descriptions default="alertBaseAction"/>
    </Action>
    <Action name="uploadAttachment" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="fileName" value=""/>
    <Property name="fileMimeType" value=""/>
    <Property name="content" value=""/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="launchAlertSubscription" groupAction="AlertSubscription" handler="SAPWebDynproLauncher" referenceBundle="alertSubscription" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowName="Alert Category Subscription" launchNewWindowFeatures="width=800,height=600,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="WebDynproApplication" value="UWLAlertSubscription"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tckmcbc.uwl.ui~wd_ui"/>
    <Property name="DynamicParameter" value="configureGroup=${context.configureGroup}"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="confirm" groupAction="yes" handler="UserDecisionHandler" referenceBundle="confirm" returnToDetailViewAllowed="no" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="UserDecisionNote" value="display"/>
    </Properties>
    </Action>
    <Action name="reject" groupAction="yes" handler="UserDecisionHandler" referenceBundle="reject" returnToDetailViewAllowed="no" launchInNewWindow="SHOW_HEADERLESS_PORTAL"/>
    <Action name="forward" groupAction="" handler="ProviderActionHandler" referenceBundle="forward" returnToDetailViewAllowed="no" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="userIdList" value="$"/>
    <Property name="display_order_priority" value="3"/>
    </Properties>
    </Action>
    <Action name="viewHistory" groupAction="youCanAlsoDo" handler="SAPWebDynproLauncher" referenceBundle="view_history" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="width=800,height=600,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="WebDynproApplication" value="UWLDisplayHistory"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tckmcbc.uwl.ui~wd_ui"/>
    <Property name="isnewwindow" value="1"/>
    <Property name="sap_uwl_selecteditem" value="${item.internalId}"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="display_order_priority" value="-3"/>
    </Properties>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no">
    <Expression name="itemType" value="uwl.task.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.completedtask.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.completedrequest.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.request.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.notassignedtome.coll" comparator="NotStartsWith"/>
    </CompoundExpression>
    </Action>
    <Action name="launchAlertActionDummy" groupAction="" handler="SAPWebDynproLauncher" referenceBundle="openAlert" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL"/>
    <Action name="refresh" groupAction="" handler="UIActionHandler" referenceBundle="refresh" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="type" value="button"/>
    <Property name="onClick" value="onForceRefresh"/>
    </Properties>
    </Action>
    <Action name="addToNavigation" groupAction="" handler="UIActionHandler" referenceBundle="add_to_navigation" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="type" value="button"/>
    <Property name="onClick" value="onAddToNavigation"/>
    </Properties>
    </Action>
    <Action name="priorityHigh" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="newValue" value="3"/>
    <Property name="priority" value="High"/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="unescalate" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="completeItem" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    <CompoundExpression logicalOperation="OR" defaultViewFilter="no">
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no">
    <Expression name="noapprovalquicktask" value="true" comparator="NotEquals"/>
    <Expression name="itemSubtype" value="Q" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no">
    <Expression name="noapprovalquicktask" value="true" comparator="NotEquals"/>
    <Expression name="itemType" value="uwl.task.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.request.coll" comparator="NotStartsWith"/>
    <Expression name="itemType" value="uwl.notassignedtome" comparator="NotStartsWith"/>
    </CompoundExpression>
    </CompoundExpression>
    </Action>
    <Action name="complete" groupAction="" handler="ProviderActionHandler" referenceBundle="complete" returnToDetailViewAllowed="no" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="4"/>
    </Properties>
    </Action>
    <Action name="markAsLaunched" groupAction="" handler="UWLActionHandler" referenceBundle="mark_as_launched" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="viewSubProcess" groupAction="" handler="SAPWebDynproLauncher" referenceBundle="view_subprocess" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="WebDynproApplication" value="JWFTaskDetail"/>
    <Property name="internalId" value="0"/>
    <Property name="action" value="viewsubprocess"/>
    <Property name="isnewwindow" value="0"/>
    <Property name="item_type" value="uwl.request.coll"/>
    <Property name="external_obj_type" value="WFTask"/>
    <Property name="subProcessId" value="${item.subProcessId}"/>
    <Property name="appContext" value="${context.appContext}"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="display_order_priority" value="uwlSubprocessRunningOnly"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tceujwfwfwdtd"/>
    <Property name="launchContext" value="UWL"/>
    <Property name="item_id" value="${item.subProcessId}"/>
    <Property name="external_obj_id" value="${item.subProcessId}"/>
    </Properties>
    </Action>
    <Action name="viewDetail" groupAction="" handler="SAPWebDynproLauncher" referenceBundle="view_detail" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="width=700,height=600,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="WebDynproApplication" value="UWLDetail"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tckmcbc.uwl.ui~wd_ui"/>
    <Property name="excludeActions" value="$"/>
    <Property name="isnewwindow" value="1"/>
    <Property name="excludePreviewSections" value="$"/>
    <Property name="image" value="icon_detail.gif"/>
    <Property name="sap_uwl_selecteditem" value="${item.internalId}"/>
    <Property name="displayEmptyDisplayAttributes" value="$"/>
    <Property name="excludeDisplayAttributes" value="$"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="display_order_priority" value="-2"/>
    </Properties>
    </Action>
    <Action name="replace" groupAction="" handler="ProviderActionHandler" referenceBundle="replace" returnToDetailViewAllowed="no" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="3"/>
    </Properties>
    </Action>
    <Action name="priorityNormal" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="newValue" value="2"/>
    <Property name="priority" value="Normal"/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="removeAttachment" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="attachmentId" value=""/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="decline" groupAction="" handler="ProviderActionHandler" referenceBundle="decline" returnToDetailViewAllowed="no" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="3"/>
    </Properties>
    <ConfirmDescriptions referenceBundle="decline_prompt"/>
    </Action>
    <Action name="viewMemos" groupAction="youCanAlsoDo" handler="UIActionHandler" referenceBundle="view_memos" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="-2"/>
    </Properties>
    </Action>
    <Action name="connectionstatus" groupAction="" handler="SAPWebDynproLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="width=600,height=350,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="WebDynproApplication" value="UWLConnectionStatus"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tckmcbc.uwl.ui~wd_ui"/>
    <Property name="isnewwindow" value="1"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    <Descriptions default="connectionstatus"/>
    </Action>
    <Action name="uwlReturnToTable" groupAction="" handler="UIActionHandler" referenceBundle="return" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="type" value="button"/>
    <Property name="onClick" value="onCancel"/>
    <Property name="display_order_priority" value="-15"/>
    </Properties>
    </Action>
    <Action name="launchSubstitutionManager" groupAction="" handler="SAPWebDynproLauncher" referenceBundle="SubstitutionManager" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowName="Substitution" launchNewWindowFeatures="width=800,height=600,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="WebDynproApplication" value="UWLSubstitution"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tckmcbc.uwl.ui~wd_ui"/>
    <Property name="DynamicParameter" value="uwlSessionId=${context.uwlSessionId}&amp;configureGroup=${context.configureGroup}"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="defaultGlobalWizard" groupAction="" handler="SAPWebDynproLauncher" referenceBundle="new_task" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="width=550,height=650,resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="WebDynproApplication" value="WizardApplication"/>
    <Property name="WebDynproDeployableObject" value="sap.com/tceujwfuiwizardtask"/>
    <Property name="isnewwindow" value="1"/>
    <Property name="launchContext" value="UWL"/>
    <Property name="type" value="button"/>
    <Property name="ignoreWorkIdParams" value="yes"/>
    <Property name="appContext" value="${context.appContext}"/>
    <Property name="System" value="SAP_LocalSystem"/>
    <Property name="display_order_priority" value="-1"/>
    </Properties>
    </Action>
    <Action name="escalate" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    <Action name="unclaimItem" groupAction="" handler="ProviderActionHandler" referenceBundle="blank" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL"/>
    <Action name="viewPreviewDetail" groupAction="youCanAlsoDo" handler="UIActionHandler" referenceBundle="view_preview" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="image" value="icon_detail.gif"/>
    <Property name="display_order_priority" value="-1"/>
    </Properties>
    </Action>
    <Action name="acknowledge" groupAction="" handler="ProviderActionHandler" referenceBundle="acknowledge" returnToDetailViewAllowed="no" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="3"/>
    </Properties>
    <ConfirmDescriptions referenceBundle="acknowledge_prompt"/>
    </Action>
    <Action name="reserve" groupAction="" handler="ProviderActionHandler" referenceBundle="reserve" returnToDetailViewAllowed="no" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="3"/>
    </Properties>
    </Action>
    <Action name="cancelSubprocess" groupAction="" handler="UWLActionHandler" referenceBundle="cancel_process" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL">
    <Properties>
    <Property name="display_order_priority" value="uwlSubprocessRunningOnly"/>
    </Properties>
    <ConfirmDescriptions referenceBundle="cancel_prompt"/>
    </Action>
    </Actions>
    <ItemTypes>
    <ItemType name="uwl" connector="*" defaultView="DefaultView" defaultAction="viewDetail" executionMode="default">
    <Actions>
    <Action reference="viewDetail"/>
    <Action reference="viewMemos"/>
    <Action reference="viewPreviewDetail"/>
    <Action reference="viewSimilar"/>
    <Action reference="uwlReturnToTable"/>
    <Action reference="markAsRead"/>
    <Action reference="markAsLaunched"/>
    <Action reference="launchSubstitutionManager"/>
    <Action reference="uwlUserAction"/>
    <Action reference="connectionstatus"/>
    </Actions>
    </ItemType>
    <ItemType name="uwl.alert" connector="AlertConnector" defaultView="AlertsView" defaultAction="viewDetail" executionMode="default">
    <Actions>
    <Action reference="cancelSubprocess"/>
    <Action reference="viewSubProcess"/>
    <Action reference="acknowledge"/>
    <Action reference="replace"/>
    <Action reference="reserve"/>
    <Action reference="decline"/>
    <Action reference="forward"/>
    <Action name="AlertConfiguration" groupAction="" handler="SAPBSPLauncher" referenceBundle="alertConfig" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="width=800,height=600,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="ALERTPERSONALIZE_RULES"/>
    <Property name="PageId" value="index.htm"/>
    <Property name="System" value="${item.systemId}"/>
    <Property name="display_order_priority" value="1"/>
    </Properties>
    </Action>
    </Actions>
    <Menu>
    <MenuItem name="acknowledge" actionRef="acknowledge" referenceBundle="acknowledge"/>
    <MenuItem name="forward" actionRef="forward" referenceBundle="forward"/>
    </Menu>
    </ItemType>
    <ItemType name="uwl.completedrequest" connector="*" defaultView="WorkItemsCompletedRequestView" defaultAction="viewDetail" executionMode="default">
    <Caching refreshPeriod="session" expiryTime="default"/>
    <Actions>
    <Action reference="viewSubProcess"/>
    </Actions>
    </ItemType>
    <ItemType name="uwl.completedtask" connector="*" defaultView="WorkItemsCompletedView" defaultAction="viewDetail" executionMode="default"/>
    <ItemType name="uwl.forwardedtask" connector="*" defaultView="WorkItemsForwardedView" defaultAction="viewDetail" executionMode="default">
    <Caching refreshPeriod="session" expiryTime="default"/>
    </ItemType>
    <ItemType name="uwl.futuretask" connector="*" defaultView="FutureTaskView" defaultAction="viewDetail" executionMode="default"/>
    <ItemType name="uwl.notification" connector="*" defaultView="NotificationsView" defaultAction="viewDetail" executionMode="default">
    <Actions>
    <Action reference="complete"/>
    </Actions>
    </ItemType>
    <ItemType name="uwl.request" connector="*" defaultView="WorkItemRequestsView" defaultAction="viewDetail" executionMode="default">
    <Actions>
    <Action reference="cancelSubprocess"/>
    <Action reference="viewSubProcess"/>
    </Actions>
    </ItemType>
    <ItemType name="uwl.task" connector="*" defaultView="DefaultView" defaultAction="viewDetail" executionMode="default">
    <Actions>
    <Action reference="uwlTaskWizard"/>
    <Action reference="priorityLow"/>
    <Action reference="priorityNormal"/>
    <Action reference="priorityHigh"/>
    <Action reference="priorityVeryHigh"/>
    <Action reference="cancelSubprocess"/>
    <Action reference="viewSubProcess"/>
    </Actions>
    </ItemType>
    <ItemType name="uwl.task.approval" connector="*" defaultView="WorkItemsApprovalView" defaultAction="viewDetail" executionMode="default">
    <Actions>
    <Action reference="accept"/>
    <Action reference="reject"/>
    </Actions>
    </ItemType>
    <ItemType name="uwl.task.confirmation" connector="*" defaultView="DefaultView" defaultAction="viewDetail" executionMode="default">
    <Actions>
    <Action reference="confirm"/>
    </Actions>
    </ItemType>
    <ItemType name="uwl.templateBase.alert" connector="AlertConnector" defaultView="DefaultView" defaultAction="viewDetail" executionMode="default">
    <Actions>
    <Action reference="alertBaseAction"/>
    </Actions>
    </ItemType>
    </ItemTypes>
    <Views>
    <View name="AlertsView" selectionMode="MULTISELECT" width="98%" supportedItemTypes="uwl.alert" columnOrder="priority, subject, isEscalated, createdDate, recipients, alertcategory, attachmentCount" sortby="priority:descend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="task_alerts">
    <DisplayAttributes>
    <DisplayAttribute name="createdDate" type="datetime" width="" sortable="yes" format="medium" referenceBundle="sent_date" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="expiryDate" type="datetime" width="" sortable="yes" format="medium" referenceBundle="expire_date" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="recipients" type="people" width="" sortable="no" format="default" referenceBundle="recipients" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="alertcategory" type="string" width="" sortable="yes" format="default" referenceBundle="alertcategory" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="priority" type="image" width="1" sortable="yes" format="default" referenceBundle="priority" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
    <ImageMapping default="HIGH">
    <ImageMap value="VERYHIGH" imageName="/irj/portalapps/com.sap.portal.htmlb/mimes/common/statusicons/s_s_ledr.gif"/>
    <ImageMap value="HIGH" imageName="" referenceBundle="menu_priority_high"/>
    </ImageMapping>
    </DisplayAttribute>
    </DisplayAttributes>
    <AllowedFilters>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="yes" referenceBundle="filter_display_all"/>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_new">
    <Expression name="status" value="NEW" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_inprogress">
    <Expression name="status" value="INPROGRESS" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_duetoday">
    <Expression name="dueDate" value="Today" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_overdue">
    <Expression name="dueDate" value="Today" comparator="LessThan"/>
    </CompoundExpression>
    </AllowedFilters>
    <Actions>
    <Action reference="acknowledge"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    <Action reference="launchAlertSubscription"/>
    </Actions>
    </View>
    <View name="AllItemsView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task, uwl.request, uwl.notification, uwl.alert" columnOrder="subject, isEscalated, creatorId, createdDate, priority, attachmentCount, dueDate, status" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="86400000" dueDateWarning="259200000" emphasizedItems="new" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="all_tasks">
    <DisplayAttributes>
    <DisplayAttribute name="priority" type="string" width="10" sortable="yes" format="default" referenceBundle="priority" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
    <Menu>
    <MenuItem name="Low" actionRef="priorityLow" referenceBundle="menu_priority_low"/>
    <MenuItem name="Normal" actionRef="priorityNormal" referenceBundle="menu_priority_normal"/>
    <MenuItem name="High" actionRef="priorityHigh" referenceBundle="menu_priority_high"/>
    <MenuItem name="VeryHigh" actionRef="priorityVeryHigh" referenceBundle="menu_priority_v_high"/>
    </Menu>
    </DisplayAttribute>
    </DisplayAttributes>
    <AllowedFilters>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="yes" referenceBundle="filter_display_all"/>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_new">
    <Expression name="status" value="NEW" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_inprogress">
    <Expression name="status" value="INPROGRESS" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_duetoday">
    <Expression name="dueDate" value="Today" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_overdue">
    <Expression name="dueDate" value="Today" comparator="LessThan"/>
    </CompoundExpression>
    </AllowedFilters>
    <Actions>
    <Action reference="defaultGlobalWizard"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    <Action reference="launchSubstitutionManager"/>
    </Actions>
    </View>
    <View name="AllWorkItemsCompletedView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.completedtask, uwl.completedrequest" columnOrder="subject, creatorId, createdDate, priority, attachmentCount, completedDate" sortby="priority:descend, completedDate:descend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="Last_3_Months" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="completed_tasks">
    <DisplayAttributes>
    <DisplayAttribute name="completedDate" type="date" width="" sortable="yes" format="medium" referenceBundle="completed_date" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="decision" type="string" width="" sortable="yes" format="default" referenceBundle="decision" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    </DisplayAttributes>
    <Actions>
    <Action reference="defaultGlobalWizard"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    </Actions>
    </View>
    <View name="ComboWorkItemRequestsView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.request, uwl.completedrequest" columnOrder="subject, creatorId, createdDate, priority, attachmentCount, dueDate, status" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="Last_3_Months" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="new" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="tracking">
    <DisplayAttributes>
    <DisplayAttribute name="completedDate" type="date" width="" sortable="yes" format="medium" referenceBundle="completed_date" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="decision" type="string" width="" sortable="yes" format="default" referenceBundle="decision" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="processor" type="people" width="" sortable="yes" format="default" referenceBundle="processor" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="priority" type="string" width="10" sortable="yes" format="default" referenceBundle="priority" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
    <Menu>
    <MenuItem name="Low" actionRef="priorityLow" referenceBundle="menu_priority_low"/>
    <MenuItem name="Normal" actionRef="priorityNormal" referenceBundle="menu_priority_normal"/>
    <MenuItem name="High" actionRef="priorityHigh" referenceBundle="menu_priority_high"/>
    <MenuItem name="VeryHigh" actionRef="priorityVeryHigh" referenceBundle="menu_priority_v_high"/>
    </Menu>
    </DisplayAttribute>
    </DisplayAttributes>
    <AllowedFilters>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="yes" referenceBundle="filter_display_all"/>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_new">
    <Expression name="status" value="NEW" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_inprogress">
    <Expression name="status" value="INPROGRESS" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_duetoday">
    <Expression name="dueDate" value="Today" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_overdue">
    <Expression name="dueDate" value="Today" comparator="LessThan"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_completed">
    <Expression name="itemType" value="uwl.completedrequest" comparator="StartsWith"/>
    <Expression name="status" value="CANCELLED" comparator="NotEquals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_cancelled">
    <Expression name="status" value="CANCELLED" comparator="Equals"/>
    </CompoundExpression>
    </AllowedFilters>
    <Actions>
    <Action reference="defaultGlobalWizard"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    </Actions>
    </View>
    <View name="DefaultView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task" columnOrder="subject, isEscalated, creatorId, createdDate, priority, attachmentCount, dueDate, status" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="86400000" dueDateWarning="259200000" emphasizedItems="new" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="tasks">
    <DisplayAttributes>
    <DisplayAttribute name="priority" type="string" width="10" sortable="yes" format="default" referenceBundle="priority" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
    <Menu>
    <MenuItem name="Low" actionRef="priorityLow" referenceBundle="menu_priority_low"/>
    <MenuItem name="Normal" actionRef="priorityNormal" referenceBundle="menu_priority_normal"/>
    <MenuItem name="High" actionRef="priorityHigh" referenceBundle="menu_priority_high"/>
    <MenuItem name="VeryHigh" actionRef="priorityVeryHigh" referenceBundle="menu_priority_v_high"/>
    </Menu>
    </DisplayAttribute>
    </DisplayAttributes>
    <AllowedFilters>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="yes" referenceBundle="filter_display_all"/>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_new">
    <Expression name="status" value="NEW" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_inprogress">
    <Expression name="status" value="INPROGRESS" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_duetoday">
    <Expression name="dueDate" value="Today" comparator="Equals"/>
    </CompoundExpression>
    <CompoundExpression logicalOperation="AND" defaultViewFilter="no" referenceBundle="filter_overdue">
    <Expression name="dueDate" value="Today" comparator="LessThan"/>
    </CompoundExpression>
    </AllowedFilters>
    <Actions>
    <Action reference="defaultGlobalWizard"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    </Actions>
    </View>
    <View name="FutureTaskView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.futuretask" columnOrder="subject, creatorId, createdDate, futureDate, attachmentCount" sortby="createdDate:descend, subject" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="future_tasks">
    <DisplayAttributes>
    <DisplayAttribute name="futureDate" type="date" width="" sortable="yes" format="medium" referenceBundle="future_date" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    </DisplayAttributes>
    <Actions>
    <Action reference="defaultGlobalWizard"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    </Actions>
    </View>
    <View name="MiniAlertsView" selectionMode="NONE" width="98%" supportedItemTypes="uwl.alert" columnOrder="subject, priority" sortby="priority:descend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="5" headerVisible="no" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="STANDARD" actionRef="" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom">
    <Descriptions default="Alerts">
    <ShortDescriptions>
    <Description Language="en" Description="Alerts"/>
    </ShortDescriptions>
    </Descriptions>
    <DisplayAttributes>
    <DisplayAttribute name="priority" type="image" width="1" sortable="yes" format="default" referenceBundle="priority" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="no">
    <ImageMapping default="HIGH">
    <ImageMap value="VERYHIGH" imageName="/irj/portalapps/com.sap.portal.htmlb/mimes/common/statusicons/s_s_ledr.gif"/>
    <ImageMap value="HIGH" imageName="" referenceBundle="menu_priority_high"/>
    </ImageMapping>
    </DisplayAttribute>
    </DisplayAttributes>
    <Actions>
    <Action name="Extended" groupAction="no" handler="IViewLauncher" referenceBundle="expand" returnToDetailViewAllowed="no" launchInNewWindow="no">
    <Properties>
    <Property name="sap_uwl_viewname" value="AlertsView"/>
    <Property name="iview" value="pcd:portal_content/com.sap.pct/every_user/general/iViews/com.sap.netweaver.bc.uwl.uwl_iview"/>
    <Property name="display_order_priority" value="1"/>
    </Properties>
    </Action>
    </Actions>
    </View>
    <View name="NotificationsView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.notification" columnOrder="subject, creatorId, createdDate, priority, attachmentCount" sortby="createdDate:descend, priority:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="task_notifications">
    <Actions>
    <Action reference="complete"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    </Actions>
    </View>
    <View name="WorkItemRequestsView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.request" columnOrder="status, subject, creatorId, createdDate, processor, priority, attachmentCount, dueDate" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="task_request_items">
    <DisplayAttributes>
    <DisplayAttribute name="processor" type="people" width="" sortable="yes" format="default" referenceBundle="processor" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    </DisplayAttributes>
    <Actions>
    <Action reference="defaultGlobalWizard"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    </Actions>
    </View>
    <View name="WorkItemsApprovalView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.approval, uwl.task.coll.approval" columnOrder="subject, creatorId, createdDate, priority, attachmentCount, dueDate, openCol, approveCol, rejectCol" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="0" dueDateSevere="86400000" dueDateWarning="259200000" emphasizedItems="new" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="task_approvals">
    <DisplayAttributes>
    <DisplayAttribute name="openCol" type="radiobutton" width="" sortable="no" format="default" referenceBundle="open" hAlign="CENTER" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="rejectCol" type="radiobutton" width="" sortable="no" format="default" actionRef="reject" referenceBundle="reject" hAlign="CENTER" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="approveCol" type="radiobutton" width="" sortable="no" format="default" actionRef="accept" referenceBundle="approve" hAlign="CENTER" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    </DisplayAttributes>
    <Actions>
    <Action reference="submitUserDecisions"/>
    <Action reference="defaultGlobalWizard"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    <Action reference="launchSubstitutionManager"/>
    </Actions>
    </View>
    <View name="WorkItemsCompletedRequestView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.completedrequest" columnOrder="subject, creatorId, createdDate, decision, completedDate, priority, attachmentCount, dueDate" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="new" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="completed_task_requests">
    <DisplayAttributes>
    <DisplayAttribute name="completedDate" type="date" width="" sortable="yes" format="medium" referenceBundle="completed_date" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="decision" type="string" width="" sortable="yes" format="default" referenceBundle="decision" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    </DisplayAttributes>
    <Actions>
    <Action reference="defaultGlobalWizard"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    </Actions>
    </View>
    <View name="WorkItemsCompletedView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.completedtask" columnOrder="subject, creatorId, createdDate, priority, attachmentCount, completedDate" sortby="priority:descend, completedDate:descend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="Last_3_Months" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="completed_tasks">
    <DisplayAttributes>
    <DisplayAttribute name="completedDate" type="date" width="" sortable="yes" format="medium" referenceBundle="completed_date" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="decision" type="string" width="" sortable="yes" format="default" referenceBundle="decision" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    </DisplayAttributes>
    <Actions>
    <Action reference="defaultGlobalWizard"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    </Actions>
    </View>
    <View name="WorkItemsForwardedView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.forwardedtask" columnOrder="subject, creatorId, createdDate, processor, forwardedDate, priority, attachmentCount, status, dueDate" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="forwarded_tasks">
    <DisplayAttributes>
    <DisplayAttribute name="processor" type="people" width="" sortable="yes" format="default" referenceBundle="processor" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="forwardedDate" type="date" width="" sortable="yes" format="medium" referenceBundle="forwarded_date" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    </DisplayAttributes>
    <Actions>
    <Action reference="defaultGlobalWizard"/>
    <Action reference="addToNavigation"/>
    <Action reference="removeFromNavigation"/>
    </Actions>
    </View>
    </Views>
    <GlobalDisplayAttributes>
    <DisplayAttribute name="createdDate" type="date" width="" sortable="yes" format="medium" referenceBundle="sent_date" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="escalatedBy" type="people" width="" sortable="yes" format="default" referenceBundle="escalated_by" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="attachmentCount" type="int" width="1" sortable="yes" format="default" referenceBundle="attachments" hAlign="CENTER" vAlign="BASELINE" maxTextWidth="0" headerVisible="no"/>
    <DisplayAttribute name="statusIcon" type="image" width="1" sortable="yes" format="default" referenceBundle="status_image" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="no">
    <ImageMapping default="enum">
    <ImageMap value="EXECUTED" imageName="ico16_task_confirmed.gif" referenceBundle="confirmed_task_status"/>
    <ImageMap value="COMPLETED" imageName="ico16_task_complete.gif" referenceBundle="complete_task_status"/>
    <ImageMap value="INPROGRESS" imageName="ico16_task_start.gif" referenceBundle="start_task_status"/>
    <ImageMap value="CANCELLED" imageName="ico16_task_reject.gif" referenceBundle="cancelled_task_status"/>
    <ImageMap value="enum" imageName="ico16_task_new.gif" referenceBundle="new_task_status"/>
    <ImageMap value="NEW" imageName="ico16_task_new.gif" referenceBundle="new_task_status"/>
    </ImageMapping>
    </DisplayAttribute>
    <DisplayAttribute name="substitutedFor" type="people" width="" sortable="yes" format="default" referenceBundle="substituted_for" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="dueDate" type="date" width="" sortable="yes" format="medium" referenceBundle="due_date" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="status" type="string" width="" sortable="yes" format="default" referenceBundle="status" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="isEscalated" type="image" width="10" sortable="yes" format="default" referenceBundle="data_escalate" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="no">
    <ImageMapping default="0">
    <ImageMap value="0" imageName="">
    <Descriptions default=""/>
    </ImageMap>
    <ImageMap value="1" imageName="ico16_escalated.gif" referenceBundle="data_escalated"/>
    </ImageMapping>
    </DisplayAttribute>
    <DisplayAttribute name="creatorId" type="people" width="" sortable="yes" format="default" referenceBundle="from" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="memoCount" type="int" width="1" sortable="yes" format="default" referenceBundle="memo" hAlign="CENTER" vAlign="BASELINE" maxTextWidth="0" headerVisible="no"/>
    <DisplayAttribute name="itemTypeIcon" type="image" width="1" sortable="no" format="default" referenceBundle="item_type" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="no">
    <ImageMapping default="none">
    <ImageMap value="uwl.task" imageName="task.gif" referenceBundle="tasks"/>
    <ImageMap value="none" imageName="">
    <Descriptions default=""/>
    </ImageMap>
    <ImageMap value="uwl.notification" imageName="notification.gif" referenceBundle="task_notifications"/>
    <ImageMap value="uwl.alert" imageName="alert.gif" referenceBundle="task_alerts"/>
    </ImageMapping>
    </DisplayAttribute>
    <DisplayAttribute name="systemId" type="string" width="10" sortable="yes" format="default" referenceBundle="system_id" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="isLaunched" type="image" width="1" sortable="no" format="default" referenceBundle="launched" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="no">
    <ImageMapping default="0">
    <ImageMap value="0" imageName="1x1.gif" referenceBundle="not_launched"/>
    <ImageMap value="1" imageName="ico16_clock1.gif" referenceBundle="is_launched"/>
    </ImageMapping>
    </DisplayAttribute>
    <DisplayAttribute name="subject" type="link" width="" sortable="yes" format="default" actionRef="viewDetail" referenceBundle="subject" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    <DisplayAttribute name="priority" type="string" width="" sortable="yes" format="default" referenceBundle="priority" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
    </GlobalDisplayAttributes>
    <NavigationNode name="root" view="" referenceGroup="" visible="yes" keepItemCountUpdated="no">
    <NavigationNode name="MainOldStyle" view="" referenceGroup="" visible="yes" keepItemCountUpdated="no">
    <NavigationNode name="task" view="DefaultView" referenceGroup="" visible="yes" keepItemCountUpdated="no" referenceBundle="tasks">
    <NavigationNode name="PersonalViewPlaceHolderTask" view="" referenceGroup="UWL_PERSONAL" visible="yes" keepItemCountUpdated="no"/>
    </NavigationNode>
    <NavigationNode name="notification" view="NotificationsView" referenceGroup="" visible="yes" keepItemCountUpdated="no" referenceBundle="notifications">
    <Navigatio

Maybe you are looking for

  • Getting bobj is undefined when report is viewed in Internet Explorer 8

    Background We are running a web application on a server that has "BusinessObjects Enterprise XI 3.1 FP 2.6 Update" installed on it. The server uses the 1.1 .net framework. This web app can generate Crystal reports and display them either by exporting

  • Detach credit card from account

    I want to keep my past purchases so i cand send the to the new icloud service but i want to detach my credit card info from my account. How can i do this? I have made no further purchases but its demanding my security code and i refuse to enter it!

  • How to add an "age / time counter" into DW?

    Can anyone assist on how to add an age / time counter into DW? In other words to say "Child X is now a years, b months old"? or "Product Z was launched A years B months ago"? Or, on the other hand, "You only have Z days & Y minutes left to enter"? Wi

  • My contacts did not reappeared after I updated my iPhone's 4 to iOS 6

    I did not back up the phone before I decided to update the software to ios6?! So after updating the software on my iPhone and re starting the phone, I was very upset to go through my phone and not have any of my contacts. I was able to recover all em

  • Page Orientation changes in 6.0 standard

    My boss has a PDF file that is set up with a Portrait orientation, but would like it to print out Landscape.  I have 6.0 Standard, but use it very rarely.  I have changed every option I know of:  it all shows up as Landscape/Legal, but it continues t