Why has a Human Task only 1 UI?

A little more abstract / philosophical discussion.
I'm not really comfortable with the rigid "1 Human Task (HT) corresponds to 1 screen (UI)", although it will be all right for 90% of the time. Could be that the BPMN spec itself is to blame for this.
Some cases:
>1 Humans are coorperating on 1 Task.
1 Human has a UI open (on the computer screen) displaying multiple Tasks.
1 Human has UI open displaying multiple Process instances for which he is responsible and drills down to a Human Task in an instance that is being performed by one of his colleagues. He opens the same task in read-only mode.
1 Human is performer of Tasks in sequence ("Road Map" or Wizard control) and doesn't want to go back to the UWL all the time. He must be able to go back to a previous step (~task) though.
1 Human breaks off his current Task (saves his work so far), and continues working on the Task later on on his mobile device.
1 Human has a generic UI screen (portal) open, and a Process token just moved into a Human Task for that Human. He doesn't have to go back to the UWL, search for that task and open it, but sees a nice UI-overlay-effect of that Task (just the title, or instance), just as Outlook displays incoming messages.
1 Human who "owns" a Process instance, checks the state of the instance, notices that a subprocess within is in error (or takes too long), overrides that subprocess by doing work manually (rolling back the already completed activities within the subprocess), and providing the subprocess output.
What are your thoughts? Are these cases too far-fetched?

You now have 2 site. Your own and the one by your son.
Since your son published last, iWeb created an index.html file in the root of the server (iDisk>Web>Sites) to redirect to his site.
That file first redirected to your site, now it redirects to his.
To make it redirect to your site again, simply move one of your pages to the top of the list and back. iWeb now thinks your default page has changed and will create a new index.html file when you publish.
Make sure your son does not update his Site.
Other solution. Buy the Family pack and give each member of the family his/her own MMe account. They have to manage that acount from their own useraccount on a Mac. Otherwise everybody interferes with each other.

