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  ***

Similar Messages

  • 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  ***

  • Alter express code to include views and unions for top dim items

    If a user selects a dimension item at the top most level, the explain plan shows that it does a full table scan of the fact table instead of using the materialized views. If we add the highlighted information(see below) to the osa generated sql, then the explain plan does what we want it to do.
    Do you know if it is possible to alter the express code to include the views and unions for the dimension items that are at the top most level in the hierarchy? I think that I need to alter how the sq.query.drv program figures out what to include in the sql. But this is beyond my express comfort level.
    The query below is generated by the osa cube and we want to include the highlighted information in the sql that is generated which will force it to use the correct query rewrite and return data in a reasonable time frame.
    Is this possible and has anyone tried this before?
    SELECT 'B4' || lt2.acct_lvl_4_id
    , 'C2' || lt6.cust_grpng_id
    , 'G1000'
    , 'L1000'
    , 'O190012880'
    , 'P1000000000'
    , 'R100001'
    , 'T3' || lt25.mth_id
    , 'E190'
    , SUM (ft34.usd_curr_pl_amt)
    FROM osa_fivcas_mth_ifct_gbl_992 ft34
    , osa_fivcas_acct_992 lt2
    , osa_fivcas_cal_mastr lt25
    , osa_fivcas_cust_898_000 lt6
    -- Extra Tables
    , osa_fivcas_geo_942 lt20
    , osa_fivcas_org_817 lt22
    , osa_fivcas_prod_710 lt23
    WHERE lt2.acct_lvl_9_skid = ft34.acct_lvl_9_skid
    AND lt6.cust_lvl_10_skid = ft34.cust_lvl_10_skid
    AND lt25.mth_skid = ft34.mth_skid
    -- Extra Join Conditions
    AND lt20.geo_lvl_8_skid = ft34.geo_lvl_8_skid
    AND lt22.org_lvl_12_skid = ft34.org_lvl_12_skid
    AND lt23.fpc_skid = ft34.fpc_skid
    AND lt2.acct_lvl_4_id IN ('81013286')
    AND lt6.cust_grpng_id IS NOT NULL
    AND lt25.mth_id IN ('AUG08')
    GROUP BY 'B4' || lt2.acct_lvl_4_id
    , 'C2' || lt6.cust_grpng_id
    , 'G1000'
    , 'L1000'
    , 'O190012880'
    , 'P1000000000'
    , 'R100001'
    , 'T3' || lt25.mth_id
    , 'E190';

    David,
    When u add a field to a header table. U can use the User data source to bind it. Even if u add the DBDatasource the Coulmn needs to be present in the DB at the time of setting the data source to the Field in the UI.
    Actually if u add a header filed to the DB it pops up on the User-Fields Form i guess u can use it as no extra code is needed. To view the UDF form VIEW--User Defined Fields.
    Hope it helps,
    Vasu Natari.

  • Authorization to disable SAP Inbox Forward function for specific Work Items

    Hi.
    I recently solved a case for a customer of mine regarding authorizations for work items. They have several workflows running, but for this specific custom developed workflow, users should not be allowed to use the SAP Inbox Forward button.
    I started by creating a new task classification (Z_FW) which I implemented on the workflow tasks where the forward functionality should be disabled. Now for test purposes I created a dummy user which I initially gave only authorization to the tcode SBWP, then I manually added the authorization object S_WF_WI.
    For this entry I allowed all activities for work item type W and F for classification 1, 2, 3 and NO_CLASS (SAP Standard classification).
    Now to my understanding this would give the test user authorization to perform all activities on Work Items and Workflows which are classified with one of the above, but also prevent me from doing anything with Workflows and Work Items with classification Z_FW.
    However, to my surprise everything seems to work perfectly with just this entry. I am able to execute and forward work items with the standard classification, while I am able to execute, but not forward, work items with classification Z_FW.
    My intention was to add another entry for authorization object S_WF_WI, for classification Z_FW with all activities except forwarding. But when I tried that, the only change was that forwarding was enabled for the work items with classification Z_FW, which I didnu2019t want.
    Now can anyone explain to me why this is working? I am not too familiar with SAP Authorization as my area is mainly ABAP and WF, but his just does not seem logical.
    Hoping someone can give me an explanation....
    Thanks

    Does the standard function not do what you want?
    Task -> Additional data -> Agent Assignemt -> Maintain -> Attributes -> Forwarding not allowed.

  • Mass approval functionality for SRM work items

    Hi,
    We want to implement mass approval functionality for SRM workflow, so that any user is able to approve/reject multiple requests at one go through UWL.
    Please guide if it is possible to implement this functinality for task id TS40007952.
    Regards,
    Avantika

    Hi Avantika,
    The mass approval functionality can be implemented for simple workflow items which have decisions to complete the work item. (User Decision Type)
    In SAP Business Workflow, user can define a task as a decision task by assigning DECISION as the underlying business object type. The task definition allows user to create two or more decision options to complete the task.
    The idea is to simply create a custom view/subview for the UWL item and configure it according to your needs.
    Have a look at this blog:
    Mass/Batch Processing of Work items in UWL
    and also check the documentation:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/4e/72112bc9ea484196f2a5fdc68f5f5f/frameset.htm
    Let me know if you have any questions.
    Thanks,
    Shanti

  • Creating a report for linked work items...

    We are using TFS 2012 and need to create a report (either excel or SSRS) that shows all the user stories under the current sprint and any linked child items across two projects. I can do this easily per project in VS and open it in excel but excel won't
    let me copy/paste two projects work items in one spreadsheet. I tried searching and found a few suggestions but they don't seem to work.
    TIA,
    Vik

    Hi Vik,  
    Thanks for your post.
    We suggest you create a such report using TFS API. Please refer to below code snippet:
                TfsTeamProjectCollection tfs = new TfsTeamProjectCollection(new Uri("UrI"));
                tfs.EnsureAuthenticated();
                WorkItemStore workitemstore = tfs.GetService<WorkItemStore>();
                string wiql ="SELECT * FROM WorkItems WHERE [System.TeamProject] = 'TeamProject' ORDER BY [System.Id] ";
                WorkItemCollection wic = workitemstore.Query(wiql);
                foreach(WorkItem workitem in wic)
                if(workitem.Links.Count!=0)
                    foreach (Link link in workitem.Links)
                        RelatedLink relatedLink = link as RelatedLink;
                        if (relatedLink != null)
                            Console.WriteLine(relatedLink.RelatedWorkItemId);
    You can create your custom work item query to return all the parent work items, then save this query as a .wiq file in local path, then open this .wiq file and you will find the wiql string in it.
    For more information about work item query TFS API, please refer to:
    https://msdn.microsoft.com/en-us/library/bb130306.aspx.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Changing template for "email work item "

    Hi,
    TFS Web Access has the possibility to send the work item in an e-mail. (The enveloppe on action bar).
    By clicking on this Icon, a new window opens with some basic work item information.
    I suppose the content of the e-mail is based on a template.
    My question is: Is it possible to update this template (red box)?
    Jeppen Twitter: @DoSTHGreat

    Hi Jeppen, 
    Thanks for your post.
    As far as I know there’s no default way to change that template, please refer to the discussions in this similar post:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/2a63b27d-4bfd-413f-bff9-825d6bdc99fe/how-do-i-change-the-ides-send-work-item-to-outlook-email-template?forum=tfsworkitemtracking.
    But you can add the required column in work item query result, then select work item from query result to send email. Please refer to the workaround in this post:
    http://stackoverflow.com/questions/10518254/can-i-modify-the-email-thats-created-from-a-wi-when-i-click-the-send-work-item.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Query filter for linked work items by link type

    We are running TFS 2012. I am opening up my work item query in VS 2013 team explorer. I need to know how to write a query that allows me to filter OUT links of type "related" so that they don't show in the tree under the product backlog item in
    the sprint. Link Type is not one of the fields present in the query editor.
    Thanks.
    Stephanie

    Hi Stephanie,  
    Thanks for your post.
    All your participation and support are very important to build such harmonious/ pleasant / learning environment for MSDN community.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Version History for a Document Library - Can't view version history for only 1 item

    It is a Document Library with around 8 items. Each of the items have around 60-178 versions.
    I checked programmatically that this particular item had 63 versions.
    I am getting the foll. error when I try to view the version history for that 1 particular item.. it works for all other items in the same list.
    Unable to complete this operation.  Please contact your administrator.   at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileVersions(String bstrWebUrl, String bstrFileUrl, Object& pvarVersions, UInt32& pdwcVersions)
       at Microsoft.SharePoint.Library.SPRequest.GetFileVersions(String bstrWebUrl, String bstrFileUrl, Object& pvarVersions, UInt32& pdwcVersions)
    This is what I tried so far..
    I tried programmatically deleting few verisons for this item - no luck.
    I ended up deleting all the versions for this item - still I get the same error.
    I tried editing other items to see if their version history still works after new versions get added and it worked.
    This is despite the fact that other items that are working have number of versions  as 178, 130, 63 and so on.
    I appreciate any help.
    Thanks.

    Mike, 
     I don't think it is a programming question. It's a sharepoint browsing question.
    I have a document library with Versioning set to Create major versions.
    In that document library, I have around 8 documents, each of which has versions. Only for 1 particular document, when I try to see the versions by clicking 'Version History', I get the error as stated above.
    For all other documents, Version history works.
    My initial thought was that may be the document in question had too many versions and that's why it's failing but I was able to check that the document (in question) had 63 versions while there are still other documents in the same list which has 178 versions and 'Version History' is still working.
    I further explained all my efforts done so far in order to resolve this issue (none of which worked.)
    I deleted all versions (I couldn't delete it from IE since I can't even get to the page where it says 'Delete All Versions' - thus I wrote a small program to delete all versions for this document.)
    I also tried modifying other documents to see if a version history is being created for other documents and that is happening.
    Thanking you in anticipation..

  • How can I specify an area path for the work item created on build failure?

    In our department we are working with multiple build definitions for different parts of one Team project. We heavily use the Team Project feature. Teams are defined by area path nodes, so each team can only see it's area path. No one (except the admins)
    can see the root project node.
    When a build breaks, TFS generates a Bug. Unfortunately, this bug is assigned to the area path root node, so nobody can see the generated bug and act on it.
    We would prefer to specify the area path for the generated work item in the build definition (not template, but property of a build definition), as every build belongs exclusively to one team.
    I have found that you can populate fields of the generated work item by filling the "custom fields" of the "create work item" activity. But how do I set the area path as a parameter?
    Guenter

    Hi Cuenter, 
    Thanks for your post.
    You should set the value like below in that activity:
    New
    Dictionary(Of
    String,
    String)
    From {{"Area
    Path",
    "teamprojectname\areaname"}}
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to go for print preview option for locked/blocked items in PO.

    Dear all,
    Can we view PO even all the line items or some items in that PO are locked or blocked, by clicking Print preview button. If not by that button, is there any other way to view locked/blocked items in Print Preview format.
    Can anybody suggest me on this ?
    Thanks
    Hemanth

    Hi,
    Its not possible to see the line item in the print preview if it is blocked...
    You can only display in the PO only...why do you need Print preview of blocked items??
    Added on :
    You can check these locked details in the EKKO and EKPO table in the SE16 tcode for the respective PO and can also download the details if req. from the same table..
    Hope it helps..
    Regards
    Priyanka.P

  • SSRS Report for Incidents/Work Items Created or Closed over time

    I'm curious if anyone has developed a custom report based off the DWDataMart that displays the count for creation of incidents or other work items over time or work items that are closed over time.

    Hi Jon,
    There is a blog, which talks about in detail regarding SCSM reporting,
    http://scug.be/scsm/2012/04/10/working-with-scsm-reporting/
    However related to your queries please refer to this,
    http://blogs.technet.com/b/servicemanager/archive/2010/04/23/how-to-create-a-custom-report-and-display-it-in-the-console.aspx
    Thanks,
    Mohammad.
    -Zakir, Let us know if the answer/post helps you :)

  • Pulling Multiple Approver Names from Workflow Logs for One Work Item

    I have a workflow design which requires multiple approvals per single work item.  I happen to have another functional design that is also pulling data from those same workflow logs.  Assuming I have multiple approvals at various levels for a single work item which table do I need to reference along with which fields to reference the different approvers per level of approval?

    Hello,
    The same tables. The principle is the same, just more agents.
    regards
    Rick Bakker
    Hanabi Technology

  • Does apple provide payment plan options for service work?

    Hi,
    My macbook pro has recently died. I believe it is something to do with the Login Board or display issues.
    I have been quoted quite a large amount for the fix. I am wondering if Apple provide payment plan options for services?
    This is my work computer so I need it serviced ASAP but cannot afford the quoted amount!
    Thanks crew

    Apple does not have financing programs for service work, only for new purchases. An independent authorized service center might, but it's unlikely. You can contact service centers in your area and ask, though. Service centers can be located through this page:
    https://locate.apple.com/country
    Or you can look into financing a new Mac, as seventy-one suggested.
    Regards.

  • Need help in getting proposed approvers for a work item

    Hi All,
        We are trying to get the proposed approvers and the actual approver details for a particular work item.
    Before the work item is actioned we are able to see all the proposed agents for that particular work item.
    But once that work item is actioned then only the agen who has actioned on the work item is appearing in the list. All other agents are not appearing.
    For this we are using the FM BBP_WFL_DIN_APPR_WORKFLOW_GET.
    We have also tried some other FM's and tables, but none of them were helpfull.
    Please let us know if you know any table or FM or class which we can use to get these details.
    Scenario:
    Work Item: 12345    
    Before action on the work item
    Possible(Proposed) agents: Agent 1, Agent 2, Agent 3.
    Actual Agent: blank
    What we want, after action on the work item if "Agent 2" acts on that item.
    Possible(Proposed) agents: Agent 1, Agent 2, Agent 3.
    Actual Agent: Agent 2
    But what we are get is:
    Possible(Proposed) agents: Agent 2.
    Actual Agent: Agent 2
    Thanks a lot.
    Regards,
    Kranthi.

    Hi,
    What did you draw those lines with ???? Just a drawLine() command ????
    If so, it is very difficult to track the exact mouse coordinates that correspond to a click at a particular place and then place an 'X' or an 'O' there !!!!
    Try implementing it with 9 Buttons placed at those specific positions. In this case, it will be very simple to track the user's input when he clicks on any of those buttons...the implementation will become really simpler.
    Check it out !

Maybe you are looking for

  • Payments from Greece with Visa

    My Visa I used to make payments for games or PS plus membership is not accepted any more. I tried to assosiate my PayPal account but with no results. Is it because of the Capital Control that is taking place in my country the last 7 days or is it som

  • How to obtain oracle lite polite jdbc driver

    Hi I have an old project which I need to compile. However this project imports oracle.lite.poljdbc.OracleCallableStatement and oracle.lite.poljdbc.OracleResultSet. Where can I obtain a zip/jar/exe that contains these classes? Or if they are obsolete,

  • Managed Folder linked to Entire Mailbox

    Hello I have an Exchange 2010 SP1 with Managed Folder Mailbox Policy configured to some users. It's configured to link with Inbox, Sent items,... and Entire Mailbox.I believe that due to the "Entire Mailbox" link it is deleting old contacts too. Cons

  • When do I use unary plus operator?

    When would I ever use the unary plus operator? It seems to me to be a pointless operation since +x never changes the value of x.                                                                                                                          

  • Scratch files and QT player

    I sent .mov files directly from capture scratch folder for a client to review. He sez that when he opened in his QT®player he got a message that "more software may be required". It opens in my QT player fine. He is a windows guy. Assuming he is up to