Human task is automatically coming back to Suspended state from Resume

All,
We are using soa 10133.
We have a suspended human task. We are logging as bpeladmin and resuming it
in few minutes task is coming back to suspended state automatically.
Any help please ?
Regards,
Praveen

Hi
I gto the resolution.
This is not something done by BPEL PM
This is the business logic built.
Thanks,
Praveen

Similar Messages

  • How to delete a junk mail that keeps coming back after deleting it from the junk box?

    I have a junk mail from February that I really want to delete but it keeps coming back after deleting it several times. It comes back in the junk mail as 'read'.
    How should I remove it?
    Thanks for your help in advance!

    If the email provider is Google, try going to the gmail web portal, (log on from a computer or your iPad using safari), and manually delete the contents of your junk and trash.
    I did this today, and the reappearing junk has not (as of yet) reappeared.  Knocking on wood.

  • Monitor not coming back after suspend

    I have an i686 installation and I'm running enlightenment (e16) on it. 
    I have modified /etc/acpi/handler.sh to contain:
    case "$1" in
        button/power)
            case "$2" in
                PWRF)   /usr/sbin/pm-suspend ;;
    and used visudo to give my user permission to run pm-suspend.
    It sleeps fine with either the hal method or the pm-suspend method.
    When I hit the power button the computer wakes up but the monitor doesn't come back ever.
    I created /etc/pm/sleep.d/02hal as discussed in
    http://wiki.archlinux.org/index.php/Pm- … _on_resume
    but that didn't help.
    Does anyone know a fix?  Thank you.
    Last edited by kekules_dream (2010-09-06 21:00:07)

    I installed kernal26-lts and the monitor comes back on now after a suspend.  I guess some how there was a regression in the kernel.

  • Coming back to the Transaction from a User Exit

    Hi,
    I perform some checks in a User-Exit before saving a transaction & throw an error message if something is not proper. But, the transaction terminates after that. I need to give the user an option to make changes in the transaction. eg, if user exit checks if a certain field should not be empty, the user should have an option to enter the field after the user exit throws the message. How can i go back to the same screen from the exit to achieve the same.
    Thanks in advance.
    Bikash
    This was for a general scenario wherein after an error message triggered by an Exit is displayed, the transaction just terminates.
    Message was edited by: Bikash  Agarwal

    Hi,
    If you give error message, it will leave the current transaction.
    Instead try using some POPUP function module, which will have options 'OK' and 'CANCEL'.
    If user presses 'OK', then allow user to do modifications and if he presses 'CANCEL', then write LEAVE PROGRAM to come out of transaction.
    Hope it helps.
    Regards,
    Shashank

  • Just got my iphone 5s and tried to restore backup from my iphone 4.  When I restored it, it automatically went back to the backup from 2013

    Never gave me an option to restore from the backup I did last night.  Now I want to restart and just start over from the settings I had when I purchased it this afternoon. The old backup looks outdated and only transferred over certain info, no apps. Please help!!!

    There is no other backup listed though. That's the problem. The only one I can choose from is from last year when I am a thousand percent confident I backed it up the other night.  Not only did I do it through itunes, but I also backed it up via the icloud.
    Other than keeping my contacts, I don't care about losing what is on the backup from last year if I can't restore it to something sooner. I would rather have the settings it came with when I purchased the phone yesterday.

  • How to map payload from Human Task to BPEL

    Hi,
    I have created a human task form for which I send two parameters from the BPEL process.
    The user is able to update the fields containing the sent parameters and then click 'APPROVE' or 'REJECT'. However, I need the values of the updated fields to be returned and not the 'APPROVE' or 'REJECT strings.
    Can anybody help me with this?
    Alex

    Hi Alex,
    If you checked the Editable via worklistapp box then you dont need to update the values.
    These values automatically update the values of these parameters in human task if you properly mapped the values.
    Regards,
    Priyanka

  • Classes generated for Human Task UI

    Hi All,
    I created ADF UI out of a human task (using Automatically generate form option). After generating, I can see lot of .xml files under the HumanTaskForm package, in the newly generated project. I would like to know the way in which these classes (Java Bean) are generated under the HumanTaskForm package.
    Also, when I update some values in the UI page at runtime, I am able to see the change , in the response message of the HumanTask. I would like to know, from where the binding information come from, for those UI components, so that they are able to update!
    Kindly give me some good documents that would explain me regarding the bean classes generated for HumanTask.
    When I searched for the same, I could get the documents regarding the configuration of Human Task only. I need information regarding the Bean classes for Human Task.
    Thanks,
    Sabarisri. N

    Please post on the Jdeveloper and ADF Forum where you will get more help
    JDeveloper and ADF

  • Bpel human task custom jsp not run

    hi i am use bpel 10.1.3.1 and oas 10.1.3 made a simple bpel process with a human task but the custom jsp generated not run from the url , and i recieve that message
    "Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response"

    The issue was with the way I was passing parameters. I was passing the the task namespace in update mode which is not required.

  • Accessing output variables from human task

    Hi,
    I added a human task in my process (jdev 10.1.3) and set up a parameter to be an input field in the jsp. However, I could not find a way to copy the value from this particular variable even though this parameter is a child of payload. Do I have to define the query manually or did I miss something?
    Thank you for advice,
    Mirco

    Ok, I crosschecked the examples and it seems, that there is indeed an example for what I am looking for. In the LoanPlusDemo there is a StarLoan process and that contains the following assignment following a human task:
    <sequence id="BpSeq3" >
    <assign id="BpAss4" >
    <copy>
    <from variable="LoanApproval_globalVariable" part="payload" query="/task:task/task:payload/auto:loan"/>
    <to variable="loan" query="/auto:loan"/>
    </copy>
    </assign>
    </sequence>
    Now considering the input structure:
    <task>
    <title>Loan application for</title>
    <payload>
         <loan>
         <loanApplication>
    <ns1:SSN>123222</ns1:SSN>
    <ns1:email>[email protected]</ns1:email>
    <ns1:customerName/>
    <ns1:loanAmount/>
    <ns1:carModel/>
    <ns1:carYear/>
    <ns1:creditRating/>
    </loanApplication>

         <loanOffer>
    <providerName>Star Loan</providerName>
    <selected>false</selected>
    <approved>false</approved>
    <APR>47</APR>
    </loanOffer>
    </loan>
    </payload>
    How do you know how exactly to create the copy rules? JDev does not support this, that much was answered before. I would absolutely appreciate if someone could
    1. Tell me something about the namespaces in the copy rules e.g. why is it /auto:loan and not just /loan?
    2. An example on how to create such things.
    One of the two might be sufficient.
    Thank you.
    Hinrich
    Message was edited by:
    punkrock77

  • Human task flow call back events with external web service

    Hi All,
    I have a requirement to call webservice inside human task flow. I have three participant in my human task flow. Let suppose A, B and C. When A approves then task will be assigned to B and when B approves it will go for C.
    My requirement is that, when A approves , then i need to call one external webservice to update database. For this i have enabled call back events from human task flow.
    In this way i got while loop inside my BPEL. In onTaskAssigned operation i am now trying to call external web service. My requriment is to call external service and get data from service. After getting response from the webservice, i want to assign it to next participant.
    But in this case, when user B approves, it goes to onTaskAssigned block and i am able to make external web service also but mean time, it has been assigned to User C which i do not want.
    I want Human task flow to wait for the web service response then only assign it to next participant.
    Please help.
    Regards,
    Sunil

    Hi Sunil
    Have you tried using WebServices Adapter. The usecase seems pretty straight forward. You have a WebService that has some code and some Operations to update some Database. First thing, I hope you have methods/Operations defined with request and response xsd for each operation.
    Now you define the main master payload, that should have all elements specific to your process and also few elements to store the output coming from each operation. Because response of each operation may need to go to other Task and get saved in the Payload also.
    You have like 3 Tasks. To complicate, I will assume that each Task can either Approve or Reject. And last 2 Tasks gets data from payload, previous task and also output from the WebService Operation (method).
    Task A -> Xor Gateway (Approve/Reject) -> If Approve -> Call WebServices Adapter -> Task B -> Xor Gateway(...) -> ......
    At each intersection, you can map the attributes for incoming and outgoing. Based on WebServices output also, you can have Another XOR Gateway and decide to send to Task B or do something else. So combinations of outputs of each service (task or webservice adapter) and XOR gateways, you can have a decent control on the overall flow.
    Note: I am hoping the webservices is Synchronous where you get the response immediately.
    Let me know if I am missing something.
    Thanks
    Ravi Jegga

  • Human Task - How to cause expiration of a task after SUSPEND

    Hello,
    This is a very simple question, but i don't know how to do this.
    I'm using the web services in bpel for manipulate the task.
    i invoke the operation suspendTask, it works success, but now i want set the expiration date time for 5 minutes for example.
    1) - I tried to call the method updateTask setting the expiration datetime attribute AFTER SUSPEND task, but i get this error:
    ORABPEL-10206
    Error in retrieving task metadata.
    Error in retrieving task metadata because the task is  no longer valid.
    Only valid tasks can by looked up.
    2) If i try to call updateTask operation BEFORE SUSPEND task, i getting this error:
    java.sql.SQLException: ORA-20005: Task is modified
    ORA-06512: at "CCEEDEV_SOAINFRA.WFTASKPKG_111120", line 2455
    ORA-20005:
    ORA-06512: at line 1
    My question, it is possible expirate tasks that have the status SUSPEND ? If yes, how to do this ?
    Thanks
    Victor Jabur
    Edited by: victorjabur on Aug 13, 2010 7:21 AM

    Hi Victor,
    I am Quite new to Oralce BPM/BPEL 11g, In my project I also need to update the task for expiration datetime but not after suspending the task rather before moving to next human task based on some condition.
    It would be great if you could give me the sample code to perform the same if its working with you.
    Regards,
    PK

  • How to change Human Task state from "Completed" back to "Assigned"

    I am working with human task through BPEL Worklist API
    There is Human Task with state “completed”. We need to change the state back to “Assigned”
    In other words or get this task with “Assigned” state or get exactly the same task with the same number (that I can use as int parameter in ITaskQueryService.getTaskDetailsByNumber method invocation) .
    Is it possible?
    I tried to use ITaskService methods but without results.
    Thanks.

    Hi ,
    This request sits in table RSBKREQUEST with processing type as 2 in data elements USTATE, TSTATE and this 2 is actually "Processed Successfully" status which is obviously wrong.
    All we need is, ask your basis person to change the status to 3 in both these data elements.Then you can delete the previous bad request . Once the request is deleted, the request status gets updated as "4" in table RSBKREQUEST.
    For manually status change you can use the function  module RSBM_GUI_CHANGE_USTATE
    Hope this helps you...
    Regards,
    Debjani...

  • Top right hand of task bar icons keep disappearing and coming back. I cannot click on any of them as they just go. Also I cannot take screenshots any more. Macbook pro 2007 OSX Snow Leopard

    Top right hand of task bar icons keep disappearing and coming back. I cannot click on any of them as they just go. Also I cannot take screenshots any more. Macbook pro 2007 OSX Snow Leopard. Anybody any idea what is occurring?

    These Steps should resolve your issue
    Step by Step to fix your Mac
    If you don't have a backup of your data off the machine
    Most commonly used backup methods
    If you can't boot the machine and need to get data off it
    Create a data recovery/undelete external boot drive
    Your options for data recovery
    My computer is dead, is my personal data lost?
    Secure data removal
    How do I securely delete data from the machine?
    More:
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents#/

  • Suspend timers on human task

    Hi,
    I am using suspendTask operation available on TaskService Web Service to programmatically suspend human tasks from ADF. It is working fine. The problem is that, i have a timer on that human task which is of interrupting type. Now, this timer triggers after a specified time even if the human task is in suspended state.
    This makes me believe that timer does not differentiate suspended and assigned tasks. Unfortunately, the documentation does not detail out the behavior.
    I tried using suspendTimers operation available on same TaskService. Even after firing this operation for a particular taskId, the timer gets triggered.
    Has anyone experienced this scenario?
    Any pointers/ suggestions will help.
    Many thanks in advance.
    Regards,
    Sai

    Update -
    I am able to reproduce the issue using simple human tasks with timer on one of the human task. I suspended the human task using BPM workspace. Still the timer on the suspended human task fires based on the setting of the timer. Is this expected behavior or am i hitting some kind of bug?
    Attached sample with which i reproduced the issue.
    Request any one who is aware of this issue to provide me with some pointers.
    Regards,
    Sai

  • Can Automatic stacking of files coming back in from PS be disabled?

    When I send a DNG file to PSCS4 with the "edit in PS" command in LR (2.3) and then finish with the new file in PS and save it as a PSD, it gets automatically put back in LR just fine. BUT I notice that it is always stacked with the original DNG file (in the open stack configuration). I would like it to be NOT stacked at all and just organized according to file name.
    Can this automatic stacking be turned off? I can't seem to find the answer anywhere. Thanks in advance.
    Scott

    When I open up a DNG file in LR 2.3 it opens directly in PS WITHOUT going through Camera raw and has all of the adjustments I have made to it in LR, thus it would seem to me that LR is the Raw Converter that is doing the work. I never see the Camera Raw dialog box/controls, but I always see all the adjustments that I have made in LR before sending the file off to PS.
    This experience seems to contradict what you have said.
    Can you help me understand this further?
    I appreciate that it isn't obvious, but when you choose Edit in Photoshop CS4 (Ctrl/Cmd+E) in Lr2.x the DNG file is sent directly to Photoshop and processed by Camera Raw in the background. The converted file is not saved at that point but instead exists solely in RAM until saved in Photoshop. However, when you configure Lr2.3 to use Photoshop CS4 as an additional external editor the DNG file will be processed by Lr and the converted TIFF/PSD is saved before being sent to Photoshop.

Maybe you are looking for

  • BPS/Web: 'Your previous query is still being processed'

    Hi, One of our users get the following message when clicking on a page link in a BPS web application we designed: 'Your previous query is still being processed'. The user is only clicking once on the link and gets in an endless loop (when monitoring

  • Change of user

    Hi, I've recently purchased a second-hand Palm Z22 and have already used it to store data. When I went on my pc to synchronize I found there was already a user there. I have set up a new username but all the info is stored under the old username. How

  • Shared Folder Read Status

    I have a couple mailboxes setup for dealing with customers, and they're shared to several sales reps. They work in that the reps can see them, and read/delete the mail. If RepA sees/reads the piece of mail they're responsible for handling it. It mark

  • I am unable to pan my view using my magic mouse in maya.

    i am unable to pan my view using my magic mouse in maya. panning needs a middle mouse button and there is no middle mouse button in magic mouse. scrolling sideways or up and down only zooms in and out. please help.

  • FP not working on Mac 10.7.5

    Flash player was working fine on my computer until a few weeks ago and now every time I try to upload photos to any website it gives me a plug-in failure. I tried uninstalling and then installing a previous version but that isn't working either.