Similar Messages

  • Why isn't a CC one year membership good for a whole year?  Why has it died after only a few months?

    Why isn't a year's subscription good for a whole year?  Why has CC stopped updating photoshop?

    You have not provided any system information or other technical details, so we can't know anything. Update failures have nothing to do with your subscription status they just are what they are - technical issues on your system. If the sign in doesn't work, refer to this:
    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • Human Task and worklistapp

    Hi.
    SOA Suite 10.1.3.1.0
    If I create a blank BPEL process and add a human task (only modifications to the default settings is title and adding one assignee as username) the approval (or any outcome selection) of the task from the worklist application sometimes succeeds, but most of the time it fails.
    guess it has to be some kind of timeout issue... ?!
    any suggestions on this matter?
    tqx
    it actually says:
    An error occured while processing your request.
    An exception occurred during transaction completion: ; nested exception is: javax.transaction.RollbackException: Timed out.
    If you need more information, please check with your administrator with the following exception-identifier: "2007/10/12_07:48:02:921_wshake"
    Message was edited by:
    user598353

    did you create the bpel as asynchronous?

  • BPM 11G comments and file attachments issue on human tasks

    Hi all,
    We have used JDeveloper 11G and SOA suite 11G + BPM (with PS1,PS2) to create and deploy a simple BPM process. The process consists of two swim-lanes ( Business Analyst and Snr Executive). The BA swim-lane has a human task which which initiates the process and the second swim-lane (SE) has a voting task. Both forms were auto generated.
    ------ Process steps ----
    step 1. The initiator of the process( Business analyst) submits a document and adds comments on the form. (1st swim lane)
    step 2. The task is received by the Snr Executive group and they need to accept or reject the document.
    step 3. If any of the Snr Execs rejects the document, the process flow goes back to the Business analyst(the requester or initiator) for review.
    (the voting group is able to share comments and the file attachments).
    step 4. The business analyst receives a task on her list. This task list should have the comments made by the Snr Execs who rejected the document. ---This is where we are having a problem. The business Analyst, receives the task, but the document and comments are not updated. This still shows the original document and comments, she sent when initiating the process.
    We have opened a SR with My Oracle support and it was suggested we apply a hot fix 9958661, which was done (see output below). Unfortunately this did not solve the problem.
    Questions:
    1. Is the default behavior of BPM 11G ?
    2. How can we change this behavior to do what we want ?
    ---------------------------------------opatch update output -----------------------------------------------------------
    ApplySession adding interim patch '9958661' to inventory
    Verifying the update...
    Inventory check OK: Patch ID 9958661 is registered in Oracle Home inventory with proper meta-data.
    Files check OK: Files from Patch ID 9958661 are present in Oracle Home.
    The local system has been patched and can be restarted
    I any suggestions would be welcome.
    Thanks
    Mocheche

    Ok, this is what i did:
    - I have a Process Data Object called CustomComments with just 1 attribute called comments.
    - I have added that object to my user screens (adf page)
    - Changed its columns att to 65 and rows to 8 (i chose that layout)
    - Used a tableLayout to add an icon next to this text area to allow the user to add comments:
    <af:commandImageLink shortDesc="addCommentImage" id="addCommentImage" partialSubmit="true" icon="/hw_images/new_ena.png">
         <af:clientListener method="myFunction" type="click"/>
         <af:clientAttribute name="attributeName" value="attributeValue"/>
    </af:commandImageLink>
    I use that clientAttribute to send the logged user to the javascipt.
    - I added this after the af:document on top of the page to make the customComments readonly to the user (you need to do it here because if you set it in the properties the element is not updated later), so the user has to use the button i put to add comments:
    <f:facet name="metaContainer">
         <f:facet name="metaContainer">
         <af:resource type="javascript">
              function readOnly(){
                   var comms = document.getElementById("it1::content");
                   comms.setAttribute("readOnly","true")
         </af:resource>
    </f:facet>
    <af:clientListener method="readOnly" type="load"/>
    - Somewhere i added the javascript the commandLink calls:
    <trh:script id="myScripts">
         function addComment(evt){
              var commentArea = document.getElementById("it1::content");
    var user = evt.getSource().getProperty("user");
    var comm = prompt("Please enter your comment: ","");
              if (comm != null) {
                   if (comm != ""){
                        if (commentArea.value !=""){commentArea.value = commentArea.value + "\n"}
                        commentArea.value = commentArea.value + "user.value" + " : " + comm;
    </trh:script>
    After all this, you have an object that carries the comments from one screen (UI project) to another and is updated each time.
    I know it may not be the perfect solution and that it could be improved a lot, but so far it does what i need so i use it.
    If there is anything i wasnt clear enough, please let me know. Hope this helps.

  • Migrating 10g Human Task Bpel process to 11g - No task flow

    Hi All,
    I have migrated a bpel process that has a human task to 11g. I need to stipulate the uri so that it will show on the worklist.
    Apparently there is a file in the WEB-INF folder that i must reference. I went into the folder and there is many xml files(adfc-config.xml,faces-config.xml,trindad-config.xml, web.xml, weblogic.xml) there is no file generated from the migration. Hence how do i go about to get the correct uri and for the worklist to show.
    Below is an incomplete uri
    /workflow/ExceptionHandlerTaskForm//faces/adf.task-flow?_id=ExceptionHandler_WF_1_TaskFlow&_document=WEB-INF/

    failed to get solution

  • Human Task in jDeveloper 11g users list not available

    I have the problem, I defined SQL authenticator in wenlogic, and I want to do assignment at human task. But, human task only see jazn users, alhough I see the users defined in db at weblogic console
    Caused By: ORABPEL-10509
    User not found.
    User "bpmuser1" is not found in configuration "jazn.com"
    Check if the user exists in the repository specified by the configurations. Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
    at oracle.tip.pc.services.identity.jps.JpsProvider.lookupUser(JpsProvider.java:795)
    at oracle.tip.pc.services.identity.jps.AuthorizationServiceImpl.lookupUser(AuthorizationServiceImpl.java:223)
    at oracle.tip.pc.services.identity.jps.IdentityServiceImpl.lookupUser(IdentityServiceImpl.java:171)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.lookupUser(VerificationService.java:3670)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.c
    How do I make users from myrealm in WLS available to the worklist app?

    Hi ppssrr,
    Check the providers are in "SUFFICIENT" mode,both, DefaultAutenticator as your own.
    Other way:
    If I remember correctly, you can use "External Routing", creating an allocation rule from an external supplier.
    Then assign participant based on that rule as.
    More info: Configuring Human Tasks - 11g Release 1 (11.1.1.7)
    Greetings.

  • 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

  • Assign the next human task to the specific participant??

    If my process has two swam, the first swan has a Script Task, and the second swan has a human task. If I want the script task to update the participant for the next human task who will belong to the role, how can I do it? Can I do it on the over the xpath? Because each human task should belong to one of the specific people in the role to handle, I don't want to show it to all people who belong to same role in the workspace.

    In BPM 11g you can use xpath expression to assign users, groups, or roles. See this section in the docs:
    http://download.oracle.com/docs/cd/E21764_01/integration.1111/e10224/bp_hwfmodel.htm#BABGCCJA

  • Human Task Fails on SUBMIT

    Hi,
    My environment is a Windows-7 64 Bit machine and i am running the SOA stack 11.1.1.4.0
    I could successfully deploy a Hello World process which has a Human Task which has a Initiator UI. It shows up under the Applications link. When i hover on the "[HelloWorldProject] HelloWorldProcess v1.0" it shows the following http://localhost:7001 etc... on the bottom of the IE browser. However when i launch the task the link changes to include my machinename as shown in the link below. The form displays but when i SUBMIT ... it comes back with the page cannot be found.
    I have a mapping in my host file "127.0.0.1     MyMachineName"
    http://*MyMachineName*:7001/workflow/HelloWorld_UI/faces/adf.task-flow?_document=WEB-INF%2FSayHello_TaskFlow.xml&bpmWorklistLogin=login.jspx&tz=America%2FChicago&bpmWorklistContext=07e18d54-b240-4ac5-9a50-152ed8401968%3B%3B0fjwVB8w1%2F1CHa9Tv4WIk0yzhcs6FdClxOtXXNhzuwRX3trElq6anNHTn3ywD%2BND6ZXIkysOQDlrYvX5dK2qu6V6T458uY7Tzoo63AAgz7Pi%2BHhjtLD8xdnAB14FLVFCyiL38IQbE99ibg52i62EzvWwmN%2BVAhon%2F0Nd2vBZypNOW4v%2BJM5k9DAxytzTVZApmBALwrT549AYdgsdW5qCAtT9%2FxesdvTDVCoQ8zzaSYT0zGdq6FvDzUv2KQOikFjb&bpmWorklistTaskId=20e217f5-4458-4bac-b65e-255f87a16518&_id=SayHello_TaskFlow&lg=en&cy=US&bpmWorklistLogout=logout.jspx&bpmWorklistHttpURL=http%3A%2F%2Flocalhost%3A7001%2Fbpm%2Fworkspace&bpmBrowserWindowStatus=close&_afrLoop=12875320548488&_afrWindowMode=0&_afrWindowId=_appTaskForm
    Please advice.
    Thanks

    I could fix this problem by going to the following location
    Go to OEM, select the SOA Composite application you deployed.
    Under Component Metrics … click the link of the Human Workflow Component that you have the issue
    The settings of the Human Workflow Component would be displayed
    Click the Administration tab, you will get the URI setting for the human task
    update the Host name etc. as you want and click "OK" then click "Apply"
    This was suggested by a forum user who was having a similar issue.

  • Issue with 'Show approval controls in task details only' in Human Task

    Hi,
    In human task, for the approval controls / outcomes to be displayed only in the task details (Not in the task summary, actions menu), the below option was selected and it was working perfectly in SOA BPM worklist application (11.1.1.5.0). But when we migrate to 11.1.1.6.0, this was not working...
    Option to be selected: .task > Assignment > Configure Assignment > Assignment > Show approval control controls in task details only.
    We are anyhow planning to test in 11.1.1.7.0 also, but do anyone knows why its not working in 11.1.1.6.0?

    I'm facing the same issue in 11g PS5. Any update on this?

  • Is it possible to update the human task payload without using worklist API but only using advance routing rule.

    Hi,
    I have one human tasks in BPEL process in which i am using different stages and with using advance routing rules i am routing my task payload to one stage to another.My payload has Task Status and Branch,after approving the human task from first stage I want to send modified value of the Task Status to the next stage without using worklist API or manual updation but only using the advance routing rules,is it possible ??? If anyone have any idea about this than please enlight me with your valuable solutions and  advices...
    Thanx
    Regards
    Ajral

    Hi SamGoe,
    According to your description, my understanding is that you want to update the PoerPoint slide from SharePoint 2010 slide library automatically.
    It seems to be not necessary to use Macros. SharePoint provides an OOB way to notify you to check for update to the slide library slides when you open the presentation. PowerPoint does this because you selected the option
    Tell me when this slide changes when you copied the slides from the library.
    More information, please refer to the link below:
    http://office.microsoft.com/en-us/powerpoint-help/sharepoint-slide-libraries-ii-use-slides-in-the-library-RZ010254089.aspx?section=6
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to know which stage has been completed in Human task flow.

    Hi All,
    I have one human task flow where there is three participants. Participant A, B and C and all are in sequence.
    When User B approves the task, i need to do some business logic. when user B approves the task, it will be assigned to User C. I have defined call back events. There i can use task assigned condition to do my business logic.
    My question is that how i can get to know that Task assigned to user C. Because it is a call back event and will be triggered when it will be assigned to A or B. I have tried to user the function previousOutcomeUpdatedBy to check whether it previous user was B or not. but in my case it is coming as workflowsystem.
    instead of User B it is using workflowsystem
    User:workflowsystem; State:OUTCOME_UPDATED; Outcome:CONFIRM
    I am not aware, why workflow system is coming in picture.
    do any one idea, how to solve this use case.
    Regards,
    Sunil

    You can get the status from back end tables.
    Check in SOA INFRA tables. Below is the list of human work flow tables.
    WFTASK
    WFTASK_TL
    WFTASKHISTORY
    WFTASKHISTORY_TL
    WFCOMMENTS
    WFMESSAGEATTRIBUTE
    WFATTACHMENT
    WFASSIGNEE
    WFREVIEWER
    WFCOLLECTIONTARGET
    WFROUTINGSLIP
    WFNOTIFICATION
    WFNOTIFICATIONSTATUS
    BPELNOTIFICATION
    BPELNOTIFICATION_FILTERMSGS
    BPELNOTIFICATION_INVALADDRS
    WFTASKMETADATA
    WFATTRIBUTELABELMAP
    WFATTRIBUTELABELUSAGE
    WFUSERVACATION
    BPM_PRESENTATION
    BPM_PRESENTATION_GRANT
    WFUSERTASKVIEW
    WFUSERTASKVIEWGRANT
    WFUSERPREFERENCE
    BPM_USERAPPLICATIONDATA
    BPM_USERAPPLICATIONDATA_GRANT
    WFRULEDICTIONARY
    WFTASKDISPLAY
    WFTASKTIMER
    WFNOTIFICATIONMESSAGES
    WFTASKERROR
    WFHEADERPROPS
    WFCERTAUTHORITY
    WFCERTIFICATEREVOKED
    WFCERTIFICATE
    WFEVIDENCE
    WFTASKASSIGNMENTSTATISTIC
    WFTASKSEQUENCECHANGES
    WFTASKAGGREGATION
    WFAPPROVALGROUPS
    WFAPPROVALGROUPMEMBERS
    Thanks,
    Vijay

  • Question why has my balance on my itune account have totally disappeared when I have only been using it for less than a year? had still fair bit of money in it too. around $60

    Question why has my balance on my itune account have totally disappeared when I have only been using it for less than a year? had still fair bit of money in it too. around $60

    First, make sure you're logged into the iTunes Store using the account ID and password you set up, or used, when you redeemed your card/gift.  If you are, try signing out of the account and back in.
    If you're sure you are using the correct account and that you're signing in to the iTunes Store, and signing out and back in doesn't help, go to the Purchase History and review your purchases to make sure that you should indeed have a balance left. iTunes doesn't always refresh the balance it shows, so it's possible you spent the money and it just wasn't being reflected in the display. This display error can usually be corrected by logging out of the iTunes Store and then back in.
    If you confirm that you should have balance left but the iTunes Store isn't showing it correctly, send a message to the iTunes Store customer service department through the contact form you'll find by selecting the most applicable section of their Support page (select the Contact Support link and follow the instructions) and explain the problem to them.
    Good luck.

  • Why has the Tecra M11-11M only got the 32-bit version of Windows 7?

    Why has the Tecra M11-11M only got the 32-bit version of windows 7 and not the 64-bit?
    Surely the i7 and 4gb can cope with the demands and the 64-bit version would allow more efficient use of the computing power.
    Many thanks,

    Good question but Im afraid only Toshiba marketing division has right answer to your question.
    I just presume they create own decision based on market research.
    You can try to install own 64bit version if the drivers, tools and utilities are available.

  • Why is the Executable class only available in Script Task and not in Script Component.

    Why is the Executable class only available in Script Task and not in Script Component.
    Here is a link to the Executable class documentation.
    http://technet.microsoft.com/en-us/library/microsoft.sqlserver.dts.runtime.executable.aspx
    Mr Shaw

    Because Executables are available only in Control Flow. Script Task is a control flow component whreas Script Component is a data flow component. It works on data buffer and rows and not on executables.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Maybe you are looking for

  • Converting a Color Cad file into a Black and White .pdf

    My company recently bought me Adobe Acrobat XI-Professional as an upgrade from Adobe Acrobat 9-Standard. As such, one of the tasks assigned to me was to take color CAD drawings (.DWG extension) created in AutoCAD 12 and then convert them into black-a

  • Language Translation in Xcelsius based on Infoview language settings

    Hi, Could you please tell me how to do language translation in Crystal Xcelsius. I built the dashboard using WebI Report in English version. The client wants to view the Dashboard in French. Also, the client donu2019t want to have 2versions of the da

  • W520 on Series 3 Mini-Dock - Cooling Pad?

    Does anyone have a good solution for a cooling pad which integrates well with the W520 attached to the Series 3 Mini-Dock  (170Watt)?  Did a search on cooling pads for this configuration and couldn't find a solution.  I just received my new W520 and

  • IPhoto v 9.6 doesn't update pictures added by shared parties in iCloud Stream

    I have a MacBookPro 15 inch mid 2010, 8GB ram I am running OS X Yosemite v 10.10.  I am using iPhoto v 9.6. I created an event that I shared on iCloud with other parties.  I gave them permission to read/write.  The other parties added photos to the s

  • Erraneous requests in transactional RFC in tcode OAAD

    Hi, I am uploading a document from ITS. In Tcode 'oaad' when I go to Erraneous storage request of archive link monitor I am getting the error "SAP ArchiveLink (SAP kernel error)" for function module ARCHIV_CREATE_TABLE. What can be the reason?.Any va