Confirm end of processing check box in task

Hi,
In my workflow used fork with 2 parallel branches.
In one branch is a dialog activity step ( sending doc to incorportaors for review -  checked the confirm end of processing checkbox in the task )
and in the other branch is a 'Wait for Event' step ( wait for rejection - when status getting changes to 32).
when executing dialog activity with confirm end of processing,branch 1 wait step workitem is getting completed and branch 2 workitem is logically getting deleted and further step in the workflow is not executed in branch 2.
Same changes I am trying to do without confirm end of processing pop up.When I uncheck the check box and execute the dialog activity, branch 1 wait step workitem is getting completed and branch 2 workitem is also getting completed ( instead logically getting deleted ) and further step in the workflow is executed in branch 2. I dont want the remaining step to get executed.
Please let me know how to achieve this. I tried with some function module but its not working.
In the attached file, I have shown the screenshot where it is going wrong.
Thanks & Regards,
Priya

Hi Priya
Both steps (in both branches) are getting executed by the same activity by the user. Yes, it's a race as correctly mentioned by Mike
As mentioned by Prakash, either you need to restrict REJECTION event creation or you can try an approach mentioned in the following thread:
Re: TRIP Workflow approval issue
You can refer to my response in the above thread:
Dated: Feb 26, 2014 (10:25AM) and Feb 26, 2014 (12:59PM)
Regards,
Modak

