Problem passing comments between human tasks - InputText Comment Invisible

Hi,
I want to pass the comments between three human tasks, i discover that it to works if i check reinitiate checkbox
and link all human tasks with the antecedent.
But, now i have another issue: When i create in the new button in the second human task, the inputText comment is invisible, see the image bellow:
http://shareimage.org/images/ehmo4rrj80dbswt8fpms.png
Why inputText comment is invisible ?
Thanks.
Victor

Hi,
I resolve partially this issue.
Was a problem in my pageDef.xml. It works and now the inputText is visible.
The only problem now is: when i make a CLAIM in the second human task, the filed comments is cleaned and the previous comments is losted.
Why i have to do for comments don't disappear when i make a CLAIM ?
Thanks
Victor Jabur

Similar Messages

  • How to open and navigate between human task forms in a same page?

    Hi
    I use Oracle BPM 11.1.1.5
    I have a question about taskflows in BPM Application.
    In ADF web application, I create a sipmle task flow and insert view id and bind these to jspx pages, my pages are opend in same page when
    return an outcome.
    For exapmle I have three pages like A,B,C.
    In task flow, insert three view ids and bind to A,B,C.
    My first pages is A, and when outcome is B navigate to B, when my outcome is C then navigate to C in a same page not separate pages.
    But my problem is here.. in BPM Application when create task forms, every task has a separate task flow that there exist a single view id and a wild card flow in it.
    In BPM workspace when initiate human task form is closed, I should press refresh button to see next human task form in task list table.
    I tried to create a simple task flow and insert human task forms in it and navigate between these.. but show human task form in wrong display and don`t show some component and human task payload.
    Now, my question : How to open and navigate between human task forms in a same page like software installation?

    Having a separate Data Control for each human task is normally the case. There is a way to assign multiple human tasks to a single data control (and one task flow), but I don't think that this is going to help you with what I think you're trying to do.
    If your human task is called "EmployeeDetail", then you'd use the data control associated with this for the UI pages in the task flow diagram that is associated with this human task. For example, you might have a first page that has just the basic employee information - the fields (at least the ID field) would come from the EmployeeDetail data control. When the end user clicks "Next", you might have this UI page flow to a second UI page in the task flow diagram that has the employee's address information. You might place the address fields from the EmployeeDetail data control onto this second UI page.
    You might be asking how the work item instance can automatically flow to the next interactive activity in the process while staying inside the first interactive activity's human task's task flow diagram. This is not how it works - the task flow diagram models the end user interaction while inside a single human task that is tied to a specific interactive activity in the process. If you want a the end user to be able to move the instance through multiple interactive activities in the process in one interaction, look at "Activity Guides". Activity Guides do a nice job of this.
    Dan

  • How to get the contents of more than one comments of human task?

    The human task have more than one comments. I use the following functions to get the contents but still only get the first comment. Append function only returns the first comment.
    How to get all conents of comments?
    <while name="While_1"
    condition="bpws:getVariableData('Variable_int_i')&lt;number(bpws:getVariableData('Variable_comment_node'))">
    <sequence name="Sequence_3">
    <sequence name="Sequence_3">
    <assign name="Assign_7">
    <copy>
    <from expression="string(bpws:getVariableData('single_approve_1_globalVariable','payload','/task:task/task:userComment/task:comment'))"/>
    <to variable="Variable_comment_string"/>
    </copy>
    </assign>
    <assign name="Assign_6">
    <copy>
    <from expression="bpws:getVariableData('Variable_int_i')+1"/>
    <to variable="Variable_int_i"/>
    </copy>
    </assign>
    </sequence>
    </sequence>
    </while>

    You also have to test the value:
    REPORT ztest MESSAGE-ID 00.
    DATA: BEGIN OF itab OCCURS 0,
            f1 TYPE i,
            f2 TYPE i,
            f3 TYPE i,
            f4 TYPE i,
          END OF itab.
    DATA: sel_field(20),
          value TYPE i.
    DO 5 TIMES.
      itab-f1 = sy-index.
      itab-f2 = sy-index + 10.
      itab-f3 = sy-index + 20.
      itab-f4 = sy-index + 30.
      APPEND itab.
    ENDDO.
    LOOP AT itab.
      WRITE: /001 itab-f1, itab-f2, itab-f3, itab-f4.
      HIDE itab.
      CLEAR itab.
    ENDLOOP.
    AT LINE-SELECTION.
      CLEAR: sel_field,
             value.
      GET CURSOR FIELD sel_field.
      IF sy-subrc = 0.
        CASE sel_field.
          WHEN 'ITAB-F1'.
            value = itab-f1.
          WHEN 'ITAB-F2'.
            value = itab-f2.
          WHEN 'ITAB-F3'.
            value = itab-f3.
          WHEN 'ITAB-F4'.
            value = itab-f4.
        ENDCASE.
        MESSAGE s001 WITH 'Value of' sel_field 'is' value.
      ELSE.
        MESSAGE s001 WITH 'Invalid field selected'.
      ENDIF.
    Rob

  • How to programmatically add user comment using human task data control

    Hi,
    We create the task form by using “create Task flow based on Human task”. I need to programmatically create and insert the user comment for the task. I know I need to create and insert a new element to the userCommentIterator that linked to the human task data control. But I could not get it work or find any related detail sample coding. Please help.
    Thanks a lot,
    Helen

    post it in soa suite forum
    SOA Suite
    or bpel forum
    BPEL
    to get.. quick reply.

  • Problem updating payload on human task

    Hi,
    I'm developing an form where the user has to fill a set of fields, this fields are stored in the task payload. What happens is that if I use the save action the payload is updated but the screen refreshes and you need to selected the task on the work list again. To resolve this issue I'm using the update function of the task data control, but it only allows me one update to the data in the payload, then if I change a field and update it, it's not stored. I'm looking for a way to replicate the save action but without closing the form.
    Thanks.

    Are you using ps2 (11.1.1.3)? There was an issue where initiator human task activities that had parameters that were complex types needed to have the Data Object initialized via a script activity, or the fields could not be edited in the task from.
    There's an example of how to use the script in the SalesQuoteDemo. Basically you use the oraext:parseXML() function to create an initialized version of the Data Object and assign it to the Data Object in a script activity that's placed before the Initiator Human Activity. It can also be used to set defaults if needed. Here's a snippet of the expression from the SalesQuoteDemo.
    oraext:parseXML('<ns1:QuoteRequest xmlns:ns1="http://www.mycompany.com/ns/salesquote"><ns1:Summary>....</ns1:Summary<ns1:QuoteRequestStatus/></ns1:QuoteRequest>')

  • Problem in passing parameters between flow task in a dynamic region

    Hi,
    I have a problem with the passing of parameters between task flow when it is executed within a dynamic region. To implement this, I followed the Baranovskis Andrejus Blog "JDeveloper 11g and ADF Task Flow Parameters" and everything works perfect as the task flow are not invoked from a dynamic region. But if the same task flow are converted to fragment of pages and executed in a dynamic region, the filter in the task flow that is called does not work, it does not return any records.
    Any idea that I may be missing to make this work well?.
    Thanks in advance.

    Hi Frank.
    My case is the first, ie in a single dynamic region, a task flow call another passing parameters to filter data to display in the second, using a task flow call activitie. As I said in the message above, everything works well as both task flow to not become unbounded task flow with fragmet page.
    Any ideas?
    Thanks

  • When copying a comment between 2 documents, the comment comes in sideways and Acrobat freezes up.

    Using Acrobat X Pro 10.1.4, Win XP Pro.
    If I have two documents open, and am making comments in each, and try to copy-paste a comment from one document to the other, the comment comes in sideways and/or Acrobat freezes up requiring a forced close via Task Manager.
    Is there a way to fix this without just re-entering or re-typing the comment text/re-drawing the markups in the second document?

    That usually means the pages in one of the documents have a rotation applied (e.g. if the screen appears to show a landscape page, it's actually a portrait page with a 90-degree rotation setting). Comments inherit the rotations of the page they were first placed on, and aside from undoing the rotations before commenting, it's not a simple thing to fix.
    That doesn't explain why Acrobat is crashing - if possible please submit any crash reports to Microsoft, and if it's repeatable please log a bug report at http://www.adobe.com/go/wish

  • Search Help Problem - Passing parameter between to search helps.

    I created following 2 table for entering data in PO screen using ME21N using Custom Data Tab.
    ZSTATE_TAB - State table  (has elementary search help ZSTATE_SH - Value of SCODE is exported)
    SCode(Key)     Description
    S001           New York
    S002          Virginia
    S003          West Virginia
    ZCITY_TAB - City Table  (has elementary search help     ZCITY_SH - Value of SCODE is imported)
    SCode(Key)     CCode (Key)     Description          Level
    S001          C001          New York City          L001
    S001          C002          Rochester          L002
    S001          C003          Buffalo               L003     
    S002          C004          Richmond          L029     
    S002          C005          Fairfax               L030
    I have created an custom input field LEVEL in t-code ME21N in Customer Data Tab.
    I want to create search help for LEVEL using import parameter STATE & CITY .
    On selection screen of search help two selection parameters STATE and CITY are displayed. 
    Step 1:User press F4 for getting list of state and selects any state using search help ZSTATE_SH (Value of SCODE is exported)
    Step 2:User press F4 to get the list of City using search help ZCITY_SH, based on state selected in Step 1.  (Value of SCODE is imported)
    In Step 2, I want to see only the cities selected in Step 1. But instead all Cities are displayed in hit list.
    I also created a table maintenance program SM30 for ZCITY_TAB, the search help ZCITY_SH is correctly displaying the data in hit list according to the State selected in ZSTATE_SH.
    But it is not displaying the correct list for cites in ME21N.
    Kindly help me in fixing this problem.
    Thanks in advance.

    here is the answer from [sap library - Value Transport for Input Helps - Parametrizing the Import Parameters of the Search Help|http://help.sap.com/saphelp_nw2004s/helpdata/en/35/bdb6e2c48411d1950800a0c929b3c3/frameset.htm] :
    If the search help is attached to the table field ( Attaching to Table Fields) or to the check table of the field ( Attaching to Tables), a value transport can take place for all the screen fields that are linked with a parameter of the search help.

  • AnyType values not showing on Human Task 11g

    Hi All,
    I have a process where the input schema is mapped to an anyType variable. I then map this variable to the payload variable on the Human Task. But when I run this process and go to the worklist, I get nothing. How can I get the data stored on an anyType variable to be displayed on the Human Task Form.
    Any Ideas ?
    Thanks
    K

    I did have a look at the link provided. I have followed the correct steps. I suggest having a look at the xsd I pass to the Human Task. In the xsd you will see the element entityValue which is of type anyType. In this element i map the payload of a bpel process e.g. if the payload has name, surname, address, telephone etc , that will be passed with the values in the entityValue element. Now when I map to the Human Task, I map the element EntityRequest to the Human Task payload. When I trigger the process that calls the Human Task, in the worklist application, I am able to see all other values in my schema below except entityValue. I have also provided a dummy entityValue mapping. I just want it to show whats stored in that element, the highlighted part
    XSD schema thats I am using
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://xmlns.up.ac.za/Integration/Generic/schemas/Exception"
    xmlns:ed="http://xmlns.up.ac.za/Integration/Generic/schemas/Exception"
    elementFormDefault="qualified">
    <element name="EntityRequest" type="ed:EntityRequestType"/>
    <complexType name="EntityRequestTpe">
    <sequence>
    <element name="header" type="ed:HeaderType"/>
    <element name="entityValue" type="xsd:anyType" minOccurs="0"/> *<---* problem area - will not show on Human Task
    <element name="entity" type="string"/>
    <element name="isn" type="integer"/>
    <element name="group" type="string"/>
    </sequence>
    </complexType>
    <complexType name="HeaderType">
    <sequence>
    <element name="error" type="ed:errorType" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    <complexType name="errorType">
    <sequence>
    <element name="code" type="string"/>
    <element name="description" type="string"/>
    <element name="source" type="string"/>
    </sequence>
    </complexType>
    </schema>
    Below is an example of the data mapped to element entityValue
    <entityValue xmlns:ns0="http://xmlns.up.ac.za/Integration/OIM/schemas/OimBioSyncEBM">
    *<ns0:PersonStoreEBO>*
    *<PsEbo:BioData>*
    *<Bio:NAME_TITLE xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">Dr</Bio:NAME_TITLE>*
    *<Bio:NAME_INITIALS xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">T</Bio:NAME_INITIALS>*
    *<Bio:PREF_FIRST_NAME xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">test</Bio:PREF_FIRST_NAME>*
    *<Bio:FIRST_NAME xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">test</Bio:FIRST_NAME>*
    *<Bio:MIDDLE_NAME xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">test</Bio:MIDDLE_NAME>*
    *<Bio:LAST_NAME xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">test</Bio:LAST_NAME>*
    *<Bio:NATIONAL_ID_TYPE xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">NID</Bio:NATIONAL_ID_TYPE>*
    *<Bio:COUNTRY xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">ZAF</Bio:COUNTRY>*
    *<Bio:NATIONAL_ID xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">123456789</Bio:NATIONAL_ID>*
    *<Bio:MOBILE_PHONE xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">0123456</Bio:MOBILE_PHONE>*
    *<Bio:SMS_SEND_IND xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">Y</Bio:SMS_SEND_IND>*
    *<Bio:SEX xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">M</Bio:SEX>*
    *<Bio:RACE xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">2</Bio:RACE>*
    *<Bio:BIRTHDATE xmlns:Bio="http://xmlns.up.ac.za/Integration/OIM/schemas/Bio_DataEBO.V1">1912-12-12</Bio:BIRTHDATE>*
    *</PsEbo:BioData>*
    *</ns0:PersonStoreEBO>*
    </entityValue>
    Edited by: K on Jun 1, 2012 9:59 AM

  • Create ADF Task Flow for Human task outside of SOA Composite

    Hi,
    Is there any way you can create ADF Task Flow form (for the task Details to be display in worklistapp) for a Human task out side of the SOA Composite applicaiton?. I know we can create ADF Task flow form for task details based on Human Task in SOA composite application. But I dont want to do that. I dont want to keep any association between Human task and ADF Task Flow.
    If there is a way to do this, How can we assiciate this ADF Task flow form with worklist applicaiton?
    Thanks
    --Sreeny                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    By using these services appropriately:
    http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10224/bp_workflow.htm

  • Human Task - Notification Setting

    Hi everyone
    I Want to customize the email message that will be sent to the Assignees.
    The message is as follows:
    Task <%/task:task/task:title%> requires your attention. Please access the task from the worklist application.
    Request ID: <%/task:task/task:payload/ns0:HumanTaskProcessRequest/ns0:Req_ID%>
    From: <%/task:task/task:payload/ns0:HumanTaskProcessRequest/ns0:From%>
    To: <%/task:task/task:payload/ns0:HumanTaskProcessRequest/ns0:To%>
    Purpose:<%/task:task/task:payload/ns0:HumanTaskProcessRequest/ns0:Purpose%>
    and it appears like this in the email message:
    Task RequestApproval requires your attention. Please access the task from the worklist application. Request ID: From: To: Purpose:
    I tried to add an Assign and create a copy operation to assign the input value of Request ID (for example) to the task payload. but it didn't work !!
    btw, I don't have anything under '/task:task/task:payload' and the path in the message has been added using the xpath builder

    If you are going to pass something in to the task you need to do it as a parameter. Then that parameter's hierarchy will appear under the payload section. You specify the parameter type in the human task definition and you specify the actual value passed in the human task BPEL activity.
    You can also use HTML to format the emails a little nicer.

  • How to create payload attribute to the Human Task

    Any examples/doco will be appriciated.

    You open up the human task file (.task) and on the Data tab you add in whatever variables you want to pass to the human task. These can be simple XSD types such as strings, or complex objects ("Add Other Payload") which are elements which have their own .xsd file, typically Business Objects defined in the business catalog. This is how you configure the payload once the .task file has already been created.
    If you have a BPMN process and you're adding a new interactive activity, then you can define the payload while you're creating the activity itself. After you drop the activity onto the process, click the implementation tab, click the green plus icon to add a new human task, then click the plus icon in the parameters section to define the payload. You can drag and drop objects defined as Process or Project data objects from the palette that appears on the right directly into the parameters section on the left. Make sure to mark them as editable if you want users to be allowed to change the values in the human task.
    Edited by: Mike Rokitka on May 14, 2010 10:36 AM
    Edited by: Mike Rokitka on May 14, 2010 10:37 AM

  • Human Task expiration after server restart

    I am having serious problems related to BPEL human task expiration in SOA 11g. If my server is down or if I restart my server and any human task has its expiration during this server downtime, then this human task never exprires. What I want is that any human task should get expired at its expiration date-time irrespective of server state. Please help.

    I am having serious problems related to BPEL human task expiration in SOA 11g. If my server is down or if I restart my server and any human task has its expiration during this server downtime, then this human task never exprires. What I want is that any human task should get expired at its expiration date-time irrespective of server state. Please help.

  • Human task callbacks issue

    I ran into some problem using callbacks in human task. For example: onTaskupdated, I invoke a WS call, the human task just ignore that as if there is no callback; however, when I shift the invoke to another branch such as onsubtaskupdate, the callback is ignored on subtaskupdate but ontaskupdate works normally. -.-!

    I have tried with MLR Patch # 8372150, but no luck. I have found a similar thread on this forum who has the same issue.
    quartz based workflow times are not initializing
    If this might be the problem, how do we fix the following error message.
    *<::> Unable to get the workflow timers during startup, this can happen if orabpel server is not started properly*

  • Create ADF Task Details for Human task

    Hi,
    Is there any way you can create ADF Task Flow form (for the task Details to be display in worklistapp) for a Human task out side of the SOA Composite applicaiton?. I know we can create ADF Task flow form for task details based on Human Task in SOA composite application. But I dont want to do that. I dont want to keep any association between Human task and ADF Task Flow.
    If there is a way to do this, How can we assiciate this ADF Task flow form with worklist applicaiton?
    Thanks
    --Sreeny                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    By using these services appropriately:
    http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10224/bp_workflow.htm

Maybe you are looking for

  • Why can I no longer transfer files to an external HD?

    To make more space on my 2010 macbook air (OS 10.9.4) I purchased a Toshiba 1TB external hard drive (formatted Mac OS Extended (Journaled). To free space I placed a large folder onto it, and also set up Time Machine. When I plugged it in a few days l

  • How to lock a particular applicatio​n

    Hi, I want to lock a particular application in device. Can any one tel me this........

  • SCSM 2012 -

    In SQL Report Builder I have put in the Problem.dom so I can see all of the below fields, see also the screen shot. How can I amend this code so that I can see everything listed in the Problem.dim as below but also the UserDim?  I need this as i want

  • Re: Is the free for one month international callin...

    I signed up for the same offer with same results. I think it is despicable that Skype refuses to clarify this issue by opening up Customer Service to email consultation. I replied to a Skype email request for a questionnaire on their service and aske

  • ASCP Plan Is Not Able To Read Global Forecast For Options Published By Demantra

    ASCP plan is not able to read global forecast for options published by Demantra ASCP plan is not able to read global forecast for options published by Demantra. Only Model Forecast is being read into ASCP plan.  1) We are publishing global forecast f