View Memo option in UWL

Hello,
I am trying to include the "View Memo" option for a couple of different work items in UWL under the "You can also" section.
The View Memo shows up fine for one work item and doesn't show up for the other. However I have similar UWL configuration for both items.
Can any one suggest what is needed to include the View Memo option. I thought that the following tag should do it:
<Action reference="viewMemos"/>
The View Memo does not work for the following item: (Does not show up):
<ItemType name="uwl.task.webflow.decision.TS20000131.ECCCLNT200" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="com.sap.pct.erp.mss.tra.action.DisplayExpenseForm" executionMode="default">
      <ItemTypeCriteria systemId="ECCCLNT200" externalType="TS20000131" connector="WebFlowConnector"/>
      <CustomAttributes>
        <CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalId" objectType="WebflowContainer" cacheValidity="final">
          <Attribute name="TripNumber" type="string" displayName="Trip Number"/>
          <Attribute name="EmployeeNumber" type="string" displayName="Employee Number"/>
        </CustomAttributeSource>
      </CustomAttributes>
      <Actions>
        <Action reference="viewMemos"/>
       <Action reference="addMemo"/>
        <Action reference="com.sap.pct.erp.mss.tra.action.DisplayExpenseForm"/>
        <Action name="com.sap.pct.erp.mss.tra.action.approver.ApproveTrip" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="no" launchInNewWindow="no">
          <Properties>
            <Property name="decisionKey" value="1"/>
          </Properties>
          <Descriptions default="Approve Trip"/>
        </Action>
        <Action name="com.sap.pct.erp.mss.tra.action.approver.SendBackTrip" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="no" launchInNewWindow="no">
          <Properties>
            <Property name="UserDecisionNote" value="mandatory"/>
            <Property name="decisionKey" value="2"/>
          </Properties>
          <Descriptions default="Send Trip Back for Corrections"/>
        </Action>
        <Action name="com.sap.pct.erp.mss.tra.action.approver.RejectTrip" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="no" launchInNewWindow="no">
          <Properties>
            <Property name="UserDecisionNote" value="mandatory"/>
            <Property name="decisionKey" value="3"/>
          </Properties>
          <Descriptions default="Reject Trip"/>
        </Action>
      </Actions>
    </ItemType>
The View Memo option works fine for the following UWL item: (shows up fine)
<ItemType name="uwl.task.webflow.TS20000189.ECCCLNT200" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchWebDynPro" executionMode="default">
      <ItemTypeCriteria systemId="ECCCLNT200" externalType="TS20000189" connector="WebFlowConnector"/>
      <CustomAttributes>
        <CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalId" objectType="WebflowContainer" cacheValidity="final">
          <Attribute name="TripNumber" type="string" displayName="Trip Number"/>
        </CustomAttributeSource>
      </CustomAttributes>
      <Actions>
        <Action reference="viewMemos"/>
        <Action reference="addMemo"/>
        <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproABAPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=no,directories=no">
          <Properties>
            <Property name="WebDynproApplication" value="FITE_EXPENSES"/>
            <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=no,directories=no"/>
            <Property name="DynamicParameter" value="WI_ID=${item.externalId}"/>
            <Property name="openInNewWindow" value="yes"/>
            <Property name="SAP_FITV_TRIPNO" value="${item.TripNumber}"/>
            <Property name="SAP_FITV_ACTION" value="CHG"/>
            <Property name="System" value="SAP_ECC_HumanResources"/>
            <Property name="WebDynproNamespace" value="sap"/>
            <Property name="display_order_priority" value="5"/>
          </Properties>
          <Descriptions default="Correct Trip"/>
        </Action>
      </Actions>
    </ItemType>
Can anyone suggest what is the difference between the above two tasks.
Thank You,
Jaya R

Hi Jaya,
The reason why you are seeing this with the first task is because you are using the action handler UserDecisionHandler, more specifically UserDecisionNote.  This is what defines the memo box.  You can see the other workitem is not of type decision and is not using the UserDecisionHandler, therefore you can't just add a memo box.  If you want to add a memo box to the other workitem, you will need to configure it like the first and check the decisions also in the backend system through the function module: SAP_WAPI_DECISION_READ or SWK_DECISION_READ.  You can find more information here:
http://help.sap.com/saphelp_nw70/helpdata/en/7a/df014b037141ca9afc6433ed42b519/content.htm
Best Regards,
Beth Maben
EP - Senior Support Consultant
AGS Primary Support, Business Suite & Technology
Please see the UWL Wiki @
https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl+faq  ***

