BPEL Human Workflow:IWorklistContext

Hi,
I am trying to access the tasks assigned to perticular user using Human Workflow APIs, but I am unable to get the task list eventhough tasks are assigned for the user. I am using below mention code,
RemoteWorklistServiceClient client= new RemoteWorklistServiceClient();
client.init();
String user = "dlsdeomgr";
String password = "welcome1";
//client.
IWorklistContext ctx = client.authenticateUser(user, password);
Map filterMap = new HashMap();
filterMap.put(IWorklistService.FILTER_TYPE_TASK_FILTER,IWorklistService.TASK_FILTER_MY);
filterMap.put(IWorklistService.FILTER_TYPE_STATUS_FILTER, IWorklistService.STATUS_FILTER_ASSIGNED);
String keywords="";
List tasks = client.getWorklistTasks(ctx,filterMap, keywords,
IWorklistService.SORT_FIELD_TASK_TITLE,
IWorklistService.SORT_ORDER_ASCENDING);
System.out.println("tasks1"+ tasks.size());
for (int i=0; i<tasks.size(); i++)
Task task = (Task) tasks.get(i);
String taskId = task.getTaskId();
String status= task.getStatus();
System.out.println("Task ID!!"+ taskId + "status" +status);
let me know if I am doing wrong? or is there any other way I can access asynchronous bpel process using human workflow API. Thanks