Similar Messages

  • Confirm end of processing of workflow in ESS

    Hi everyone,
      i am facing a problem in the description of a workflow step that is shown in its confirm end of processing dialog box.In R/3 the confirm end of processing dialog box contains the task desciption but in ESS the same dialog box does not display the description text.
       Can anyone give me a solution to display this text in the confirm end of processing dialog box when work item is executed in ESS.
    Regards,
    Kajal

    In that case it is not required.
    Check in QA for all workflows where this dialog task is appearing to see that it has taken new definition (in workflow template definition) .
    One more thought .. did you created new dialog work item and checked that for that work item confirm end of processing dialog box is coming up or it is coming for those work items only which has been created earlier.
    At last I would suggest re transport it and then do SYNC.
    Cheers
    Jai
    PS: Which SAP version r u in?
    Check OSS 699514, might be useful for you.

  • Retain item in Inbox and confirm end of processing

    HI All,
    I am trying to implement retaining item in inbox if user selects to cancel. I was told confirm end of processing is best otpion, when I try to change the task using pftc it still shows the confirm end of processing and background processing as greyed out.
    First question will be if it is foreground processing and honest answer is I dont know, however I assume that since we open invoices and access it from inbox, it is foreground processing item.
    Can you please advise ?
    thanks,
    RS

    Hi Reena,
    to find out if it's a foreground(Dialog) task or not, go to the task (PFTC) and see below the Method. If it says "Object method with Dialog", then its a foreground or dialog task. that means, a user intervention is required to execute this method. Another way, is go the method & BO in SWO1 and dblclick on the method. IF the Dialog check box is checked, then its a dialog task.
    And, in the invoices, if you  are using FIPP or BUS2081.CHANGE method, then,its a dialog task.
    Hope this helps
    venu

  • How to process check box in classical ALV

    Hi,
    I have one requirement wherein I am using  Reuse_ALV_GRID_DISPLAY..I have a checkbox as a field and I have a push button as UPDATE...
    If I select the rows in the ALV list using checkbox and if i click  the Update button, I have to continue processing based on the checked rows..how will i capture the rows which are selected in ALV list...
    Thanks in Adavance,
    Saranya.

    Hi Saranya
    Plz try the following logic.
    " Display data on the screen
    " Alternative to it u can display the data usign REUSE_ALV_LIST_DISPLAY  
    " FM as well
    Data : len type i .
    loop at itab.     "  contains data to b displayed
      write : / a as checkbox,itab-<f1>,itab-<f2>,...........,itab-<fn>.
    endloop.
    describe table itab lines len.
    at line-selection.
      do len times.
        read line sy-index  field value a itab-<f1>,  itab-<f2>,...........,itab-<fn>.
        if a = 'X'.
          write : /5  itab-<f1>,  itab-<f2>,...........,itab-<fn>.
        endif.
      enddo.
    Plz try this and revert in case of issues .
    Regards
    Pankaj

  • When I enter the website, Firefox stops responding and I have to end the process from the Task Manager. How do I solve this problem?

    I am running Firefox 4.0 beta 7 on Windows XP Tablet Edition OS. When I enter this site using Firefox, the browser stops responding and I have to end the process using Task Manager. However, when I open it with other browsers such as IE8, I am able to view the site as per normal. This only happened when I updated my browser to Beta 7 and I did not have such problems in the previous betas.

    There is [[Flash]] content on that page.
    Do you have a problem with Flash on other websites?
    Create a new profile as a test to check if your current profile is causing the problems.
    See [[Basic Troubleshooting#Make_a_new_profile|Basic Troubleshooting&#58; Make a new profile]]
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Need to pass value from check box to the pl/sql function in process

    My requirement is to use single value check box and pass the flag value to the pl/sql function.
    The function need to interpret the flag and execute accordingly.
    In this case checkbox name is P1_DELETE and it returns Delete, if checked.
    Anonymous block with in the process looks as follows:
    declare
    l_result VARCHAR2(1024);
    begin
    l_result := test_function(:P1_DELETE);
    end;

    Hi Visu,
    checkboxes in APEX are handled as arrays, namely APEX_APPLICATION_GLOBAL.VC_ARR2. To pass and process the checked values of checkboxes in a pl/sql function or procedure you could use the following way, assuming you have a checkbox named P1_DELETE with a single return value of "Delete"
    DECLARE
        l_checkbox_values apex_application_global.vc_arr2;
    BEGIN
        l_checkbox := :P1_DELETE;
        -- calling function test_function processing the value
        test_function(NVL(l_checkbox(1), 'SOME_OTHER_VALUE'));
    END;If the checkbox is not checked then the array at position 1 is null and you have to process that as you like.
    If your checkbox would be a group than the array would be colon separated such as 1:2:3:4 etc. and you would have to loop the array like:
        FOR idx IN 1..l_checkbox.COUNT LOOP
            test_function(l_checkbox(idx));
        END LOOP;Hope that helps.
    Andreas

  • Process to get info from Multiple textboxes and check boxes on a page

    Hi,
    Could you help me with setting up a process which selects the data from multiple textboxes and checkboxes on a page and should be pointing to a single table in the database.
    Thanks in advance,
    Verity.

    Thanks Peter for the reply,
    Actually the problem is, there are lot of check boxes. And process should be like when a user clicks on, say 7 out of 10 checkboxes, only those values needs to be inserted in a table in database. Actually my "insert all" statement is inserting 7 values and also the other three values as null. I tried insert with 'when' and 'if' but didnt get through. my sample insert statement is as follows. Could you help me here.
    DECLARE
    BEGIN
    insert all
    when (:P1_POT='PT') then
    into TABLENAME
    (oid,year, code)
    values
    (:F1_ID, :F1_YEAR, :P1_HR)
    when (:P1_HOL='SC')
    then into TABLENAME
    (OID, year,code)
    values
    (:F1_ID, :F1_YEAR, :P1_SD)
    select oid,year,code from TABLENAME;
    END;

  • Firefox won't start. Everytime I end the process/close the last window, it keeps getting stuck at about 2500k memory in the task manager. (continued)

    Firefox won't start. Everytime I end the process/close the last window, it keeps getting stuck at about 2500k memory in the task manager. The only way I have to fix it is to change some kind of compability settings or try and access it in a new way, and every time it crashes/closed/computer blue screens that setting will no longer work.
    That is a short term solution, but eventually I'll run out of ways to access firefox successfully. I've tried many solutions, and some worked, but only once. I have yet to find a permanent solution for this problem.

    First please update your plugins to make sure you are up to date. Shockwave Flash player has a newer version 16. In order to better manage the memory that Firefox uses please see these troubleshooting steps: [https://support.mozilla.org/en-US/kb/firefox-uses-too-much-memory-ram Firefox Uses too much RAM]
    You also mentioned that Firefox crashes, we're sorry to hear that Firefox is crashing. In order to assist you better, please follow the steps below to provide us crash IDs to help us learn more about your crash.
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and then go back to your forum question and paste those IDs into the "Post a Reply" box.
    ''' Note:''' If a recent Report ID does not start with '''bp-''' click on it and select '''Submit'''.
    (Please don't take a screenshot of your crashes, just copy and paste the IDs. The below image is just an example of what your Firefox screen should look like.)
    ;[[Image:aboutcrashesFx29|width=500]]
    Thank you for your help!
    More information and further troubleshooting steps can be found in the [[Firefox crashes - Troubleshoot, prevent and get help fixing crashes]] article.

  • Firefox does not close in the normal fashion. I have to go to Task Manager and end the process

    I am operating on a Windows XP OS. I have been a FireFox user for several years. I am using version 3.6.13 Several months ago I noticed that if I closed FireFox I could not open it again. I got a message box stating that FireFox was still running. And, I fact, Task Manager did show that it was still active. I had to end the process there, before I could open FireFox again. It will remain active in the background and the CPU will be maxed out, thus creating problems for other programs. How can I remedy this problem? btw, I have trouble opening IE now.

    https://support.mozilla.com/en-US/kb/Firefox%20hangs#w_hang-at-exit

  • As soon as Firefox opens, it starts increasing memory usage until it maxes out, and it won't actually close unless I end the process in the task manager.

    Even if I'm not doing anything, no matter how few tabs I have open, Firefox will slowly increase in memory (RAM) usage until it's using nearly 100% of my computer's RAM, and everything basically freezes. Even when I close the window, the process continues to run, and I have to end the process in the task manager in order to get it to stop using RAM. I've tried disabling all my add-ons, and that does not help.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to Prepopulate check boxes in the process form

    Hi All,
    I need to prepopulate "Change Password at next login" in the AD Process Form. i.e. if some one select this check box in the user creation form and create a user, i need to prepopulate it in the AD process Form. Currently, it is not prepopulated. So, it is not updated on the Active Directory. I'm using AD Connector pack 9.1.1 .
    I need to prepopulate the "User must change the password at next logon" check box in the AD Process Form. I have done the prepopulate on text fields. They are working fine.
    But, stuck with this check box prepopulation.....
    Can anyone help me on this issue....
    Regards,
    Chaturanga
    Edited by: chaturanga on Sep 9, 2009 2:35 PM

    Even if you get the checkbox right it is not entirely clear that the connector will read the box correctly. It all depends on how the connector code was written.
    An alternative is to set the LDAP attribute through a custom connector. Email me if you want example code for this.
    Best regards
    -Martin

  • How to Check LT check box in IA02 - for Long text for Equipment Task list operations

    Hi Experts,
    I am trying to upload text for Equipment task list,i am able to upload texts at header,but not for operations.
    At operations level - we have a check box LT which is grayed out - when am manually making an entry ( LT Check box -  is getting checked when am creating entry manually ) - after manual entry - when i tried uploading text is working fine.
    Can someone please tell me how to get the check box - checked - while saving text - using FM : SAVE_TEXT .
    Cheers,
    Rali K

    Try this:
    function findNodes(vNode){
         if (vNode.className === "field"){
              if (vNode.isPropertySpecified("name")===true){
                   var myStateName=new RegExp(vNode.name);
                   var returnValue = GFL.search(myStateName);
                   if (returnValue!=-1){
                        this.ui.oneOfChild.border.fill.color.value="192,192,192";
                        this.access="readOnly";
                   else{  
                        this.ui.oneOfChild.border.fill.color.value="255,255,255";//whatever colour is open access
                        this.access="open";
         for (var a=0;a<vNode.nodes.length;a++){
              findNodes(vNode.nodes.item(a));
    findNodes(xfa.form);
    Kyle

  • Whenever I shut down iTunes on my computer, it keeps reopening and I have to go into Task Manager and end the process in order for it to stop doing this. I am running it on a Windows 7 Home Premium 64 bit machine.

    Whenever I shutdown iTunes on my computer, it keeps re-opening and I have to go to Task Manager and end the process in order for it to shutdown.

    Do you have Logitech gaming software installed on the PC? If so, perhaps try the suggestion from the following post:
    Re: Everytime I close Itunes it loads back up

  • Task check box shaded dark grey

    This is a very bizarre issue I just noticed after the recent December updates to SharePoint 2013. We have Project Server 2013 running in our deployment of SharePoint 2013 and after this last set of updates for SharePoint 2013 all of the task check boxes
    in a project are a solid dark grey. When you click on one of the boxes to mark the task as completed, it just has a small amount of movement in the check box and remains a solid dark grey. Before the update the check boxes were normal and white and when you
    complete a task it would show the check mark in the box.
    Does anybody know why my task check boxes are like this, or has anybody seen this before? Not a show stopper, but a bit annoying.
    Thank you,
    D. Graf

    I've got the exact same issue, no idea what the cause is and this is the only thing I could find when searching for a solution.
    Did you manage to solve it?

  • When I close firefox I attempt to reopen, it wont load...looking in task manager shows it as a process, i need to, end the process to restart firefox, Why?

    when I start firefox, then close it..and attempt to restart it, I get a message that its loaded....but its not...but I see it as a process in task manager.I end the process..then start firefox again...........constant problem...............windows 7 system...8gb ram g4bit

    Hi Andis.
    First of all, this is completely normal behavior, although it's a bit irritating, I know. What happens is that when you close Firefox, despite the window disappearing right there and then, Firefox keeps running for a little bit until the whole closing procedure is completed. This can take a fraction of a second on fast computers, or can take a few seconds on slow computers or when Firefox is storing a large session (if you save your tabs). All you have to do is wait a bit until Firefox closes, and then open it again.
    To see if it's still running, you can press CTRL+SHIFT+ESC and then, under the Processes tab, you can see if firefox.exe is still there. If it's taking an unusual amount of time to close (which happens very rarely, and only if the browser freezes on exit), you can force the application to terminate from this application (task manager).
    Firefox 4.0 will reduce by 97% the time it takes firefox.exe to close, so this problem will be basically erased for Firefox's next version.
    Until then, I can recommend you this extension, which helps you restart your browser more easily and without bothering about closing times:
    https://addons.mozilla.org/en-US/firefox/addon/3559/
    Hopefully this will help.

Maybe you are looking for

  • Fatal error while running Test JSP in Jdeveloper

    Hi, After performing initial jdeveloper set ups when I run the test JSP i get following error It prompts about Port conflict. Upon clicking OK I get following error Fatal Error: Unable to write to the transaction log (/E:/p4045639_11i_generic/jdevhom

  • Creating Runnable Jar

    Hi, I made a simple program and I want to create a runnable jar.. I have a config file, How can I exclude the config file when I create runnable jar? so, i can be edited..

  • Is there any Way to find Which case is Executing in LabVIEW VI programmat​ically and Display it..

    Is there any Way to find Which case is Executing in LabVIEW VI programmatically and Display it.. Solved! Go to Solution.

  • Mailman Configuration

    I have OS 10.6 server hosting a website for the domain camp.org my email server is severing mail for the domain lionsclub.org. To access webmail and all my users have to go to camp.org/updates ect. No big deal. My mailing list is sending out emails w

  • Rman jobs "Suspended on Agent Unreachable"

    I don't know if this problem is coming from rman, EM, or jobs. The only time it occurs is when I create an "Oracle Recommended" backup job thorugh EM. The job status is immediately suspended with the message "agent unreachable." Other RMAN functions