ORABPEL-11017 Error while translating message to native format

Hello I and trying to do a simple read and write file adapter. When I try and map the variables in the xls file it seems to work right but I run the BPEL and I get this output :(
ORABPEL-11017
[2010/01/20 15:52:19]
Faulted while invoking operation "Write" on provider "WriteFileAdaper".
- <messages>
- <input>
- <Invoke_1_Write_InputVariable>
- <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="readrecord">
- <readrecord xmlns:tns="http://TargetNamespace.com/ReadFileAdapter" xmlns="http://TargetNamespace.com/ReadFileAdapter">
<tns:name/>
<tns:number/>
<tns:email/>
</readrecord>
</part>
</Invoke_1_Write_InputVariable>
</input>
- <fault>
- <bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
- <part name="code">
<code>
null
</code>
</part>
- <part name="summary">
<summary>
file:/C:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_BPELProcess_1.0_f1f4eaf21f2ea0f6ab23787c642f300a.tmp/WriteFileAdaper.wsdl [ Write_ptt::Write(readrecord) ] - WSIF JCA Execute of operation 'Write' failed due to: Translation Error.
Error while translating message to native format [Caused by: Error in definition of native data.
No style found to read the native data for <element name="name">.
Must specify a style at <element name="name"> to read the corresponding native data.
; nested exception is:
     ORABPEL-11017
Translation Error.
Error while translating message to native format [Caused by: Error in definition of native data.
No style found to read the native data for <element name="name">.
Must specify a style at <element name="name"> to read the corresponding native data.
Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
</summary>
</part>
- <part name="detail">
<detail>
null
</detail>
</part>
</bindingFault>
</fault>
</messages>
Here is the XSD:
<?xml version="1.0" encoding="UTF-8" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
targetNamespace="http://TargetNamespace.com/ReadFileAdapter"
xmlns:tns="http://TargetNamespace.com/ReadFileAdapter"
elementFormDefault="qualified"
attributeFormDefault="unqualified" nxsd:encoding="ASCII" nxsd:stream="chars" nxsd:version="NXSD">
<xsd:element name="readrecord">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="name" type="xsd:string" nxsd:terminatedBy="," nxsd:quotedBy="&quot;">
</xsd:element>
<xsd:element name="number" type="xsd:string" nxsd:terminatedBy="," nxsd:quotedBy="&quot;">
</xsd:element>
<xsd:element name="email" type="xsd:string" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;">
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<!--NXSDWIZ:F:\BPEL-Training\insert.txt:-->
<!--USE-HEADER:false:-->

Are you using opaque schema or custom defined schema?
Make your File Outbound Adapter from Opaque to the same Schema as you used for input. Modify the InputVariable to Outbound File Adatper Message Type to the Schema's Element . Modify the PL Property for your Directory Structure for inbound and outbound.

Similar Messages

  • Error while translating message to native format: ORABPEL-11017

    please help me out in resolving the problem , please post me reply ASAP.
    <bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="code">
    <code>null
    </code>
    </part>
    -<part name="summary">
    <summary>
    file:/C:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_BPELProcess_FileAdp_1.0_df7eeb4ec4c88865a7039ac8c70dced3.tmp/WriteFile.wsdl [ Write_ptt::Write(Root) ] - WSIF JCA Execute of operation 'Write' failed due to: Translation Error.
    Error while translating message to native format [Caused by: Element 'dno' not expected.]
    ; nested exception is:
         ORABPEL-11017
    Translation Error.
    Error while translating message to native format [Caused by: Element 'dno' not expected.]
    Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.</summary>
    </part>
    -<part name="detail">
    <detail>null
    </detail>
    </part>
    </bindingFault>

    Hi,
    wrong forum, see BPEL
    Frank

  • Jdev11.1.1.6.0-Error while translating message to native format-FileWrite

    Im reading a file from a service and transforming the data and writing them into a file through the external reference using a Mediator component.
    I have no problem while building or deploying.
    But while executing I get an error as follows:
    Non Recoverable System Fault :
    Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'WriteAppointmentRequestInLogFile' failed due to: Translation Error. Translation Error. Error while translating message to native format. Please make sure that the payload for the outbound interaction conforms to the schema. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    My input is a File Adpater Read operation and output is File Adapter Write operation.
    The schemas are as below:
    Input schema:
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    xmlns:tns="http://stmatthews.hospital.com/ReadFileDoctorsAppointmentRequest"
    targetNamespace="http://stmatthews.hospital.com/ReadFileDoctorsAppointmentRequest"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified"
    nxsd:version="NXSD"
    nxsd:stream="chars"
    nxsd:encoding="US-ASCII"
    <xsd:element name="doctorAppointmentRequestRoot"><xsd:complexType>
    <xsd:sequence>
    <xsd:element name="doctorAppointmentRequest" minOccurs="1" maxOccurs="unbounded">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="C1" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C2" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C3" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C4" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C5" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C6" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C7" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C8" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C9" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C10" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C11" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C12" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C13" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C14" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C15" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    Output Schema:
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    xmlns:tns="http://stmatthews.hospital.com/LogDoctorAppointmentRequests"
    targetNamespace="http://stmatthews.hospital.com/LogDoctorAppointmentRequests"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified"
    nxsd:version="NXSD"
    nxsd:stream="chars"
    nxsd:encoding="US-ASCII"
    <xsd:element name="AppointmentRequestsLog"><xsd:complexType>
    <xsd:sequence>
    <xsd:element name="AppointmentRequest" minOccurs="1" maxOccurs="unbounded">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="C1" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C2" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C3" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C4" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C5" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C6" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C7" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C8" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C9" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    <!--NXSDWIZ:C:\SOAHandbook\DoctorsAppointmentRequestProcessor\DoctorAppointmentRequestProcessor\samples\Logged_DoctorsAppointmentRequestFile.txt:-->
    <!--USE-HEADER:false:-->
    Transformation XSL used in Mediator:
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsl:stylesheet version="1.0"
    xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/file/DoctorsAppointmentRequestProcessor/DoctorAppointmentRequestProcessor/ReadFileDoctorsAppointmentRequest"
    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:pc="http://xmlns.oracle.com/pcbpel/"
    xmlns:bpm="http://xmlns.oracle.com/bpmn20/extensions"
    xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:socket="http://www.oracle.com/XSL/Transform/java/oracle.tip.adapter.socket.ProtocolTranslator"
    xmlns:mhdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.mediator.service.common.functions.MediatorExtnFunction"
    xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
    xmlns:imp1="http://stmatthews.hospital.com/ReadFileDoctorsAppointmentRequest"
    xmlns:dvm="http://www.oracle.com/XSL/Transform/java/oracle.tip.dvm.LookupValue"
    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
    xmlns:med="http://schemas.oracle.com/mediator/xpath"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
    xmlns:ns1="http://stmatthews.hospital.com/LogDoctorAppointmentRequests"
    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
    xmlns:xdk="http://schemas.oracle.com/bpel/extension/xpath/function/xdk"
    xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:bpmn="http://schemas.oracle.com/bpm/xpath"
    xmlns:ns0="http://xmlns.oracle.com/pcbpel/adapter/file/DoctorsAppointmentRequestProcessor/DoctorAppointmentRequestProcessor/LogDoctorAppointmentRequests"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
    exclude-result-prefixes="xsi xsl tns pc plt wsdl imp1 jca xsd ns1 ns0 xp20 bpws bpel bpm ora socket mhdr oraext dvm hwf med ids xdk xref bpmn ldap">
    <xsl:template match="/">
    <ns1:AppointmentRequestsLog>
    <ns1:AppointmentRequest>
    <ns1:C1>
    <xsl:value-of select="xp20:current-date()"/>
    </ns1:C1>
    <ns1:C2>
    <xsl:value-of select='substring-before("doctor1234_20120926_helloworld","_")'/>
    </ns1:C2>
    <ns1:C4>
    <xsl:value-of select="concat(/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C2,/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C3)"/>
    </ns1:C4>
    <ns1:C5>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C4"/>
    </ns1:C5>
    <ns1:C6>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C5"/>
    </ns1:C6>
    <ns1:C7>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C12"/>
    </ns1:C7>
    <ns1:C8>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C14"/>
    </ns1:C8>
    <ns1:C9>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C15"/>
    </ns1:C9>
    </ns1:AppointmentRequest>
    </ns1:AppointmentRequestsLog>
    </xsl:template>
    </xsl:stylesheet>
    Just in case if you are aware, Im trying the example in Lucas Jellema's book Chapter 7 and Im getting the error there in the first example project.
    I have seen few very old threads on this problem in the forum but none of them had any answers so opening up a new one.
    Thanks.

    Your transformation with for-each look is incorrect.
    This is what you have right now:
    <ns1:AppointmentRequestsLog>
    <xsl:for-each select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest">
    <ns1:AppointmentRequest>
    <ns1:C1>
    <xsl:value-of select="xp20:current-date()"/>
    </ns1:C1>
    <ns1:C2>
    <xsl:value-of select='substring-before("doctor1234_20120926_helloworld","_")'/>
    </ns1:C2>
    <ns1:C3>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C2"/>
    </ns1:C3>This is the correct way to write for-each within XSLT:
    <ns1:AppointmentRequestsLog>
    <xsl:for-each select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest">
    <ns1:AppointmentRequest>
    <ns1:C1>
    <xsl:value-of select="xp20:current-date()"/>
    </ns1:C1>
    <ns1:C2>
    <xsl:value-of select='substring-before("doctor1234_20120926_helloworld","_")'/>
    </ns1:C2>
    <ns1:C3>
    <xsl:value-of select="imp1:C2"/>
    </ns1:C3>Also, check the flow trace in the EM console for the instance which errored out and paste here the data which is being sent to the FileWrite Adapter. Also, you need to ensure that any elements which are defined as xs:int should not have empty string as values. For example in your write schema C3 has int. So you should map C3 in XSLT like following:
    <xsl:choose>
    <xsl:when test="imp1:C2 and string-length(imp1:C2) > 0">
    <ns1:C3>
    <xsl:value-of select="imp1:C2"/>
    </ns1:C3>
    </xsl:when>
    <xsl:otherwise>
    <ns1:C3>0</ns1:C3>
    </xsl:otherwise>
    </xsl:choose>

  • Error while translating message to native format

    Hi,
    I am getting the following error.
    file:/D:/product/10.1.3.1/OracleAS/bpel/domains/default/tmp/.bpel_BPELProcess_Wait_1.0_f424c58781ab2927050a79384d0d7535.tmp/writeName.wsdl [ Write_ptt::Write(opaque) ] - WSIF JCA Execute of operation 'Write' failed due to: Translation Error.
    Error while translating message to native format [Caused by: Error in encoded stream, got 1].
    i have created a file adapter for writing to which i am passing some value and the output format is opaque.
    Just check the below one, "Roshx" is one i want to write to the file.
    Invoke_1 (faulted)
    [2008/01/14 15:39:16] Faulted while invoking operation "Write" on provider "writeName".less
    -<messages>
    -<input>
    -<Invoke_1_Write_InputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="opaque">
    <opaqueElement xmlns="http://xmlns.oracle.com/pcbpel/adapter/opaque/">Roshx
    </opaqueElement>
    </part>
    </Invoke_1_Write_InputVariable>
    </input>
    -<fault>
    -<bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>
    file:/D:/product/10.1.3.1/OracleAS/bpel/domains/default/tmp/.bpel_BPELProcess_Wait_1.0_f424c58781ab2927050a79384d0d7535.tmp/writeName.wsdl [ Write_ptt::Write(opaque) ] - WSIF JCA Execute of operation 'Write' failed due to: Translation Error.
    Error while translating message to native format [Caused by: Error in encoded stream, got 1].
    </summary>
    </part>
    </bindingFault>
    </fault>
    </messages
    Please suggest.
    Thanks,
    Rosh

    Hi,
    We can create an xsd like following:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema targetNamespace="http://myorg.com/integration" elementFormDefault="qualified" attributeFormDefault="unqualified" nxsd:encoding="ASCII" nxsd:stream="chars" nxsd:version="NXSD" xmlns:tns="http://myorg.com/integration" xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
         <xsd:element name="file" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eof}">
         </xsd:element>
    </xsd:schema>
    And import it into your BPEL process and before calling write partnerlink assign whatever value you want to "file" element.
    I hope this helps you.
    Thanks,
    -Vidya

  • Orabpel-11017 - Error during WriteFileAdapter INVOKE

    Im seeing this error on the invoke for my file adapter.
    <bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="code"><code>null</code>
    </part><part name="summary"><summary>file:/appl/BPLDVLP2/BPLDVLP2/10.1.3/bpel/domains/default/tmp/.bpel_DEAMS_CDS_O_006_1.1_827490e1edf9683bdeb0f6b178131bcb.tmp/WriteToCDS_File.wsdl [ Write_ptt::Write(Root-Element) ] - WSIF JCA Execute of operation 'Write' failed due to: Translation Error.
    Error while translating message to native format [Caused by: Element 'A_RECORD' not expected.]
    ; nested exception is:
         ORABPEL-11017
    Translation Error.
    Error while translating message to native format [Caused by: Element 'A_RECORD' not expected.]
    Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
    </summary>
    </part><part name="detail"><detail>null</detail>
    </part></bindingFault>
    The error does not occur If I removed the "for-each" XSLT Construct from the target in the transform activity that I use to map into my custom schema. I think this has to do w/ the nxsd: attributes for Record_A or the header_record.
    Any suggestions would be greatly appreciated.
    Below is the custom schema I created for the file adapter
    <xsd:element name="Root-Element">
    <xsd:complexType>
    <xsd:choice minOccurs="1" maxOccurs="unbounded" nxsd:choiceCondition="fixedLength" nxsd:length="1">
    <xsd:element name="HEADER" nxsd:conditionValue="C" nxsd:style="array" nxsd:arrayLength="354" >
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="FILE_ID" type="xsd:string" nxsd:style="fixedLength"
    nxsd:length="4">
    </xsd:element>
    <xsd:element name="ADDRESS" type="xsd:string" nxsd:style="fixedLength" nxsd:length="36">
    </xsd:element>
    <xsd:element name="ORIGINATING_SITE_ID" type="xsd:string" nxsd:style="fixedLength" nxsd:length="2">
    </xsd:element>
    <xsd:element name="SYSTEM_ID" type="xsd:string" nxsd:style="fixedLength" nxsd:length="5">
    </xsd:element>
    <xsd:element name="PROCESSING_DATE_OF_FILE" type="xsd:string" nxsd:style="fixedLength" nxsd:length="8">
    </xsd:element>
    <xsd:element name="AGENCY_LOCATION_CODE" type="xsd:string" nxsd:style="fixedLength" nxsd:length="4">
    </xsd:element>
    <xsd:element name="TOTAL_NUMBER_OF_TRANSACTIONS" type="xsd:string" nxsd:style="fixedLength" nxsd:length="6">
    </xsd:element>
    <xsd:element name="TOTAL_VALUE_OF_TRANSACTIONS" type="xsd:string" nxsd:style="fixedLength" nxsd:length="18">
    </xsd:element>
    <xsd:element name="DATE_FILE_CREATED" type="xsd:string" nxsd:style="fixedLength" nxsd:length="8">
    </xsd:element>
    <xsd:element name="TIME_FILE_CREATED" type="xsd:string" nxsd:style="fixedLength" nxsd:length="4">
    </xsd:element>
    <xsd:element name="FILE_SEQUENCE_NUMBER" type="xsd:string" nxsd:style="fixedLength" nxsd:length="5">
    </xsd:element>
    <xsd:element name="FILLER1" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}">
    </xsd:element>
    <xsd:choice>
    <xsd:element name="A_RECORD" nxsd:lookAhead="0" nxsd:lookFor=" "
    nxsd:style="array" nxsd:arrayLength="354">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="DOCUMENT_REFERENCE_NUMBER"
    type="xsd:string" nxsd:style="fixedLength"
    nxsd:length="30"/>
    <xsd:element name="VOUCHER_NUMBER" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="15"/>
    <xsd:element name="RECORD_TYPE" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="1"/>
    <xsd:element name="PAYMENT_DATE" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="8"/>
    <xsd:element name="SECURITY_CODE" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="2"/>
    <xsd:element name="VOUCHER_CATEGORY" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="1"/>
    <xsd:element name="PAYMENT_METHOD" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="1"/>
    <xsd:element name="VOUCHER_AMOUNT" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="18"/>
    <xsd:element name="CURRENCY_CODE" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="3"/>
    <xsd:element name="OFFICIAL_EXCHANGE_RATE"
    type="xsd:string" nxsd:style="fixedLength"
    nxsd:length="13"/>
    <xsd:element name="SUB_VOUCHER_CATEGORY" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="1"/>
    <xsd:element name="TECHNICIAN_ID" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="3"/>
    <xsd:element name="VOUCHER_STATUS" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="1"/>
    <xsd:element name="PAYEE_NAME" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="95"/>
    <xsd:element name="DUNS_NUMBER" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="20"/>
    <xsd:element name="SSN_TIN" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="9"/>
    <xsd:element name="ALGORITHM" type="xsd:string"
    nxsd:style="fixedLength" nxsd:length="12"/>
    <xsd:element name="FILLER1" type="xsd:string"
    nxsd:style="terminated"
    nxsd:terminatedBy="${eol}"/>
    <xsd:sequence>
    <xsd:element name="B_RECORD" nxsd:conditionValue=" "
    nxsd:style="array" nxsd:arrayLength="354"
    nxsd:cellSeparatedBy="${eol}">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="DOCUMENT_REFERENCE_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="30"/>
    <xsd:element name="VOUCHER_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="15"/>
    <xsd:element name="RECORD_TYPE_CODE"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="1"/>
    <xsd:element name="ROUTING_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="12"/>
    <xsd:element name="ACCOUNT_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="18"/>
    <xsd:element name="ACCOUNT_TYPE" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="2"/>
    <xsd:element name="ADDENDUM_ROUTING_ID"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="1"/>
    <xsd:element name="FILLER1" type="xsd:string"
    nxsd:style="terminated"
    nxsd:terminatedBy="${eol}"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="C_RECORD" nxsd:conditionValue=" "
    nxsd:style="array" nxsd:arrayLength="354"
    nxsd:cellSeparatedBy="${eol}">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="DOCUMENT_REFERENCE_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="30"/>
    <xsd:element name="VOUCHER_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="15"/>
    <xsd:element name="RECORD_TYPE_CODE"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="1"/>
    <xsd:element name="ADDRESS_1" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="55"/>
    <xsd:element name="ADDRESS_2" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="55"/>
    <xsd:element name="ADDRESS_3" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="35"/>
    <xsd:element name="CITY" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="35"/>
    <xsd:element name="ZIP" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="15"/>
    <xsd:element name="COUNTRY_CODE" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="3"/>
    <xsd:element name="FILLER1" type="xsd:string"
    nxsd:style="terminated"
    nxsd:terminatedBy="${eol}"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="D_RECORD" nxsd:conditionValue=" "
    nxsd:style="array" nxsd:arrayLength="354">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="DOCUMENT_REFERENCE_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="30"/>
    <xsd:element name="VOUCHER_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="15"/>
    <xsd:element name="RECORD_TYPE_CODE"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="1"/>
    <xsd:element name="DEPARTMENT_REG"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="2"/>
    <xsd:element name="DEPARTMENT_TRANSFER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="2"/>
    <xsd:element name="FISCAL_YEAR_PROGRAM_YEAR"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="8"/>
    <xsd:element name="TREASURY_MAIN_ACCOUNT"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="4"/>
    <xsd:element name="LIMIT" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="4"/>
    <xsd:element name="PROGRAM_YEAR" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="2"/>
    <xsd:element name="FUND_CODE" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="2"/>
    <xsd:element name="FISCAL_YEAR" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="1"/>
    <xsd:element name="MAJOR_COMMAND"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="2"/>
    <xsd:element name="OPERATING_BUDGET_ACCOUNT_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="4"/>
    <xsd:element name="RESPONSIBILITY_CENTER_COST_CENTER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="6"/>
    <xsd:element name="BUDGET_ACTIVITY"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="8"/>
    <xsd:element name="OBJECT_CLASS" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="5"/>
    <xsd:element name="SALES_CODE" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="3"/>
    <xsd:element name="ADSN" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="6"/>
    <xsd:element name="TRANSACTION_CODE"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="1"/>
    <xsd:element name="APPROPRIATION_AMOUNT"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="18"/>
    <xsd:element name="ACRN" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="2"/>
    <xsd:element name="FMS_CASE_CODE"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="3"/>
    <xsd:element name="FMS_COUNTRY_CODE"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="2"/>
    <xsd:element name="EXPENDITURE_AUTHORITY_VERIFICATION"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="1"/>
    <xsd:element name="IMPLEMENTING_AGENCY_CODE"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="1"/>
    <xsd:element name="FILLER1" type="xsd:string"
    nxsd:style="terminated"
    nxsd:terminatedBy="${eol}"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="E_RECORD" nxsd:conditionValue=" "
    nxsd:style="array" nxsd:arrayLength="354">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="DOCUMENT_REFERENCE_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="30"/>
    <xsd:element name="VOUCHER_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="15"/>
    <xsd:element name="RECORD_TYPE_CODE"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="1"/>
    <xsd:element name="ENTITLEMENT_LOCATION_CODE"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="4"/>
    <xsd:element name="AMT_PAID_TO_NATIONS_BANK"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="20"/>
    <xsd:element name="SSN" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="15"/>
    <xsd:element name="PAYEE_NAME" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="50"/>
    <xsd:element name="VOUCHER_NUMBER_MASTER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="15"/>
    <xsd:element name="PAYMENT_DATE" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="8"/>
    <xsd:element name="PAYMENT_TO_TRAVELER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="9"/>
    <xsd:element name="INTEREST_PAID_TO_NATIONS_BANK"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="18"/>
    <xsd:element name="TOTAL_AMT_DISBURSED"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="18"/>
    <xsd:element name="TRIP_RECORD_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="6"/>
    <xsd:element name="INVOICE_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="24"/>
    <xsd:element name="INVOICE_DATE" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="8"/>
    <xsd:element name="NATIONS_BANK_CBA_HOLDER_DUNS_NUMBER"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="20"/>
    <xsd:element name="REMITTANCE_ADVICE"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="10"/>
    <xsd:element name="DUNS_4" type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="20"/>
    <xsd:element name="TRANSACTION_ID"
    type="xsd:string"
    nxsd:style="fixedLength"
    nxsd:length="9"/>
    <xsd:element name="FILLER1" type="xsd:string"
    nxsd:style="terminated"
    nxsd:terminatedBy="${eol}"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:choice>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="Z_RECORD" nxsd:conditionValue="Z" nxsd:style="array" nxsd:arrayLength="354" >
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="RECORD_TYPE" type="xsd:string" nxsd:style="fixedLength" nxsd:length="14">
    </xsd:element>
    <xsd:element name="TOTAL_A_RECORD_COUNT" type="xsd:string" nxsd:style="fixedLength" nxsd:length="9">
    </xsd:element>
    <xsd:element name="SUM_OF_A_RECORDS" type="xsd:string" nxsd:style="fixedLength" nxsd:length="18">
    </xsd:element>
    <xsd:element name="TOTAL_D_RECORD_COUNT" type="xsd:string" nxsd:style="fixedLength" nxsd:length="9">
    </xsd:element>
    <xsd:element name="SUM_OF_D_RECORDS" type="xsd:string" nxsd:style="fixedLength" nxsd:length="10">
    </xsd:element>
    <xsd:element name="Algorithm" type="xsd:string" nxsd:style="fixedLength" nxsd:length="12">
    </xsd:element>
    <xsd:element name="FILLER1" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}">
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:choice>
    </xsd:complexType>
    </xsd:element>

    Hi,
    Have you added 'for-each' for each node in XSL file.
    Also can you please paste the XSD with complete namespaces and the XSL file also.
    Thanks
    Rahul

  • Urgent Help Req.: Exception=ORABPEL-11162 Error while reading native data

    Hi All,
    I am getting below error: Exception=ORABPEL-11162
    Error while reading native data.
    [Line=6, Col=7|http://forums.oracle.com/forums/] Not enough data available in the input, when trying to read data of length "22" for "element with name PurOrderNum" from the specified position, using "style" as "fixedLength" and "length" as "22".
    Ensure that there is enough data from the specified position in the input.
    Let me also give you the brief scenario of what I am trying to achieve.
    INTERFACE FUNCTIONING:_
    I have an interface which reads the records in a file in a chunk through ChunkRead adapter and and after one successful reading if chunk it calls the DB adapter to insert the records in the table.
    Now these records are committed and next chunk is read and the process goes on till all the records are read.
    After this the API is called which does the processing of these records.
    Inserting records in the DB is a XA transaction which means if anything goes wrong while inserting the data, the records which are added earlier are rolled back.
    ISSUE:_
    Now the issue comes when I do the negative testing. Since my file is based on fixed length schema., I change the length of last record from 15 to 13. (say total are 10 records)
    Now what happens is when chunkread tries to read the record of 15 length it gets only 13 characters and hence ignores the records.
    But the chunkread reads all other 9 records correctly and sends this to DB adapter which now inserts them correctly in the DB.
    But being a global transaction I want that if any record is missing from DB in comparison to those in file then whole transaction should roll back.
    So I am unable to make this whole process as global transaction. This is because the ChunkRead adapter inspite of detecting the error doesn&rsquo;t throw it back.
    Moreover if this problem occurs in say next chunk then also I am unable to find out how to rollback the whole transaction. Because the first chunk was correct.
    So basically two concerns are there:+
    How to detect that chunkread adapter has missed one record?+
    Secondly, If it&rsquo;s detected then how should I rollback the transaction that caused earlier records to enter into database?+
    Please let me know if anyone has faced this issue earlyer and how it got resolved. Any pointers regarding this would be of great help.
    Also attached is the chunkread log for reference.
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2008-10-06T09:23:58.466-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="TRACE"></MSG_TYPE>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>usmlrh01.xyz.com</HOST_ID>
    <HOST_NWADDR>192.168.245.39</HOST_NWADDR>
    <MODULE_ID>esb.server.service.impl.inadapter</MODULE_ID>
    <THREAD_ID>57</THREAD_ID>
    <USER_ID>orasoa</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.245.39:29832:1223297491683:44</UNIQUE_ID><SEQ>130</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>JCA: FileRejector::rejectTextualMessage errList=[oracle.tip.pc.services.translation.xlators.nxsd.ErrorList@a5213b]</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2008-10-06T09:23:58.466-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="TRACE"></MSG_TYPE>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>usmlrh01.xyz.com</HOST_ID>
    <HOST_NWADDR>192.168.245.39</HOST_NWADDR>
    <MODULE_ID>esb.server.service.impl.inadapter</MODULE_ID>
    <THREAD_ID>57</THREAD_ID>
    <USER_ID>orasoa</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.245.39:29832:1223297491683:44</UNIQUE_ID><SEQ>130</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>JCA: FileRejector::rejectTextualMessage badCount=[1]</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2008-10-06T09:23:58.467-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="TRACE"></MSG_TYPE>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>usmlrh01.xyz.com</HOST_ID>
    <HOST_NWADDR>192.168.245.39</HOST_NWADDR>
    <MODULE_ID>esb.server.service.impl.inadapter</MODULE_ID>
    <THREAD_ID>57</THREAD_ID>
    <USER_ID>orasoa</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.245.39:29832:1223297491683:44</UNIQUE_ID><SEQ>130</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>JCA: Rejecting message fileName=/rh01/s01/n01/Distributions/B2B/Gentran/In/855/Test.txt, startLine=4, startColumn=1, endLine=-1, endCol=-1, Exception=ORABPEL-11162
    Error while reading native data.
    [Line=6, Col=7] Not enough data available in the input, when trying to read data of length "22" for "element with name PurOrderNum" from the specified position, using "style" as "fixedLength" and "length" as "22".
    Ensure that there is enough data from the specified position in the input.
    }</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    PFB the version details :
    SOA suite version : 10.1.3.3.1 and JDEV : 10.1.3.3
    Edited by: SOA Team on Oct 6, 2008 10:48 PM

    Just a thought, you could set the terminator for the last field as {eol} instead of length, this means that it should read the last field regardless of the length.
    Depending on the logic of Db adapter the error could be traped due to incorrect length.
    If the file starts each row with a constant(s), e.g. 01 then you can terminate the previous line on that, this is the better option but relys on the file format.
    The other option is a little thing call compensation, ouch. Basically this allows you to back out commited rows but you have to provide all the logic, it is generally something people avoid because of the complexity.
    cheers
    James

  • ORABPEL-9708 Error while querying workflow task WFTask. Caused by:ORA-00936

    Hi,
    I am trying to integrate my Primavera p6 web version8.0 with the BPM setup 11.1.1.3 . The BPM is setup fine.
    But when I integrated with primavera p6 and on load of workflows portlet of p6 web where the BPM tasks are listed, I am getting following exception in BPM console:
    Error while querying workflow task WFTask.
    Check the underlying exception and the database connection information. If the error persists, contact Oracle Support Services. .
    ORABPEL-9708
    Error while querying workflow task WFTask .
    Error while querying workflow task WFTask.
    Check the underlying exception and the database connection information. If the error persists, contact Oracle Support Services. .
    at oracle.bpel.services.workflow.repos.driver.WFTask.getWFTask(WFTask.java:2181)
    at oracle.bpel.services.workflow.repos.driver.PersistencyService.getWFTask(PersistencyService.java:907)
    at oracle.bpel.services.workflow.query.impl.TaskQueryService.queryTasks(TaskQueryService.java:751)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at oracle.bpel.services.workflow.common.WorkflowServiceCacheEventAdvice.invoke(WorkflowServiceCacheEventAdvice.java:89)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at oracle.bpel.services.workflow.test.workflow.ExceptionTestCaseBuilder.invoke(ExceptionTestCaseBuilder.java:155)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at oracle.bpel.services.common.dms.MethodEventAspect.invoke(MethodEventAspect.java:70)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at oracle.bpel.services.common.dms.MethodPhaseEventAspect.invoke(MethodPhaseEventAspect.java:82)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy220.queryTasks(Unknown Source)
    at oracle.bpel.services.workflow.query.ejb.TaskQueryServiceBean.queryTasks(TaskQueryServiceBean.java:120)
    at oracle.bpel.services.workflow.query.ejb.TaskQueryService_oz1ipg_EOImpl.queryTasks(TaskQueryService_oz1ipg_EOImpl.java:1019)
    at oracle.bpel.services.workflow.query.ejb.TaskQueryService_oz1ipg_EOImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:477)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:473)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.sql.SQLSyntaxErrorException: ORA-00936: missing expression
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:95)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:135)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:210)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:473)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:423)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1095)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:201)
    at oracle.jdbc.driver.T4CCallableStatement.executeForDescribe(T4CCallableStatement.java:864)
    at oracle.jdbc.driver.T4CCallableStatement.executeMaybeDescribe(T4CCallableStatement.java:948)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1335)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3568)
    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3620)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1667)
    at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:135)
    at oracle.bpel.services.workflow.repos.driver.WFTask.getWFTask(WFTask.java:2153)
    at oracle.bpel.services.workflow.repos.driver.PersistencyService.getWFTask(PersistencyService.java:907)
    at oracle.bpel.services.workflow.query.impl.TaskQueryService.queryTasks(TaskQueryService.java:751)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at oracle.bpel.services.workflow.common.WorkflowServiceCacheEventAdvice.invoke(WorkflowServiceCacheEventAdvice.java:89)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at oracle.bpel.services.workflow.test.workflow.ExceptionTestCaseBuilder.invoke(ExceptionTestCaseBuilder.java:155)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at oracle.bpel.services.common.dms.MethodEventAspect.invoke(MethodEventAspect.java:70)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at oracle.bpel.services.common.dms.MethodPhaseEventAspect.invoke(MethodPhaseEventAspect.java:82)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy220.queryTasks(Unknown Source)
    at oracle.bpel.services.workflow.query.ejb.TaskQueryServiceBean.queryTasks(TaskQueryServiceBean.java:120)
    at oracle.bpel.services.workflow.query.ejb.TaskQueryService_oz1ipg_EOImpl.queryTasks(TaskQueryService_oz1ipg_EOImpl.java:1019)
    at oracle.bpel.services.workflow.query.ejb.TaskQueryService_oz1ipg_EOImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:477)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:473)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Could anybody please help me out in resolving the issue?
    Thanks and Regards,
    Krish

    I have the same problem with P6 R8 integration with BPM 11g (running on WL 10.3.5.0). Any sugestions how to solve this?

  • Error while downloading. message on E71 GPS USA Ma...

    “Error while downloading” message on E71 with updated GPS USA Maps
    I’m sure I’m not the only one having this problem but I recently updated my maps on my Straight Talk Nokia E71. The phone says I have map download V 3.03 10wk bo4 Mw Open GL LM MN, Map version 0.1.25.114.and I’m using Nokia Ovi Suite 2.2.1.23. After I installed V3.03, I installed it and download the 1.46GB USA map file and the three turn by turn files. But when I first started the GPS app I started getting the following error “Error while downloading”(This is on phone only)
    I have tried to factory reset the phone, re-format the 8GB memory card, remove City data and GF files and even unloaded OVI Suite and reload it. But every time I select GPS app and start to find places or my position, I get "Error while downloading" message. I’m new to this phone and didn’t get a respectable book from Straight Talk. So I don’t know much about this phone or Nokia OS. What is this error and how do I fix it. Also when I try to sync from the phone I get the response "system error". Ovi suite on the PC says I have downloaded all the USA maps and English voice  with street names. Please help I’m at a lost.
    Computer specs
    I am running Win-Vista, with a Broadband connection. 3 GB Ram, 2 gig Pentium dual core.
    Tran’s flash card has plenty room left on card over 5 gigs left.
    If I need to delete a file on the phone please tell me the exact file name because I’m not sure which one to remove from the apps folder.
    Solved!
    Go to Solution.

    @Action_Jackson
    Welcome to the forum!
    Whilst easy for me to say as keep very little data on device, I would suggest backup essential data then delete E:\cities + ,qf file followed by resetting device to "Out of box" state by keying in #7370# then 12345 (default Nokia lock code unless altered by yourself). At this point you would need to open OVI Maps application on device to re-initialise application and re-define necessary folder structure on memory card for device to be recognised by OVI Suite > Maps to re-download your regional mapping.
    Happy to have helped forum with a Support Ratio = 42.5

  • Can't get firefox sync to work. I keep getting 'Error While Syncing' message

    I am on Mac OS X 10.6.4, Snow Leopard on a Mini Mac a year old.
    I got a message from X Marks telling me they were shutting down.
    As I use my bookmarks every day and have thousands of them all sorted into folders I definitely never want to lose them or lose access to them if my house burns down or my computer is stolen!
    I was using Firefox 3.6 and followed X Marks advise and downloaded Firefox Sync...but...won't work....kept giving me the 'Error While Syncing' message after trying to sync for a while. I looked at the blog and tried a few things like resetting password, restarting computer, checking my setting etc., but no deal. So, as the Firefox Sync download page told me that if I was using Firefox 4 beta the feature was built in and I didn't need the download, I then downloaded Firefox 4....which has removed my X Marks option, which was at least viable till after Xmas! and I still have the 'Error While Syncing' message beside the Sync button on my status bar....so now I am completely at a loss. The only thing I can do if I can't fix it up is go back to 3.6 and go on using X Marks while it is still available and pray that you get this sorted out before they dissappear.
    I also like to be able to get my updated bookmarks on the other browsers I use, like Chrome and IE, so I would really appreciate it if you would include this cross browser sync capability as soon as you can. I have pledged X Marks that I would even pay for their service to continue as it seems they are so ahead of anyone else in their service and it is a large pain in the you know where that they can't keep going.
    Thanks. and I hope you can help. From the blogs it seems that I am not the only one having this problem of getting the Firefox Sync working

    @globaltruth
    Thank you for your suggestion. I tried it. Unfortunately, the error message still sits on my statusbar, right after the Firefox Sync image.

  • Error while processing message to remote system

    Hi,
    I am trying to load the data from flat file to R/3. I am using the file adapter to pick the file and RFC adapter to transfer into R/3. I am getting the success status in the sxmb_moni and adapter framework(green for both the adapters). But when i check the status in the RWB message monitoring, I am getting the error.
    I am using the message interface defined in the software component for R/3 system which has a different namespace. When i am trying to upload data, i am getting the error as namespace missing in RWB. The detailed error in RWB is as follows:
    Exception caught by adapter framework: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not get functionname from XML requst: com.sap.aii.af.rfc.RfcAdapterException: failed to read funtionname from XML document: missing namespace declara
    Delivery of the message to the application using connection AFW failed, due to: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not get functionname from XML requst: com.sap.aii.af.rfc.RfcAdapterException: failed to read funtionname from XML document: missing namespace declara.
    The previous thread relating this is:
    Process Integration (PI) & SOA Middleware
    Requesting for a solution.
    Regards,
    Raghavendra

    Hi,
    >>><i>So i tried creating a RFC(using sm59)in the R/3,
    When i try to import the RFC i have created, I am not able to see the one i have created.</i>
    In your R/3 system, go to se38, enter your RFC name. Go to attributes tab, and click on the radio button named "remote enabled"
    This will enable your RFC to be called by an application outside the R/3 system.
    >>><i>Can you please let me know as to what is it that it is connecting to the R/3(destination) and why am i not able to find my RFC.</i>
    You are tyring to log on to your R/3 system, from xi, in order to import the RFC that you have created. Hence you are asked for user id and password.
    You are not able to find your RFC since it has not been remotely enabled or has not been activated.
    Regards,
    Smitha.

  • File to RFC - error while processing message to remote system:com.sap.aii.

    Hi
    i m working on File to RFC scenario. the records are getting displayed in sender CC and receiver CC. But in receiver CC i m also getting the following error:
    Message processing failed. Cause: com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.adapter.rfc.core.client.RfcClientException: JCO.Exception while calling ZRFC in remote system (RfcClient[CC_RIS_STC_PIMASTER_RECEIVER]):com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE:      Screen output without connection to user.    
    Error in processing caused by: com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.adapter.rfc.core.client.RfcClientException: JCO.Exception while calling ZRFC in remote system (RfcClient[CC_RIS_STC_PIMASTER_RECEIVER]):com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE:      Screen output without connection to user.   
    It was working fine few hours earlier but showing this error now. i was giving a SUBMIT program , but stopped that now.
    But still facing the same problem. and in SXMB_MONI its showing recorded for Outbound processing.
    could anyone help.

    Hi
    I am Facing  Following Error When I am trying to call SAP Screen through JCO.jar
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Screen output without connection to user
    Please Guide Whethere it is possible to call SAP screen Through JCO.jar  ot NOT
    Please HELP if it is possible to Call SAP screen through JCO.jar with step and Code
    Thanks
    Vivek

  • INVALID_QUEUE_NAME :  Error while scheduling message using qRFC

    Hello SDNers
    We are currently performing our PI 7.1 upgrade and one of our scenario uses a Sender SOAP of the type EOIO. We tried executing this scenario in PI 7.1 XID environment and in it worked fine without any errors but in our PI 7.1 QA environment it is giving the following errors
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Message Split According to Receiver List
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">SCHEDULE_ERROR</SAP:Code>
      <SAP:P1>XBQOC___*</SAP:P1>
      <SAP:P2>INVALID_QUEUE_NAME</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:Stack>Error while scheduling message using qRFC (queue name = XBQOC___*, exception = INVALID_QUEUE_NAME)</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Can you please exaplian what could be the issue we are facing.
    Thanks.
    Kiran
    Edited by: Kiran Sakhardande on Oct 22, 2008 4:08 PM

    HI Kiran,
    Have gone throgh the following link?
    INVALID_QUEUE_NAME
    Regards
    Sridhar Goli

  • Error while processing message payload Element 'CategoryCode&#39

    Hi Experts,
    I am trying to integrate SAP ECC with TM. I have transferred the sales order from ECC to TM, but its not triggering order based transportation requirement (OTR) instead giving an error Error while processing message payload Element &#39;CategoryCode&#39 and all the xml messages are stuck in inbound queue. The screen shot of the issue is as appended herewith. Please advise.
    Thanks & Regards,
    Aunkur De

    Hi Aunkur,
    The issue will generally  come when a mandatory field in XML which you are not sending either or missed.
    Please check if all mandatory fields are mapped properly.
    Best regards,
    Rohit

  • Error while processing message payload Element PI SXMB_MONI (ECC to TM)

    Dear Experts,
    while processing an XML message in TM using receiver interface IntracompanyTransportationRequestRequest_In , we encounter an error message.
    <SAP:Stack>Error while processing message payload Element &#39;StockTransportOrderReferenceIndicator&#39; missing</SAP:Stack>  
    <SAP:Retry>M</SAP:Retry>
    ssee screenshot attached.
    The field StockTransportOrderReferenceIndicator cannot be located in ECC and I cannot find what the system is expecting to populate here.
    Can somebody propose an approach on how to investigate into this error message for the solution?
    thanks a lot
    Salvador

    Hi Salvador,
    Thanks for your reply. We were able to fix that issue. As of now we have managed to send sales order to TM but getting the following error. Messages are getting failed in SAP TM. Even if the product exists in the system (TM) still the error message persists. I have CIFed location, business partner, product from ECC and everything exists in SAP TM with the same business system group. Kindly advise. Did you happen to face any similar kind of issue during your implementation ?
    Thanks & Regards,
    Aunkur De

  • Error while processing message

    I have WS2RFC interface that use to work. I recieve in the RWB this error message from the RFC Reciever.
    10/6/08 1:20:10 PM aa98b6f0-9398-11dd-94cf-0017a43cc516 Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: resource error: could not get a client from JCO.Pool: com.sap.mw.jco.JCO$Exception: (106) JCO_ERROR_RESOURCE: Connection pool RfcClient[RFC_Reciever]07cef9b030ce3c398f109f93020feffb is exhausted. The current pool size limit (max connections) is 1 connections.: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: resource error: could not get a client from JCO.Pool: com.sap.mw.jco.JCO$Exception: (106) JCO_ERROR_RESOURCE: Connection pool RfcClient[RFC_Reciever]07cef9b030ce3c398f109f93020feffb is exhausted. The current pool size limit (max connections) is 1 connections.
    any ideas?
    Kfir

    In RFC channel increase the maximum connections paramter value to 5. Save and activate.
    Thanks,
    Gujjeti