I checked your code. There were few typos, I wonder how you could compile it.
Anyway here is workable code for user jstein.
Don't forget to place hw_worklist_jndi.properties in your classpath
package hanusiak;
import oracle.tip.pc.services.hw.task.impl.Task;
import oracle.tip.pc.services.hw.worklist.RemoteWorklistServiceClient;
import oracle.tip.pc.api.worklist.IWorklistContext;
import oracle.tip.pc.api.worklist.IWorklistService;
import java.util.Map;
import java.util.HashMap;
import java.util.List;
public class Lister {
* @param args
public static void main(String[] args) {
try {
RemoteWorklistServiceClient client= new RemoteWorklistServiceClient();
client.init();
String user = "jstein";
String password = "welcome";
IWorklistContext ctx = client.authenticateUser(user, password);
Map filterMap = new HashMap();
filterMap.put(IWorklistService.FILTER_TYPE_TASK_FILTER,IWorklistService.TASK_FILTER_MY);
filterMap.put(IWorklistService.FILTER_TYPE_STATUS_FILTER, IWorklistService.STATUS_FILTER_ASSIGNED);
String keywords="";
List tasks = client.getWorklistTasks(ctx,keywords, filterMap,
IWorklistService.SORT_FIELD_TASK_TITLE,
IWorklistService.SORT_ORDER_ASCENDING);
System.out.println("tasks="+ tasks.size());
for (int i=0; i<tasks.size(); i++)
Task task = (Task) tasks.get(i);
String taskId = task.getTaskId();
String status= task.getState();
System.out.println("Task ID="+ taskId + " status=" +status);
} catch (Exception e) {
e.printStackTrace();
}

Similar Messages

  • Exposing BPEL Human Workflow Activities in ADF

    Hi All,
    I want to have a clear idea on best practices/ ways on
    "How to expose BPEL human workflow processes in ADF".
    Do I need to create an ADF application where I can consume BPEL datacontrol.
    or Do I need to manage ADF datacontrols with BPEL databases and create VO EO and create datacontrol.
    What could be the best practice on exposing BPEL Human workflow in ADF.
    Waiting for reply.
    Regards,
    Hoque

    Hi Hoque,
    you can create direct an ADF Task Form Projekt from your HumanTask Wizard. Cehck out this two links:
    Implementing an Oracle ADF Task Flow for a Human Task - 11g Release 1 (11.1.3)
    http://docs.oracle.com/cd/E28271_01/dev.1111/e10224/bp_tutorialhwf_.htm
    Never access the SOA Suite databases directly, it is a bad practice.
    best regards, Nicolas

  • Cancel Task in BPEL human workflow

    All,
    We have a requirement to cancel the task for the user using human work flow. The worklist should be deleted for the user. Let me know if oracle human workflow provides an opertaion option to cancel the task like reassign,initaiate etc.
    Regards,
    M.Rajesh

    Ronald,
    By cancel means i need the worklist entry for the given taskid to be deleted or marked as cancel so that the user will not be able to process the task. The BPEL process should have a human task process defined like updatetask which will cancel the task.
    Let me expalin our scenario.
    We have an assignment which has different status like new,reassign,cancel. Using a switch we check for the required status and if the status is new we call the initaiate task. Similarly if the status is cancel we need to cancel or delete the task for the user.
    Regards,
    M.Rajesh

  • BPEL Human Workflow - dynamic Outcomes

    Hello All,
    While designing human task, I can pretty much provide XPATH everywhere, but I couldn't provide xpath for outcomes.
    Is it possible to provide dymanic outcomes?
    - I am not sure how does Worklist App figures out set of outcomes, I didn't it as part of task input.
    I appreciate your help.
    Thanks,
    Chintan

    Alright, it is certainly getting interesting to me, and would really appreciate if somebody provide any insight to this issue.
    - I saw that TaskLink input (initialTaskInput), does have property called parallelOutcomeCount in systemAttributes, which decides type of outcomes to worklist application.
    q.1: Why I am not able to override this attribute (parallelOutcomeCount )? I tried to put my own value right before the INVOKE operation, still it didn't work, it got over-ridden by BPEL engine?
    q.2: I don't see any ASSIGN activity to assign parallelOutcomeCount, I do see assign activity for assign system and payload activity generated during Human Workflow. How do they get set? Is there is any interceptor concept?
    Really curious, because it there is any hidden way to set such variable, I would love to use such framework for many different purposes.
    Thanks!
    Chintan

  • OTBI reporting on BPEL human workflow tasks

    Hi,
    Is it feasible to do OTBI reporting on BPEL tasks associated to application objects? I was searching around and could find no relevant material.
    Thanks,
    Srini

    Learnt OTBI cannot report on BPEL tasks.

  • BPEL human workflows: How to carry task parameters to another flow

    Hi all
    i want to split the flows to make it maintainable. i have 8 humantasks including flow and when i split this, it will share 3-5 humantasks in each of them. i want to carry the task details from first flow to second one(History,payload and comments). Actually according to customer these 8 humantasks make 1 business task together so they want to see the history of all in one thread(assume that you track only 1 task). So what is the best way to carry task details from one flow to other one?
    Thanks

    Hi,
    Since the human task out is in a global variable by default you can copy the output of previous tasks in the assign of every next human task. I do not know if this also will be posible for the history. This is could be task dependend. If you have trouble copying the output directly to the input in case of e.g. arrays, you could also use a self defined global variable that holds the information needed in between human tasks.
    Kind Regards,
    Andre

  • Groups functionality in BPEL humal workflow not work for Third party LDAP

    Hi,
    Oracle Virtual Directory(OVD) configured as third party LDAP was integrated
    with BPEL human worklist and corresponding tasks were assigned to a
    particular group using the human task editor. When the members in the group as
    present in OVD logged in to the BPEL human workflow console the assigned
    tasks are not visible to the particular user whereas logged in as bpeladmin can
    able to view the task for the group and the associated users. The same when
    tested with the default JAZN authentication the functionaliy is working fine. We
    are not able to assign any tasks to the members associated to the groups. Also
    tasks assigned to individual users directly are found to be working with OVD
    integrated.
    Regards
    Thirumal

    Anyone out there? Help!

  • Human Workflow in BPEL

    Hi,
    We are able to get the users(participants) from an ADFbc service Response variable.But,how do we need to assign these users as participants in the Human WorkFlow(inside the Nflow).Depending on N , the users retrieved would be different for each flow in Nflow.
    We have tried to assign the foll:
    <copy>
    <from variable="Invoke_3_getUsers_OutputVariable"
    part="parameters" query="/ns2:getUsersResponse/ns2:result"/>
    <to variable="initiateTaskInput" part="payload" query="/taskservice:initiateTask/ns5:routingSlip/ns5:participants/ns5:participant"/>
    </copy>
    but getting some fault as "Invalid service input element". I tried to assign this output variable to task assignees as well..but dint work
    Any pointers would help..
    thanks in advance
    Regards
    Ss

    Ronald,
    By cancel means i need the worklist entry for the given taskid to be deleted or marked as cancel so that the user will not be able to process the task. The BPEL process should have a human task process defined like updatetask which will cancel the task.
    Let me expalin our scenario.
    We have an assignment which has different status like new,reassign,cancel. Using a switch we check for the required status and if the status is new we call the initaiate task. Similarly if the status is cancel we need to cancel or delete the task for the user.
    Regards,
    M.Rajesh

  • Oracle Content Services + BPEL for Human Workflow

    Greetings,
    I'm new to Oracle Collaboration Suite and BPEL. I'm starting to work with this technologies.
    My goal is to develop some custom human workflow using Oracle Content Services 10.1.2.3.0 and BPEL.
    Regarding software versions, some doubts arise ... I'm using Collaboration Suite 10.1.2.
    - Which version of SOA Suite (10.1.2 or 10.1.3.1) and BPEL are recomended to work with content services 10.1.2.3.0 ?
    Thanks,

    The certified version for Content DB/Content Services 10.1.2.3 is 10.1.2 of BPEL.
    Ravikiran

  • Differences in Oracle Service Bus, BPEL and human workflow

    Hi Everyone,
    I am newbie, don't know if its the right place to post this thread.
    I want to prepare paper on differences in Oracle Service Bus, BPEL and human workflow, can anybody help me.
    Till now i came to know all these things are very different, no poit comparing them but still need differences
    Thanks in advance:
    Vikas

    Basic difference:
    BPEL : It is used for orchastrating different processes. Its heavyweight and stores instances (stateful)
    OSB : It is used for routing data between the applications
    Human Workflow : It is used to handle scenarios where manual intervention is necessary.
    Refer for more on Oracle BPEL
    http://www.oracle.com/technology/products/ias/bpel/htdocs/orabpel_faq.html
    Regards,
    Ketan

  • Calling Human Workflow Webservices from BPEL

    Hello,
    I am using J Developer 11.1.1.6 to develop a BPEL process that calls the TaskQueryService Human Workflow webservice. When I compile the SOA project, I get the following errors:
    Error: oracle.xml.parser.schema.XSDException: Can not build schema 'http://xmlns.oracle.com/bpel/workflow/common' located at 'http://xmlns.oracle.com/bpel/workflow/common.__OAUX_GENXSD_.TOP.XSD' [Cause=Can not build schema 'http://xmlns.oracle.com/bpel/workflow/common' located at 'http://xmlns.oracle.com/bpel/workflow/common.__OAUX_GENXSD_.TOP.XSD']
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskQueryServiceFaultResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}successResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}queryViewTasksRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}credentialOnBehalfOfRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/task}task
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}doesViewTaskExistRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/common}workflowContext
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}queryTaskErrorsRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}countTasksRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}queryAggregatedTasksRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}getPermittedAssigneesResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskDetailsByIdRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskErrorsResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskListResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}getTaskSequenceRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskDetailsByNumberRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}getPermittedAssigneesRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskListRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}aggregatedTasksResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}countViewTasksRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskVersionDetailsRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}updateWorkflowContextRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}queryViewAggregatedTasksRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskExistsResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskHistoryRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/common}credential
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}doesTaskExistRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskSequence
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskCountResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}workflowContextRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/FuelLogIntegrations/HWFTaskService/FindTasks}process
    I've tried implementing some of the recommendations I found by Googling the error message. I haven't been able to find a workable solution.
    I would appreciate some direction on how to fix the problem.
    Thanks

    I tried the Oracle patch. After installation, I am getting the following error in place of the multiple errors I was getting previously.
    java.lang.VerifyError: Cannot inherit from final class
    Sep 24, 2012 3:55:13 PM oracle.mds
    NOTIFICATION: PManager instance is created without multitenancy support as JVM flag "oracle.multitenant.enabled" is not set to enable multitenancy support.
    Sep 24, 2012 3:55:15 PM oracle.fabric.common.wsdl.SchemaManager isIncrementalBuildSupported
    INFO: XMLSchema incremental build enabled.
    Sep 24, 2012 3:55:18 PM com.collaxa.cube.CubeLogger info
    INFO: validating "InvoiceProcessing.bpel" ...
    Exception in thread "main" java.lang.VerifyError: Cannot inherit from final class
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:630)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:614)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    at com.collaxa.cube.lang.compiler.bpel.XPathExprValidatorVisitor.<init>(XPathExprValidatorVisitor.java:122)
    at com.collaxa.cube.lang.compiler.bpel.AssignValidator.<init>(AssignValidator.java:89)
    at com.collaxa.cube.lang.compiler.bpel.BpelParser.<init>(BpelParser.java:452)
    at com.collaxa.cube.lang.compiler.bpel.BPELValidator.validate(BPELValidator.java:60)
    at com.collaxa.cube.lang.compiler.BPEL1Processor.validate(BPEL1Processor.java:329)
    at com.collaxa.cube.lang.compiler.BPEL1Processor.process(BPEL1Processor.java:153)
    at com.collaxa.cube.lang.compiler.CubeParserHelper.compile(CubeParserHelper.java:47)
    at oracle.fabric.bpel.bpelc.BPELComponentValidator.validate(BPELComponentValidator.java:40)
    at oracle.soa.scac.ValidateComposite.validateComponentTypeServicesReferences(ValidateComposite.java:1117)
    at oracle.soa.scac.ValidateComposite.doValidation(ValidateComposite.java:500)
    at oracle.soa.scac.ValidateComposite.run(ValidateComposite.java:150)
    at oracle.soa.scac.ValidateComposite.main(ValidateComposite.java:135)
    Please do let me know in case I am doing something wrong.

  • Issue in passing payload from Human Workflow to ADF task flow

    Hi All,l
    I am facing one strange issue in Human Workflow -> ADF task form integration. I have 4 Data variables to pass to the task form for displaying and modifying the request payload. E.g
    1. request
    2. propertiesList
    3. input1
    4. input2
    request and properties list variables are in the same namespace. When the process is executed, I can see the data being passed in Initiate taskflow activity in BPEL. However I don't see the data in ADF form only for propertiesList variable. This is a custom schema element I added newly in the project. I don't get any error , but no data is getting displayed.
    Any help in this matter is greatly appreciated.
    Thanks
    Ashwini

    I have applied workaround for this. However the main issue still exist.
    When I pass hard-coded values in the list and drag and drop that list as selectOneChoice - I see the values in dropdown. Whereas, when the list is passed from program logic and I can see the values passed in initiateTask activity, and drag and drop the field as selectOneChoice, the values don't come up.
    I will replicate this issue in a smaller piece of code and paste here later.
    Thanks
    Ashwini

  • Issue in Human Workflow

    Currently I am learning Human Workflow integration in Oracle BPEL.
    http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10224/bp_introhwf.htm#BABIEDCJ
    I have used this URL to see tutorial accordingly I created BPEL process but when I am testing this BPEL process I am able to do raise a request but now able to see that request in manager's Queue.
    Can anybody help in this?
    Thanks,
    Yashwant

    Hello Yashwant,
    The tutorial seems fine, but as you might´ve noticed the manager assignment depends on information received in the message inbound, maybe if you post your request body we can take a further look into it. Maybe your XPath is not correct? Maybe namespaces don´t match? I´d start from there...
    Thank you,
    Vinicius

  • Human Workflow Issue in 11.1.1.6

    Hi Experts,
    I working on a Human Workflow Project in SOA Suite 11.1.1.6.
    My requirement is to pass the HTML data as content to Human Workflow Task to Notification user. Do elaborate more, the user will get email notification from Human Workflow where in the body of email he will see the HTML content.
    I created Data object in Human task as "EmailDataContent" of type String. When I am passing data to HWF through BPEL. Its throwing below error.
    INPUT:
    =====
    <initiateTaskInput>
    <part  name="payload">
    <initiateTask>
    <task>
    <title>Claim ID:1234ABCD requires your review</title>
    <payload>
    <EmailDataContent xsi:type="ns:string"><html> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <style type="text/css">.hdrtbl{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;background-color:#f2f2f5;} .hdrsh{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;color:#755600;text-align:right;padding:3px} .hdrdt{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;color:#003D5B;text-align:left;padding:3px} .dtltbl{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;border-width:1px;spacing:0;background-color:#CCCCCC;border: 1px} .dtlth{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;background-color:#B9C9FE;text-align:center;padding:0px;height:22px;} .dtldt{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;background-color:#FFF5D5;text-align:left;padding:4px;height:22px;color:#003D5B} .sumcell{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;background-color:#FFFFFF;text-align:right;padding:4px;height:22px;font-weight:bold} pre {font-family:Tahoma,arial,Helvetica,sans-serif; font-size:10pt} body {font-family:Tahoma,arial,Helvetica,sans-serif; font-size:10pt} h3 {font-family:Tahoma,arial,Helvetica,sans-serif;} h4 {font-family:Tahoma,arial,Helvetica,sans-serif;} h5 {font-family:Tahoma,arial,Helvetica,sans-serif;color:#123C73}</style> </head> <body> <hr align="left" width="1000px"> This message is automatically generated. Please do not reply to this message. <br> An incentive claim with reference number PN00000623 as been submitted and is pending review Please login to the CEQ to review the claim. <br><br> <table width="1000px" class="hdrtbl"> <tr> <td class="hdrsh">Customer Group</td> <td class="hdrdt">ANYDATA</td> <td class="hdrsh">Assigned To</td> <td class="hdrdt">XXXXXXXXX</td> <td class="hdrsh">Status</td> <td class="hdrdt">Approved</td> </tr> <tr> <td class="hdrsh">Program Notice #</td> <td class="hdrdt">XXXXXXXXXXXXXXXX</td> <td class="hdrsh">Sales PeriodStart Date</td> <td class="hdrdt">1/1/2013</td> <td class="hdrsh">End Date</td> <td class="hdrdt">3/31/2014</td> </tr> <tr> <td class="hdrsh">XXXXXXXXXXX</td> <td class="hdrdt">Paid</td> <td class="hdrsh">Purchase PeriodStart Date</td> <td class="hdrdt">1/1/2013</td> <td class="hdrsh">End Date</td> <td class="hdrdt">12/31/2013</td> </tr> <tr> <td class="hdrsh">Creation Date</td> <td class="hdrdt">10/29/2013</td> <td class="hdrsh">Quarter</td> <td class="hdrdt">CYQ1'13</td> <td class="hdrsh">Created by</td> <td class="hdrdt">XXXXXXXXXXXXXX</td> </tr> <tr> <td class="hdrsh">Description</td> <td Colspan="5" class="hdrdt">XXXXXXXXXXXXX</td> </tr> </table><br> <h4>Device Details</h4> <hr align="left" width="1000px"> <h5>Non Qualified Reporting</h5> <table width="1000px" class="dtltbl"> <th class="dtlth">Product</th> <th class="dtlth">Shipment</th> <th class="dtlth">Requested Non Qual</th> <tr> <td class="dtldt">XXXXXXXXXXXXXX</td> <td class="dtldt">16,000</td> <td class="dtldt">0</td> </tr> </table><br> <table width="1000px" class="dtltbl"> <th class="dtlth">Product/Chipset</th> <th class="dtlth">Device Type</th> <th class="dtlth">Purchase Period</th> <th class="dtlth">Purchase Start Date</th> <th class="dtlth">Purchase End Date</th> <th class="dtlth">Shipment</th> <th class="dtlth">Claim</th> <th class="dtlth">Net ASP</th> <th class="dtlth">Rebate Per Unit</th> <th class="dtlth">Extended</th> <tr> <td class="dtldt">xxxxxxxxxxxx</td> <td class="dtldt">xxxxxxxxxxxxxxxxx</td> <td class="dtldt">Purchase Period 1</td> <td class="dtldt">1/1/2013</td> <td class="dtldt">12/31/2013</td> <td class="dtldt">16,000</td> <td class="dtldt">9,450</td> <td class="dtldt">$18.810</td> <td class="dtldt">$4.710</td> <td class="dtldt">$44,509.50</td> </tr> <tr> <td colspan="9" class="sumcell">Total</td> <td class="dtldt">$44,509.50</td> </tr> </table><br> If you have any questions, contact XXXXX. <br> If you did not submit this request, please forward this email immediately to xxxx <br><br> XXXXXXXXXXXXXXXXXXXXXXXX</a> </body> </html></EmailDataContent>
    </payload>
    <creator>XXXXXXXXXX</creator>
    <ownerUser>XXXXXXXXXX</ownerUser>
    <priority>3</priority>
    </task>
    <routingSlip/>
    </initiateTask>
    </part>
    </initiateTaskInput>
    OUTPUT FAULT:
    ============
    <fault>
    <bpelFault>
    <faultType>1</faultType>
    <operationErroredFault>
    <part  name="payload">
    <operationErroredFault>
    <faultInfo>java.sql.SQLException: ORA-01461: can bind a LONG value only for insert into a LONG column </faultInfo>
    </operationErroredFault>
    </part>
    </operationErroredFault>
    </bpelFault>
    </fault>
    Please can you help me in resolving this issue.
    Thanks - RK.

    Can we even have the following landscape?
    1. HSS,OHS,Weblogic server,workspace - On a Windows 2008 server
    2. Essbase server,EIS server,EAS server,EIS server - on a Linux server
    3. Oracle database on another linux server.
    my questions is, can we have the installation and configuration done considering the OS (wid and Linux), as described in points 1&2 above.
    I guess I read somewhere, that all the web applications can be deployed to either all windows or to all Linux OS servers? - Is it correct?

  • Human workflow in catch construct

    Hi,
    I have a requirement that , whenever business fault occurs I want to throw it explicitly. In catch block, I want to catch it , and I want to have a human workflow activity with updatable payload.
    when i am trying to do this, i got following error while compileing....
    Error(228):
    [Error ORABPEL-10051]: multiple create instance activity
    [Description]: in line 228 of "D:\BPEL\source\samples\tutorials\107.Exceptions\Application1\FaultHandlingDemo\PayLoad\bpel\PayLoad.bpel", Conflicting createInstacne="yes". Instance is already created by another activity.
    [Potential fix]: Remove createInstance="yes" attribute from this activity.
    can we have a human workflow activity inside catch construct?
    why this error is coming? can anyone pleace help me....
    thanks

    Hi,
    Your scenario is possible. We have similar processes. It seems the error is caused by a BPEL activity in your process that has the createInstance parameter set to yes while the instance is already started.

Maybe you are looking for

  • Oracle Client 11gR2 installation issue on RHEL v5.4 64-bit

    Hi, I am trying to install Oracle Client software 11gR2 on RHEL v5.4 64-bit. I have resolved all the libraries dependency as well as Kernel changes as suggested by the installer. The error in the log file is as attached. At present I have "skipped" t

  • Battery suddenly draining fast, phone warm/hot

    I've had the phone since December and never had an issue with battery life. It normally lasts all day with no interim charge and I use it on and off all day for Facebook, Yahoomail, texting. Starting this morning, the battery drained to nothing in le

  • Opening a file in Application Server

    Hi Friends, I have a file 'abc' in application server, and i don't know the extension of it . while trying to open it using OPEN DATASET   statement, it fails because of no extension. I have tried using 'abc.*'  in the open dataset   statement but it

  • SQLAllocHandle on SQL_HANDLE_ENV failed - JDBC-ODBC Error

    Hai, i am connecting the Oracle 8i by using the JDBC-ODBC Driver. When i get connection by using the DriverManager, it throws the following Error. java.sql.SQLException: [Microsoft][ODBC Driver Manager] Driver's SQLAllocHandle on SQL_HANDLE_ENV faile

  • After adopting Firefox 19.0 as default browser, I experience numerous occurrences of Blue Screen errors with MS XP

    Since I have installed Firefox 19.0 (first time installation and usage), my computer crashes several times a week: the Blue Screen Error comes up and I have to turn down my computer. I've run all recommended system and disk checks. I also have Norton