Http adapter call rfc: BAPI_PO_GETDETAIL1has an  error,who can help me!

Hello, everyOne!
I have a question! When I call BAPI_PO_GETDETAIL1.request, I pass on parameters "PURCHASEORDER=5523" which exists in ECC6. However, the return message displays "<message>Document 5523 does not exist</message>". That is non-exist.
I used http_adapter to class BAPI_PO_GETDETAIL1. I am wondering who could tell me which parameters must be filled and how to be filled?
thank you so much!
Edited by: Gavin Tao on Dec 6, 2008 2:26 PM

HI Gavin
Need more information for solving this
My understanding is you are using RFC and calling BAPI_PO_GETDETAIL and its returning details not available.
If the PO exist there is it released. Check with the SD functional person for this
Thanks
Gaurav

Similar Messages

  • "unexpected reference element " error,who can help me?:(

    hi all:
    I am using Jpub tools,I created a webservices client and its PL/SQL wrapper,all are success,but when i test the function in sqlplus,I get a error:
    oracle.j2ee.ws.common.encoding.DeserializationException:unexpected reference element during Deserialization;the element "result" is not defined as a referenceable type
    I traced the response message as follow:
    <?xml version="1.0" encoding="utf-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <ns1:setUserPasswordResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://lcimsforuserinfo.webservice.lcbms.linkage.com">
    <setUserPasswordReturn href="#id0"/>
    </ns1:setUserPasswordResponse>
    <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:SetUserPasswordResponse" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2="http://lcimsforuserinfo.webservice.lcbms.linkage.com">
    <errorDescription xsi:type="soapenc:string">password modify success!</errorDescription>
    <result href="#id1"/>
    </multiRef>
    <multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:int" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">0</multiRef>
    </soapenv:Body>
    </soapenv:Envelope>
    i found the service was successfull executed,so I supect this client can not support the format:"multiRef"....but i don't know how to do........
    who can help me!!
    My WSDL as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions targetNamespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://lcimsforuserinfo.webservice.lcbms.linkage.com" xmlns:intf="http://lcimsforuserinfo.webservice.lcbms.linkage.com" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <!--WSDL created by Apache Axis version: 1.3
    Built on Oct 05, 2005 (05:23:37 EDT)-->
    <wsdl:types>
    <Schema targetNamespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
    <complexType name="GetUserInfoRequest">
    <sequence>
    <element name="servicetype" type="xsd:int"/>
    <element name="username" nillable="true" type="soapenc:string"/>
    </sequence>
    </complexType>
    <complexType name="GetUserInfoResponse">
    <sequence>
    <element name="errorDescription" nillable="true" type="soapenc:string"/>
    <element name="result" type="xsd:int"/>
    <element name="userInfoXML" nillable="true" type="soapenc:string"/>
    </sequence>
    </complexType>
    <complexType name="GetUserDetRequest">
    <sequence>
    <element name="beginTime" nillable="true" type="soapenc:string"/>
    <element name="endTime" nillable="true" type="soapenc:string"/>
    <element name="servicetype" type="xsd:int"/>
    <element name="username" nillable="true" type="soapenc:string"/>
    </sequence>
    </complexType>
    <complexType name="GetUserDetResponse">
    <sequence>
    <element name="errorDescription" nillable="true" type="soapenc:string"/>
    <element name="result" type="xsd:int"/>
    <element name="userDetXML" nillable="true" type="soapenc:string"/>
    </sequence>
    </complexType>
    <complexType name="GetAuthFailRequest">
    <sequence>
    <element name="authDate" nillable="true" type="soapenc:string"/>
    <element name="servicetype" type="xsd:int"/>
    <element name="username" nillable="true" type="soapenc:string"/>
    </sequence>
    </complexType>
    <complexType name="GetAuthFailResponse">
    <sequence>
    <element name="authFailXML" nillable="true" type="soapenc:string"/>
    <element name="errorDescription" nillable="true" type="soapenc:string"/>
    <element name="result" type="xsd:int"/>
    </sequence>
    </complexType>
    <complexType name="GetUserOnlineRequest">
    <sequence>
    <element name="servicetype" type="xsd:int"/>
    <element name="username" nillable="true" type="soapenc:string"/>
    </sequence>
    </complexType>
    <complexType name="GetUserOnlineResponse">
    <sequence>
    <element name="errorDescription" nillable="true" type="soapenc:string"/>
    <element name="result" type="xsd:int"/>
    <element name="userOnlineXML" nillable="true" type="soapenc:string"/>
    </sequence>
    </complexType>
    <complexType name="SetUserPasswordRequest">
    <sequence>
    <element name="admin" nillable="true" type="soapenc:string"/>
    <element name="password" nillable="true" type="soapenc:string"/>
    <element name="servicetype" type="xsd:int"/>
    <element name="username" nillable="true" type="soapenc:string"/>
    </sequence>
    </complexType>
    <complexType name="SetUserPasswordResponse">
    <sequence>
    <element name="errorDescription" nillable="true" type="soapenc:string"/>
    <element name="result" type="xsd:int"/>
    </sequence>
    </complexType>
    </schema>
    </wsdl:types>
    <wsdl:message name="setUserPasswordResponse">
    <wsdl:part name="setUserPasswordReturn" type="impl:SetUserPasswordResponse"/>
    </wsdl:message>
    <wsdl:message name="getUserInfoRequest">
    <wsdl:part name="in0" type="impl:GetUserInfoRequest"/>
    </wsdl:message>
    <wsdl:message name="getUserOnlineRequest">
    <wsdl:part name="in0" type="impl:GetUserOnlineRequest"/>
    </wsdl:message>
    <wsdl:message name="getAuthFailResponse">
    <wsdl:part name="getAuthFailReturn" type="impl:GetAuthFailResponse"/>
    </wsdl:message>
    <wsdl:message name="getUserInfoResponse">
    <wsdl:part name="getUserInfoReturn" type="impl:GetUserInfoResponse"/>
    </wsdl:message>
    <wsdl:message name="getUserDetResponse">
    <wsdl:part name="getUserDetReturn" type="impl:GetUserDetResponse"/>
    </wsdl:message>
    <wsdl:message name="getUserOnlineResponse">
    <wsdl:part name="getUserOnlineReturn" type="impl:GetUserOnlineResponse"/>
    </wsdl:message>
    <wsdl:message name="getUserDetRequest">
    <wsdl:part name="in0" type="impl:GetUserDetRequest"/>
    </wsdl:message>
    <wsdl:message name="setUserPasswordRequest">
    <wsdl:part name="in0" type="impl:SetUserPasswordRequest"/>
    </wsdl:message>
    <wsdl:message name="getAuthFailRequest">
    <wsdl:part name="in0" type="impl:GetAuthFailRequest"/>
    </wsdl:message>
    <wsdl:portType name="LcimsForUserInfo">
    <wsdl:operation name="getUserInfo" parameterOrder="in0">
    <wsdl:input message="impl:getUserInfoRequest" name="getUserInfoRequest"/>
    <wsdl:output message="impl:getUserInfoResponse" name="getUserInfoResponse"/>
    </wsdl:operation>
    <wsdl:operation name="getUserDet" parameterOrder="in0">
    <wsdl:input message="impl:getUserDetRequest" name="getUserDetRequest"/>
    <wsdl:output message="impl:getUserDetResponse" name="getUserDetResponse"/>
    </wsdl:operation>
    <wsdl:operation name="getAuthFail" parameterOrder="in0">
    <wsdl:input message="impl:getAuthFailRequest" name="getAuthFailRequest"/>
    <wsdl:output message="impl:getAuthFailResponse" name="getAuthFailResponse"/>
    </wsdl:operation>
    <wsdl:operation name="getUserOnline" parameterOrder="in0">
    <wsdl:input message="impl:getUserOnlineRequest" name="getUserOnlineRequest"/>
    <wsdl:output message="impl:getUserOnlineResponse" name="getUserOnlineResponse"/>
    </wsdl:operation>
    <wsdl:operation name="setUserPassword" parameterOrder="in0">
    <wsdl:input message="impl:setUserPasswordRequest" name="setUserPasswordRequest"/>
    <wsdl:output message="impl:setUserPasswordResponse" name="setUserPasswordResponse"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="LcimsForUserInfoSoapBinding" type="impl:LcimsForUserInfo">
    <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="getUserInfo">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUserInfoRequest">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
    </wsdl:input>
    <wsdl:output name="getUserInfoResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getUserDet">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUserDetRequest">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
    </wsdl:input>
    <wsdl:output name="getUserDetResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getAuthFail">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getAuthFailRequest">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
    </wsdl:input>
    <wsdl:output name="getAuthFailResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getUserOnline">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUserOnlineRequest">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
    </wsdl:input>
    <wsdl:output name="getUserOnlineResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="setUserPassword">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="setUserPasswordRequest">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
    </wsdl:input>
    <wsdl:output name="setUserPasswordResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="LcimsForUserInfoService">
    <wsdl:port binding="impl:LcimsForUserInfoSoapBinding" name="LcimsForUserInfo">
    <wsdlsoap:address location="http://localhost:8080/services/LcimsForUserInfo"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>

    Two things you need to check
    1) configuration.properties Make sure you have correct app server settings and user name password. If you changed your password you need to update this file also.
    2) Stop WebServer clear web server cache and try reconnect.
    3) Web server logs should provide more details.

  • A StuckThreadMaxTime error; who can help me to analyse the thread dumps

    The StuckThreadMaxTime error freeze my system, no one can logged in.I have double checked the thread dumps, but get no help.
    The following is the thread dumps:
    <2004-12-7 ÉÏÎç05ʱ56·Ö47Ãë GMT+08:00> <Alert> <Log Management> <BEA-170017> <The log file ./myserver/myserver.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <2004-12-7 ÉÏÎç05ʱ56·Ö47Ãë GMT+08:00> <Alert> <Log Management> <BEA-170018> <The log file has been rotated to myserver.log00035. Log messages will continue to be logged in ./myserver/myserver.log.>
    <2004-12-7 ÉÏÎç10ʱ09·Ö32Ãë GMT+08:00> <Warning> <WebLogicServer> <BEA-000337> <ExecuteThread: '10' for queue: 'weblogic.kernel.Default' has been busy for "646" seconds working on the request "com.huawei.oss.rms.resourceaccess.ResourceMgmtSession_1x9h7n_EOImpl", which is more than the configured time (StuckThreadMaxTime) of "600" seconds.>
    <2004-12-7 ÉÏÎç10ʱ09·Ö32Ãë GMT+08:00> <Warning> <WebLogicServer> <BEA-000337> <ExecuteThread: '13' for queue: 'weblogic.kernel.Default' has been busy for "651" seconds working on the request "com.huawei.oss.rms.resourceaccess.ResourceMgmtSession_1x9h7n_EOImpl", which is more than the configured time (StuckThreadMaxTime) of "600" seconds.>
    <2004-12-7 ÉÏÎç10ʱ09·Ö32Ãë GMT+08:00> <Warning> <WebLogicServer> <BEA-000337> <ExecuteThread: '14' for queue: 'weblogic.kernel.Default' has been busy for "650" seconds working on the request "com.huawei.oss.rms.resourceaccess.ResourceMgmtSession_1x9h7n_EOImpl", which is more than the configured time (StuckThreadMaxTime) of "600" seconds.>
    Full thread dump Java HotSpot(TM) VM (1.4.2 1.4.2.03-040401-18:59-PA_RISC2.0 PA2.0 (aCC_AP) mixed mode):
    "ExecuteThread: '14' for queue: 'JmsDispatcher'" daemon prio=5 tid=01c3f778 nid=71 lwp_id=39624 in Object.wait() [0x61abf000..0x61abf4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <6d1d24f8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <6d1d24f8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '13' for queue: 'JmsDispatcher'" daemon prio=5 tid=01c3f610 nid=70 lwp_id=39623 in Object.wait() [0x61b40000..0x61b404f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <6d1d2578> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <6d1d2578> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '12' for queue: 'JmsDispatcher'" daemon prio=5 tid=01c3f4a8 nid=69 lwp_id=39622 in Object.wait() [0x61bc1000..0x61bc14f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <6d1d25f8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <6d1d25f8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '11' for queue: 'JmsDispatcher'" daemon prio=5 tid=01c3f340 nid=68 lwp_id=39621 in Object.wait() [0x61c42000..0x61c424f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <6d1d2678> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.Eÿ

    "ExecuteThread: '14' for queue: 'weblogic.kernel.Default'" daemon prio=5 tid=000883f8 nid=27 lwp_id=39205 runnable [0x630ec000..0x630eb4f0]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at oracle.net.ns.Packet.receive(Unknown Source)
         at oracle.net.ns.DataPacket.receive(Unknown Source)
         at oracle.net.ns.NetInputStream.getNextPacket(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:971)
         at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:941)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:432)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:181)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:543)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:913)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:452)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:984)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2885)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:2926)
         - locked <762d0bd8> (a oracle.jdbc.driver.T4CPreparedStatement)
         - locked <6c837e90> (a oracle.jdbc.driver.T4CConnection)
         at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:92)
         at com.huawei.oss.rms.persistence.ReadOperationPersistenceImpl.getAttributeValue(ReadOperationPersistenceImpl.java:2054)
         at com.huawei.oss.rms.persistence.PersistenceOperationImpl.getAttributeValue(PersistenceOperationImpl.java:516)
         at com.huawei.oss.services.common.Utility.getNameByID(Utility.java:78)
         at com.huawei.oss.services.port.common.RMSPortUtility.setExtraToVO(RMSPortUtility.java:45)
         at com.huawei.oss.services.port.server.PhyPortConnHelper.setExtraToVO(PhyPortConnHelper.java:2046)
         at com.huawei.oss.services.port.server.PhyPortConnHelper.afterGet(PhyPortConnHelper.java:719)
         at com.huawei.oss.services.common.AbstractResourceHelper.getResource(AbstractResourceHelper.java:293)
         at com.huawei.oss.services.port.server.PhyPortConnHelper.rmsGetByPort(PhyPortConnHelper.java:809)
         at com.huawei.oss.services.port.server.PhyPortConnHelper.rmsGetAllPhyConnOfBoard(PhyPortConnHelper.java:1144)
         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:324)
         at com.huawei.oss.services.common.AbstractResourceHelper.directMethod(AbstractResourceHelper.java:489)
         at com.huawei.oss.services.common.AbstractResourceHelper.invokeMethod(AbstractResourceHelper.java:404)
         at com.huawei.oss.rms.resourceaccess.ResourceMgmtSessionEJB.invokeMethod(ResourceMgmtSessionEJB.java:263)
         at com.huawei.oss.rms.resourceaccess.ResourceMgmtSession_1x9h7n_EOImpl.invokeMethod(ResourceMgmtSession_1x9h7n_EOImpl.java:424)
         at com.huawei.oss.rms.resourceaccess.ResourceMgmtSession_1x9h7n_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.activation.ActivatableServerRef.invoke(ActivatableServerRef.java:90)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    "ExecuteThread: '13' for queue: 'weblogic.kernel.Default'" daemon prio=5 tid=00088290 nid=26 lwp_id=39204 runnable [0x6316d000..0x6316c4f0]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at oracle.net.ns.Packet.receive(Unknown Source)
         at oracle.net.ns.DataPacket.receive(Unknown Source)
         at oracle.net.ns.NetInputStream.getNextPacket(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:971)
         at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:941)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:432)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:112)
         at oracle.jdbc.driver.T4CStatement.execute_for_rows(T4CStatement.java:474)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:913)
         at oracle.jdbc.driver.T4CStatement.execute_maybe_describe(T4CStatement.java:383)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:984)
         at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1124)
         - locked <76c0d1f8> (a oracle.jdbc.driver.T4CStatement)
         - locked <6f1ab788> (a oracle.jdbc.driver.T4CConnection)
         at weblogic.jdbc.wrapper.Statement.executeQuery(Statement.java:345)
         at com.huawei.oss.rms.persistence.PersistenceOperationImpl.executeSQL(PersistenceOperationImpl.java:2884)
         at com.huawei.oss.rms.persistence.PersistenceOperationImpl.setVersionFlagNResourceName(PersistenceOperationImpl.java:3137)
         at com.huawei.oss.rms.persistence.PersistenceOperationImpl.makeAssociationValue(PersistenceOperationImpl.java:2600)
         at com.huawei.oss.rms.persistence.ReadOperationPersistenceImpl.getResourceAssociationSet(ReadOperationPersistenceImpl.java:2575)
         at com.huawei.oss.rms.persistence.PersistenceOperationImpl.getResourceAssociationSet(PersistenceOperationImpl.java:603)
         at com.huawei.oss.services.port.common.RMSPortUtility.getSlotByEquip(RMSPortUtility.jÿ

  • Is there anyone who can help me to design a index page

    Hi guys
    I would like to design a index page like this site :
    http://www.hostplate.com
    Is there anyone who can help me ?

    Your example site is built with WordPress (a popular open source framework).
    You'll need to have a good working knowledge of HTML, CSS and some familiarity with PHP code & the ability to set-up a MySql database on your server.  The good news is that there is a wealth of on-line information available to you.
    HTML, CSS, PHP Tutorials - http://w3schools.com/
    Getting Started with WordPress - http://codex.wordpress.org/Getting_Started_with_WordPress
    If all this is outside your comfort zone and you're prepared to hire an experienced web developer to help you,
    feel free to contact me through my web site:  http://alt-web.com
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Someone who can help me to do.  Adobe Bridge CS6 Update 5.0.2 The update is not applicable. Error Code: U44M2P28

    Someone who can help me to do.  Adobe Bridge CS6 Update 5.0.2 The update is not applicable. Error Code: U44M2P28

    be sure to use the correct update (32 or 64 bit).
    http://www.adobe.com/downloads/updates/

  • HT4061 My iphone 4s remains in recovery mode permamently. Itunes wont restore it, constant messages of error 4013 keeps coming up on screen, is there any1 out there who can help before i crack up?

    My iphone 4s remains in recovery mode permamently. Itunes wont restore it, constant messages of error 4013 keeps coming up on screen, is there any1 out there who can help before i crack up?

    Hello Sean,
    It sounds like you are constantly needing to restore your phone because it keeps going into recovery mode. Usually putting a device into recovery mode and restoring it can help isolate an issue to your iPhone hardware if an issue persists afterwards. I would try manually putting it into recovery mode and restoring it 1 more time:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    If that does not resolve it the symptoms indicate to me that it is a hardware issue causing this to happen and would seek service for it:
    iPhone Repair - Other Repairs
    https://www.apple.com/support/iphone/repair/other/
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Hello is there anybody who can help me in german? i have the same problem like the guy with i tunes. it won´t open an give me an error "An application has made an attempt to load the C runtimelibrary incorrectly" Please contact the application´s support..

    I´ve so many privat things on I tunes like pictures, music etc.and i won´t loose them. is there anybody who can help me to save my private things and help me to solve teh problem
    Thanks you for help greetings from austria

    I just had the same error: 
    R6034
    An application has made an attempt to load the C runtime library incorrectly.  Please contact the apps support team for more info.
    I went to http://support.apple.com/kb/ht1925 and did a complete removal and reinstallation of iTunes. You MUST follow the directions here exactly...it's more than just iTunes that must be removed, and it MUST be done in the order in which the support article says.  I followed the exact instructions, and iTunes is back on my machine (no more C runtime error) and you do NOT lose your music...it's all in my library, as it was before.
    Good luck!

  • Hey. I can not sync my iphone with my macbook air. It will not download my purchased music. Writes that there was an unknown error (-42408). Is there anyone who can help me.  Sincerely jimmi

    Hey. I can not sync my iphone with my macbook air. It will not download my purchased music. Writes that there was an unknown error (-42408). Is there anyone who can help me.
    Sincerely jimmi

    Hey joshuafromisr,
    If you resintall iTunes, it should fix the issue. The following document will go over how to remove iTunes fully and then reinstall. Depending on what version of Windows you're running you'll either follow the directions here:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    http://support.apple.com/kb/HT1925
    or here:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Best,
    David

  • Problems about deploy a adapter.Who can help??

    I confirm that the zip file path is right.I use the winrar to create the rar file,and use the winzip to create .sda file.
    Who can help??Thanks very much
    ===========================================================================
    Deployment started Wed Sep 13 13:54:19 GMT+08:00 2006
    ===========================================================================
    Starting Deployment of cmbc.accenture.connector
    Aborted: development component 'cmbc.accenture.connector'/'sap.com'/'SAP AG'/'7.0004.20050713150837.0000':
    Caught exception during application deployment from SAP J2EE Engine's deploy API:
    com.sap.engine.deploy.manager.DeployManagerException: com.sap.engine.services.deploy.container.DeploymentException: Cannot update archive file cmbc_ra.rarerror in opening zip file. Reason:
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).DMEXC)
    Deployment of cmbc.accenture.connector finished with Error (Duration 5609 ms)

    Hi Sky,
    Please ensure that the content of cmbc_ra.sda is the following:
    - META-INF (check in all files if all the names are comliant for your adapter structure)
    - cmbc_ra.rar
    In the cmbc_ra.rar
    META-INF (check the content of ra.xml file)
    cmbc_ra.jar
    Hope this help.
    Francesco Bersani

  • I have an iPhone4 and require the latest software update 4.3.5 every time i try to get it i get a message error 3194 yet i have the latest software of everything! who can help?

    I have an iPhone4 and require the latest software update 4.3.5 every time i try to get it i get a message error 3194 appears yet i have the latest software of everything it is annoying me cause i cant restore my phone either
    ! who can help?

    look around the forum tons of people repport that they can't update
    makes you suspect that apples update servers can't meet the depand of too many users
    trying to update at once

  • In my dock there was this weird program called "tutorial". While throwing away this program I had to fill in my password. Afterwards I tried to change my password, but my old password doesn't work anymore. Who can help?

    In my dock there was this weird program called "tutorial". While throwing away this program I had to fill in my password. Afterwards I tried to change my password, but my old password doesn't work anymore. Who can help?

    What was this program for, or did you just assume it's something you shouldn't have and therefore arbitrarily decide to "throw it away"? Exactly how did you supposedly throw it away?
    If you didn't change your administrator password, there's no reason it shouldn't work now, so that suggests you did something else, or changed it and then forgot what it was.
    You can't recover that password; you can only change it. To do that, you would need to boot from your Snow Leopard DVD, choose your language, then choose Reset Password from the Utilities menu in the top menu bar.

  • Is there anyone who can help me? my Photoshop CC is keep crashing, it doesn't show any error message. Suddenly " program stop responding" after few seconds of launch.

    Is there anyone who can help me? my Photoshop CC is keep crashing, it doesn't show any error message. Suddenly " program stop responding" after few seconds of launch.

    If Photoshop crashes the should be a System crash report generated by your OS. For example Windows

  • Can't see any of my recent calls. Who can help?

    Can't see any of my recent calls,even not the missed ones. Who can help?

    I agree. Visibility of my transactions are not to be found. It appears over the past few days the visible transactions have been harder to find and now are completely gone. How about an update Paypal!

  • HT202213 iTunes: Home sharing can't be activated due to an error (5506). Who can help?

    iTunes: Home sharing can't be activated due to an error (5506). Who can help?
    I have an Apple ID but for some reason iTunes does not recognizes it.
    I have downloaded the latest version of iTunes as well?

    Did you ever figure it out? I am new to itunes and it won't allow me to home share with my daughter because I don't have a credit card.

  • Error Message:"Cannot find or create the font 'WP-MathA'. Some characters may not display or print correctly."  Who can help me solve this problem?

    Some of the pdf files I work with (receive) come up with a comment: “Cannot find or create the font ‘WP-MathA’. Some characters may not display or print correctly.”  Who can help me solve this problem?
    Thank you in advance for  your time.
    Marlen

    Hello Anubha,
    I am having a similar problem on my machine.  I was using Word 2008 and I created a PDF inside Word.
    I am opening the file on the system itself and I am running Windows 8.1.  I am using Version 11 of Reader.
    When the PDF I created (my resume) attempts to open, it says:  cannot find or create the file Times, Bold.  Some characters may not display or print correctly. 
    However, the entire Reader keeps freezing and will not allow me to open or test print the document.  Also, it is not displaying any of the Bold Times New Roman Print.  Can you please help?  Thanks.

Maybe you are looking for

  • Oracle download for Oracle 8.1.7 enterprise edition

    Hi, From where can i download Oracle 8.1.7 for win2k. Need it ASAP. Please reply.

  • Problem with People Picker field in sharepoint 2013 list

    hi friends i have a problem with people picker default newitem.aspx   custom NewItem.aspx why the selection option of the people piker is changing how can i get the default functionality in custom page please help me

  • SAPGUI JAVA 7.20 rev7 - problem with filename popup

    Hi Gurus, i have a macbook pro and i have installed sapgui 7.2 java rev7. When i try to download/upload a file, i use f4 to select a file and the system doesn't open the search file popup. any suggestion? Best Regards M.

  • File size difference between DNG Converter and Lightroom Beta 4

    Hi, I want to go the all-DNG route and am trying several things ATM. I want my files to be as small as possible, thus I disable previews and RAW embedding and enable compression in DNG Converter. In Lightroom, there are no options at all. What I do g

  • Problem summing repeating fields

    For simplicity sake; I have four columns (Travel, Meals, Lodging, Other)that I want a total for line one in column five (line total). I'm also totaling the columns at the bottom. {it works: sum(Travel[*])} I'm using the following FormCalc script to g