Maybe you are looking for

  • Creation of new EBO

    I need to know wherther oracle recommends creation of new EBO? if yes how I shall create that.Our situation is like that , we need to pass sourcing ALLOCATION_PERCENT,VENDOR_ID,VENDOR_SITE_ID to pass from PIM to custom legacy system.Please let me kno

  • Choice between UPK in-application help and standard EBS help

    Hi, We are on a EBS 11.5.10 project, implementing UPK. We got UPK in-application help working; changed custom.pll, set the profile option, everything fine. Now we would like the users to have the choice between UPK help (default) and standard EBS hel

  • ERROR IN SELECT-OPTIONS COMPONENT

    Hi Friends, Currently, I am working on SELECT-OPTIONS component, Variants. In component controller WDDOINIT, I have got the instantiated the select-options component. And I have one more pop-up view, in Get_variant action method ,I will be getting th

  • Ipod Software Version 1.1.2 has rendered Ipod useless

    I've had troubles with new Ipod software every time I install it, I don't know why I installed another new crappy update that gives me nothing but pain and agony but here I am. I have a 5th generation 160GB Ipod that has worked just fine and dandy up

  • Earlier versions had a Update button to refresh displayed information Where is that button on v. 4.0.1?

    Earlier versions had a Update button to refresh displayed information Where is that button on v. 4.0.1?