Similar Messages

  • View Memo option for a work item

    Hello,
    I am trying to include the "View Memo" option for a couple of different work items in UWL under the "You can also" section.
    The View Memo shows up fine for one work item and doesn't show up for the other. However I have similar UWL configuration for both items.
    Can any one suggest what is needed to include the View Memo option. I thought that the following tag should do it:
    <Action reference="viewMemos"/>
    The View Memo does not work for the following item: (Does not show up):
    <ItemType name="uwl.task.webflow.decision.TS20000131.ECCCLNT200" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="com.sap.pct.erp.mss.tra.action.DisplayExpenseForm" executionMode="default">
          <ItemTypeCriteria systemId="ECCCLNT200" externalType="TS20000131" connector="WebFlowConnector"/>
          <CustomAttributes>
            <CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalId" objectType="WebflowContainer" cacheValidity="final">
              <Attribute name="TripNumber" type="string" displayName="Trip Number"/>
              <Attribute name="EmployeeNumber" type="string" displayName="Employee Number"/>
            </CustomAttributeSource>
          </CustomAttributes>
          <Actions>
            <Action reference="viewMemos"/>
           <Action reference="addMemo"/>
            <Action reference="com.sap.pct.erp.mss.tra.action.DisplayExpenseForm"/>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.ApproveTrip" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="decisionKey" value="1"/>
              </Properties>
              <Descriptions default="Approve Trip"/>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.SendBackTrip" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="mandatory"/>
                <Property name="decisionKey" value="2"/>
              </Properties>
              <Descriptions default="Send Trip Back for Corrections"/>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.RejectTrip" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="mandatory"/>
                <Property name="decisionKey" value="3"/>
              </Properties>
              <Descriptions default="Reject Trip"/>
            </Action>
          </Actions>
        </ItemType>
    The View Memo option works fine for the following UWL item: (shows up fine)
    <ItemType name="uwl.task.webflow.TS20000189.ECCCLNT200" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchWebDynPro" executionMode="default">
          <ItemTypeCriteria systemId="ECCCLNT200" externalType="TS20000189" connector="WebFlowConnector"/>
          <CustomAttributes>
            <CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalId" objectType="WebflowContainer" cacheValidity="final">
              <Attribute name="TripNumber" type="string" displayName="Trip Number"/>
            </CustomAttributeSource>
          </CustomAttributes>
          <Actions>
            <Action reference="viewMemos"/>
            <Action reference="addMemo"/>
            <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproABAPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=no,directories=no">
              <Properties>
                <Property name="WebDynproApplication" value="FITE_EXPENSES"/>
                <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=no,directories=no"/>
                <Property name="DynamicParameter" value="WI_ID=${item.externalId}"/>
                <Property name="openInNewWindow" value="yes"/>
                <Property name="SAP_FITV_TRIPNO" value="${item.TripNumber}"/>
                <Property name="SAP_FITV_ACTION" value="CHG"/>
                <Property name="System" value="SAP_ECC_HumanResources"/>
                <Property name="WebDynproNamespace" value="sap"/>
                <Property name="display_order_priority" value="5"/>
              </Properties>
              <Descriptions default="Correct Trip"/>
            </Action>
          </Actions>
        </ItemType>
    Can anyone suggest what is the difference between the above two tasks.
    Thank You,
    Jaya R

    Hi Jaya,
    The reason why you are seeing this with the first task is because you are using the action handler UserDecisionHandler, more specifically UserDecisionNote.  This is what defines the memo box.  You can see the other workitem is not of type decision and is not using the UserDecisionHandler, therefore you can't just add a memo box.  If you want to add a memo box to the other workitem, you will need to configure it like the first and check the decisions also in the backend system through the function module: SAP_WAPI_DECISION_READ or SWK_DECISION_READ.  You can find more information here:
    http://help.sap.com/saphelp_nw70/helpdata/en/7a/df014b037141ca9afc6433ed42b519/content.htm
    Best Regards,
    Beth Maben
    EP - Senior Support Consultant
    AGS Primary Support, Business Suite & Technology
    Please see the UWL Wiki @
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl+faq  ***

  • How do I use a font variation in a pages document. I no longer have the "viewer" -glyph option in special characters pane only new mbPro with Lion. I know the variation is available because I can see it in the font book. so now what I just want to be

    How do I use a font variation in a pages document? or other app for that matter? I no longer have the "viewer" - glyph option in the special characters pane (under edit  in toolbar). I know the varaition ia available because I can see it in my font book. I depended on that alot so I need to find a way to still use character and embellishments. I don't want to have to go back to my od computer (from2007) Please Help!

    I really don't understand.
    The menu item is available :
    Maybe, you didn't activate the tool :
    Yvan KOENIG (VALLAURIS, France) mardi 2 août 2011 23:10:17
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • I cannot view the option to enable itunes match on my iphone 4s, does anyone have a solution for this?

    I have an iPhone 4S wi iOS 5.1 installed and I can't view the option to enqble iTunes Match under the Music menu. I have subscribed to the service and it works fine on my iPad. Does anyone have a solution to this? Can anyone enlighten me as to what's going on?
    Thanks in advance!

    Yes, that's exactly where I was looking, and that option to turn iTunes Match on/off was non-existent, however, I don't know what happened, it just appeared and is working fine.
    Thanks!

  • Hierarchy on HANA Calculation View with Optional Input Parameters Fails

    Hi,
    Has anyone succeeded in building a hierarchy on top of a calculation view with optional input parameters, where an input parameter is not filled?
    The original requirement came from the wish to create a parent child hierarchy on a calculation view that was copied into the customer space from a HANA Live Financial Statement query view, but I have found the following when creating a simple level hierarchy on a calculation view that consumes one table. The Calculation View has one Input Parameter where the 'mandatory' box is unchecked.
    Calculation view reads ECC table FAGLFLEXT
    Simple level based hierarchy on fields PRCTR, RACCT and SEGMENT
    Input parameter is used as a filter for PRCTR with logic ("EMPTY" = '$$P_PROFITCTR$$' or "PRCTR" = '$$P_PROFITCTR$$')
    When I run the view I see the following behaviour in HANA Studio and Analysis for Excel
    Before building the hierarchy I could run the view with or without the Input Parameter
    After building the hierarchy I can run the view with the Input Parameter filled, but it fails when the Input Parameter is not filled.
    Error message is "error: search table error:  [2426] missing placeholder; missing value for mandatory parameter P_PROFITCTR"
    P_PROFITCTR is not a mandatory parameter, but the selection for the hierarchy view thinks it should be. I don't find any notes around this issue, so I don't think it's version related, however the version I have used for this test is 1.00.70.
    It's a shame we can't currently build the hierarchy as the parent child relationship is provided in HANA Live view NewGLFinancialStatementQuery.
    Thanks,
    Ken

    Hi Ken,
    We have been facing similar issue. We have even tried to set default value and as optional parameter. View still fails to create hierarchy (we are not using HANA live). As mentioned on page 97 of HANA modelling guide input parameter is mandatory from engine point of view. Hierarchy is generated as column view during the initial activation of calculation view and therefore expect a value by caller.
    This seems to be a product error. Some one from HANA development team should explain this issue in detail. I would expect someone like Thomas Jung reply to us.
    At the moment, we cant use input parameter for date prompt which gives us calendar popup feature for date selection. Hierarchies just don't work with input parameter. We are missing something.
    Regards
    Angad

  • Is there a Thunderbird manual? I'm trying to understand all the View/Threads options.

    I'm learning Thunderbird, hoping to adopt it as my mail client (can't keep Eudora afloat any more). The forums are not efficient for learning it. Right now I'm trying to understand all the View/Threads options, but tomorrow it will be something else.

    Thanks, those are helpful. The first one doesn't explain threads options but it led me to https://github.com/protz/GMail-Conversation-View/wiki/What-is-threading, which told me to do View > Sort by > Threaded (I had only tried View > Threads > ...). It also explains threading by message ID, whereas Eudora seems to do it only by subject line.
    Neither reference explains the options under View > Threads > ... but I'll figure it out by trial & error.
    The second reference led to http://www.nidelven-it.no/documentation/thunderbird/introduction-to-thunderbird, which also looks helpful.

  • View bill option

    I wanted to get an excel file of my itemised call log - no problem with the most recent bill - I got it through the view bill option. However the view bill option is not shown for the previous bill - is it possible to make it available or to get the excel file some other way.

    I would like this also.
    Before the online billing changes, you used to be able to download a .csv file of all calls made alongside the pdf of the bill for several previous quarters (don't remember how many, but at a guess probably at least the last four).
    I can download itemised calls for the last bill on the "What you used" page of "Your Latest Bill". That's fine, but I want to see itemised calls for the bill I got in February of this year.
    I don't know why this facility was removed, but I'd like it back! (and reading other messages I'm not the only one).
    Thanks.

  • TS2830 it isn't allowing me to deselect the voice memo option, therefore i am still unable to sync my music

    it isn't allowing me to deselect the voice memo option, therefore i am still unable to sync my music

    Reset both devices.  That is always the first step.
    Now, are you running windows or Mac?

  • View Output/View Log options are redirecting to browser automatically in Oracle Apps 11i

    Hi,
    Can any one please let me know the what is the option to change popup options in oracle apps 11i.
    My requirement is when I click on view Output/View Log options it should pop up there itself rather than redirecting to  browser.
    Application version is : 11.5.10.2
    Thanks,
    Govind

    Hi,
    Clear the value for the following profile option:
    Viewer: Text
    Regards,
    Bashar

  • Problem viewing portal content in UWL

    Hello gurus
    I have a problem with the portal content the user is viewing on UWL. We've finished the job in Dev and everything was fine, but in QA when we try to view some tasks in UWL the message "The page doesn't exists or is not available" appears, and if we check the trace, appears an error saying "child not found" when we try to view the task. Any ideas?
    Regards IA
    Armando Miranda

    Hi ,
    Check the in the backend inbox , whether you are able open the task . If you are able to open it in backend workflow , try reregistering uwl again.
    I believe it is related to backend workflow issue.
    Koti Reddy

  • Unable to view the option register with ESB

    Hi,
    After installing SOA suite we are unable to view the option register with ESB on right click of fulfillment ESB in Jdeveloper .We had followed all the steps listed in the installation document still unable to resolve this issue.
    Thanks in advance !!
    Dhanesh

    Cannot Register with ESB unless
    1: full JDev 10.1.3.3 Studio Edition
    2: Added Application Server in Connections Navigator
    3: Added Integration/ESB server in Connections Navigator on that Application Server.

  • Disabling FORWARD option in UWL

    Hi,
    We are on SRM 7.1
    Is there a way to disable the "FORWARD" option in UWL completely?
    Do I need to modify the iview property or change something else in UWL in Portal?
    Please advise.

    Hi,
    If you are not supposed to ever forward a task to another user, I would change the task properties in the backend system. If you know the task ID, you can open it in transaction PFTC. Then from the menu you will find a possibility to maintain the agent assignment of the task. Now I don't have an access to a system from which I could check the menu path, but if you search in SDN about how to set a task as a "general task", you should be able to find the correct path in some thread. The "Forwarding not possible" setting can be set up at the same place as where the task can be set as "general task" (=whoever can complete the task and it can be forwarded to anyone). I could perhaps check the menu path tomorrow, if you are not able to find it.
    If you need to know the how to configure the item type in UWL (you don't need to do this, if you do the above), you need to e familiar about UWL configuration in general before you can do this. I would suggest that you try the above solution, before trying to do UWL configuration unless there is a specific reason for it (for example you need to be able to forward the task in backend but not in UWL).
    Regards,
    Karri

  • Inbox Folders In view folders option

    I have a blackberry pearl 8130. I went to the view folders option in the messages. I noticed I had over 10 inbox folders and have only 3 email addresses going to the blackberry (2 @me.com {mac email} and a blackberry with verizon email) Is there any way to delete them. I expand them and they have a spam subfolder and nothing in the inbox or spam folders until I get to the last 3 inbox folders and that is my email addresses coming in. 
    Also, can I save my saved messages (emails and SMS/MMS) to my SD card and if so, how would I go about doing that? I need to save for sentimental reasons.

    you cannot save messages / SMS / MMS to your media card.
    you can do a backup using Desktop Manager on your PC.
    Then, there are PC programs that can dig into a backup and transform it into excel files that contain your email / sms / mms. for example :
    http://www.processtext.com/abcblackberry.html
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • View Source Option

    I'm using just the plain old Flex SDK 2, and am wondering if
    there's somethign i can add to my myapp-config.xml or the command
    line to get it to generate the "view source" option that Flex
    Builder provides so easily?
    I like being able to quickly add this feature, but being a
    poor college student I like not needing Flex Builder 2, and I also
    like to avoid heavy IDEs when they can be avoided.

    It's moved to ... Tools > Web Developer > View Source

  • How to remove Forward/Resubmit options from UWL workitems

    Hi Folks,
    I have a requirement to remove Forward/Resubmit options from UWL workitems of the Hover menu.
    Can anyone let me know how to do it ?

    Hi Chaitanya,
    If you want to remove forward and resubmit actions for all the UWL items, it should be simple.
    Open the UWL iview and look for a property called "List of UWL actions to exclude".
    In that property enter the values "followUp" and "forward" separated by a comma.
    followUp - Resubmit
    forward - Forward
    This should remove the two actions for all the UWL items.
    Here is a help link with more info:
    [UWL Action to Exclude|http://help.sap.com/saphelp_nw04/helpdata/en/fd/8bf6d1b0484ec7ade4369792a22293/content.htm]
    If you want to remove these options for selected UWL items only, refer to this forum:
    [post|Exclude Actions from UWL using XML;
    Thanks,
    Shanti

Maybe you are looking for