File to JDBC Sync error

Hi All,
I am doing File to JDBC sync mode. I have configured the scenario while trying to execute i am getting error in JDBC communication chennal.
I have create the stucture with help of this link
http://help.sap.com/saphelp_nw04/Helpdata/EN/2e/96fd3f2d14e869e10000000a155106/content.htm
Error while parsing or executing XML-SQL document: Error processing request in sax parser: Error when executing statement for table/stored proc. '<STATEMENT> <FND_VALUES_VLaction="SQL_QUERY">  <table>FND_VALUES_VL</table>  <access>SELECT BOOKS_ID FROM FND_VALUES_VL</access><Key> <BOOKS_ID>6</BOOKS_ID><KEYFIELD>6</KEYFIELD></Key></FND_FLEX_VALUES_VL></STATEMENT> ' (structure 'STATMENT'): java.sql.SQLException: SQL statement to execute cannot be empty or null
This statement i am passing in Table and also in action attribute.
I have created the MT_JDBC_req like this:
<Statment>
<TABLENAME>
<ACTION> attribute JUST I AM PASSING like this "SQL_QUERY" not XML for this
<TABLE>  i am passing the above query
<ACCESS> i am passing the same query
<FILED1>
<FILELD2>
<KEY>
<FILED1>
Thanks,
Venkat.

Hi,
I have done the same thing. my response i have created like MT_JDBC_REQ_response
i can see in sxmb_moni from file to JDBC request its going jdbc response i am not getting.
Error: com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException
Error: com.sap.aii.af.service.util.transaction.api.TxManagerException: Unable to roll back transaction: com.sap.engine.services.ts.exceptions.BaseIllegalStateException
again now in JDBC reciever also i am getting error.
Error while parsing or executing XML-SQL document: Error processing request in sax parser: Error when executing statement for table/stored proc.
in moni response msg its showing like this
  <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
- <!--  Call Adapter
  -->
- <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
  <SAP:Category>XIAdapterFramework</SAP:Category>
  <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
  <SAP:P1 />
  <SAP:P2 />
  <SAP:P3 />
  <SAP:P4 />
  <SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException</SAP:AdditionalText>
  <SAP:ApplicationFaultMessage namespace="" />
  <SAP:Stack />
  <SAP:Retry>M</SAP:Retry>
  </SAP:Error>
could you pls help me where i am doing wrong.
Thanks,
Venkat

Similar Messages

  • XI Flat File to JDBC Mapping Error

    Hi,
    I have been trying to insert some records from a flat file into a sybase database using the FILE adapter (with file content conversion) as a sender and the JDBC adapter as a reciever, but I keep getting mapping errors like:
    RuntimeException during appliction Java mapping com/sap/xi/tf/_mm_hh_file__hh_sybase_nombres_</Trace>
      <Trace level="1" type="T">com.sap.aii.utilxi.misc.api.BaseRuntimeException: RuntimeException in Message-Mapping transformation: Cannot produce target element /ns0:mt_hh_sybase_nombres/STATEMENTNAME. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd at com.sap.aii.mappingtool.tf3.AMappingProgram.start
    I have read through some blogs and I still can't figure out what is wrong.
    Flat pipe separated file:
    Hans|Robert|Hahn|Gallegos
    Karina|Maria|Cordoba|Gutierrez
    Datatype for this file looks like this:
       Record                         1
          Row                          1...Unbounded
             Nombre                  1
             SegundoNombre     1
             ApPaterno              1
             ApMaterno             1
    Because the FILE adapter uses Content conversion, the file translates to:
      <?xml version="1.0" encoding="utf-8" ?>
      <ns:hh_test xmlns:ns="http://me.com">
      <Record>
         <Row>
          <Nombre>Hans</Nombre>
            <SegundoNombre>Robert</SegundoNombre>
            <ApPaterno>Hahn</ApPaterno>
            <ApMaterno>Gallegos</ApMaterno>
         </Row>
         <Row>
           <Nombre>Karina</Nombre>
           <SegundoNombre>Maria</SegundoNombre>
           <ApPaterno>Cordoba</ApPaterno>
           <ApMaterno>Gutierrez</ApMaterno>
         </Row>
        </Record>
      </ns:hh_test>
    My database table looks like this:
    Nombres
    ApPaterno
    ApMaterno
    Datatype for this table looks like this:
    STATEMENTNAME    1..Unbounded
      nombres                  1
        action                    optional
        TABLE                  1
        access                  1
          Nombres             1
          ApPaterno           1
          ApMaterno           1
    MAPPINGS as follows:
    Record ------> no mapping
    Row ------> STATEMENTNAME
    Constant ------> action
    Constant ------> TABLE
    Nombre + SegundoNombre ------> Nombres
    ApPaterno ----> ApPaterno
    ApMaterno ----> ApMaterno
    How do I do the mapping ? I've been through a lot of blogs and threads but I haven't found an example like this, a flat pipe separeted multiline file with records to be inserted in a database.
    Message was edited by:
            Hans Hahn

    Hans,
    The error shows you have an error in mapping. Also you have mapped constant for ACTION and TABLE. Here you have to hardcode the value INSERT or UPDATE etc for ACTION and the name of the table for TABLE.
    Check this weblog where he has mentioned everything what you are looking for:
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30
    Also once when you are done with mapping try to execute it in the test tab of mapping editor.
    ---Satish

  • Loading big XML files using JDBC gives errors

    Hi,
    I've created a XMLType table using binary storage, with the restriction that any document stored has a (any) schema:
    CREATE TABLE XMLBIN OF XMLTYPE
    XMLTYPE STORE AS BINARY XML
    ALLOW ANYSCHEMA;Then I use JDBC to store a relatively large document using the following code:
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    String connectionString = "jdbc:oracle:thin:@host:1521:sid";
    File f = new File("c:\\temp\\big.xml");
    Connection conn = DriverManager.getConnection(connectionString, "username", "password");
    XMLType xml = XMLType.createXML(conn,new FileInputStream(f));
    String statementText = "INSERT INTO xmlbin VALUES (?)";
    OracleResultSet resultSet = null;
    OracleCallableStatement statement = (OracleCallableStatement)conn.prepareCall(statementText);
    statement.setObject(1,xml);
    statement.execute();
    statement.close();
    conn.commit();
    conn.close();Loading a file of 61Mb (real Mb, in non-IT Mb (where 1Mb seems to be 10^6) it is 63.9Mb) or less doesn't give any errors, loading a file bigger then that gives the following error:
    java.sql.SQLRecoverableException: Io exception: Software caused connection abort: socket write error
            at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:101)
            at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:112)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:173)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:229)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:458)
            at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:960)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1222)
            at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3381)
            at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3482)
            at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:3856)
            at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1373)
            at jdbctest.Tester.main(Tester.java:60)A succesful insert of a 63Mb file takes about 23 seconds to execute. The 70Mb file fails already after a few seconds, so I'm ruling out any time outs.
    I'm guessing there are some buffers that need to be enlarged, but don't have a clue which ones.
    Anyone any idea what might cause the problem and how to resolve?
    My server runs Oracle 11g Win32. The client is Windows running Sun Java 1.6, using ojdbc6.jar and Oracle 11g Client installed.
    Cheers,
    Harald

    Hi Mark,
    The trace log in the OEM shows me:
    Errors in file d:\oracle11g\app\helium\diag\rdbms\helium\helium\trace\helium_ora_6948.trc  (incident=7510): ORA-07445: exception encountered: core dump [__intel_new_memcpy()+613] [ACCESS_VIOLATION] [ADDR:0x0] [PC:0x6104B045] [UNABLE_TO_WRITE] []  If needed I can post the full contents (if I find out how, am still a novice :-))
    Cheers,
    Harald

  • File to JDBC scenario error

    hi ,
    I am getting an error like "Error while parsing or executing XML-SQL document: Error processing request in sax parser: Error when executing statement for table/stored proc. 'ADDRESS' (structure 'insert'): java.sql.SQLException: XXXXXX: integrity constraint (XXXXXX) violated - parent key not found ".  what cld be the possible error.
    plz help

    Hi
    check your Generated query format at runtime.
    At runtime you can find the genereated sql statements by doing configuraitons in Receiver JDBC adapter.
    In the JDBC Receiver adapter you have the Advanced Properties .
    Over there enter the following
    left column logSQLStatement
    right column true
    To see the query created ..
    Login to adapter monitoring ..select the relevant jdbc adapter.
    Now when any message is processed by the jdbc adapter in adapter monitoring at that time you will see a message link. When you click on that link a new window will open. In that window if you click on page down you will get to see the sql statement generated by the jdbc adapter.
    In case Update query use Serilazable

  • Multiline Error for File To JDBC

    Hi All,
    I am doing a File to JDBC Sync Scenario Multi line Scenario.
    my data structure outbound is .....
    <Record>
    <Row>
    <Id></Id>
    <Name></Name>
    <Job></Job>
    <Company></Company>
    </Row>
    </Record>
    and Inbound data structure is.......
    <Employee>
    <acction>TableName</acction>
    <access>
         <Id></Id>
         <Name></Name>
         <Job></Job>
         <Company></Company>
    </access>
    </Employee>
    <key>
         <Id></Id>
    </key>
    Error while parsing or executing XML-SQL document: Error processing request in sax parser: Error when executing statement for table/stored proc. 'Employee' (structure 'Table'): java.sql.SQLException: FATAL ERROR: Column 'Key' does not exist in table 'Employee'
    I am using to send the data through Text File. File is picking but there is no response. The above Error is showing. Could you please help me to solve the problem.
    Thanks,
    Ashok.

    Hi Ashok,
         In this File to JDBC Scenario,In receiver JDBC having standard structure u can follow,
    Standard structure for receiver JDBC is:
    Example:
    STATEMENT NAME
        Action         Attribute
        TableName  Element
        Access       Element
          empid
          empname
          address
    , I thought u mistake in structure itself, because the TableName can be passed to Action field.Please check it and do it.
    Regards,
    Sateesh

  • Error in File-XI-JDBC Scenario

    Dear All,
    I am working on File-XI-JDBC scenario which is using stored procedure (SP_UPDATE). When I am processing the file it is giving me the following error in the message monitoring:
    Unable to execute statement for table or stored procedure. 'SP_UPDATE' (Structure 'Statement') due to java.sql.SQLException: ERROR: Invalid XML document format for stored procedure: 'type="<SQL-type>"' attribute is missing for element 'access' (Setting a SQL-type (e.g. INTEGER, CHAR, DATE etc.) is mandatory !)
    Please guide me what is this error all about and how this can be resolved.
    Warm Regards,
    N.Jain

    Dear All,
    Now, I am able to update the SQL Server database but only one record is coming at the target. Can anyone please guide me what is he error in my Data types o in my mappings. Following is the source Data Type:
    MT_TEST_FILE_T179T      1..1     DT_TEST_FILE_T179T
         ROOT                         1..unbounded
            PRODH                    1..unbounded     xsd:string
            VTEXT                      1..unbounded     xsd:string
            DATUM                     1..unbounded     xsd:string
    Following is the target Data Type:
    MT_TEST_JDBC_T179T      1..1     DT_TEST_JDBC_T179T
         STATEMENT                1..1
            SP_UPDATE             1..1
                action                    required     xsd:string
                TABLE                  1..1                     xsd:string     
                    PRODH             1..unbounded     xsd:string
                       type               optional            xsd:string
                    VTEXT               1..unbounded     xsd:string
                       type               optional            xsd:string
                    DATUM              1..unbounded     xsd:string
                       type               optional            xsd:string
    Following are the mappings done:
    EXECUTE-->@action
    storedprocedurename-->TABLE
    PRODH-->PRODH
    VTEXT-->VTEXT
    DATUM-->DATUM
    CHAR-->@type.
    With this stucture and mapping i am able to insert only one recored in the database even though there are multiple entries in the file.
    Please guide me in solving this error so that multiple records can be inserted.
    Warm Regards,
    N.Jain

  • Strange error in File-XI-JDBC scenario

    Dear All,
    I am working currently on File-XI-JDBC scenario and is facing with a stange problem.
    I have writtern one simple query which is downloading the data from R/3 and is sending to XI Server local folder. From that folder File is getting picked by XI and is posted into SQL database.
    Now, when I am generating the required file from R/3-DEV server then my scenario is getting executed successfully but if file is generated thru R/3-QAS Server then the scenario is giving the following error "Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'MARA_UPDATE' (structure 'Statement'): java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Error converting data type nvarchar to smalldatetime."
    Also, if I am copying the complete data from the error file and paste it into a new file and executing again then the scenario is executing correctly.
    I have checked the payload and didn't find anything there.
    Kindly help me in solving this error.
    Regards,
    N.J

    Hi Farooq,
    Thanx for your reply. But this scenario is running when we are sending the file from R/3-DEV Server and also if I am copying all the contents of the error file and pasting it into a new file and then processing the file then the scenario is getting executed and I am getting no error with the same data which I have processed earlier and has thrown error.
    Reg,

  • File-XI-JDBC error

    Hello XI Gurus,
         Thanks for all the help so far. Right now I am in the process of doing file to jdbc scenario. I am following this link: /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30
    <b>I am getting the follwoing error in the JDBC adapter monitoring:</b>
    Receiver Adapter v2606 for Party '', Service 'JDBC_Service':
    Configured at 16:31:32 2006-09-08
    Last message processing started 16:47:07 2006-09-08, Error: TransformException error in xml processor class, rollback:
    Error processing request in sax parser: No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)
    SXMB_Moni says that the message has been processed succesfully.
    Here are my data:
    <b>Here is my Source XML(XI is picks this xml file thru file adapter):</b>
    <p2:data_filesender_MT xmlns:p2="http://filetojdbc">
       <EMPID>JDK</EMPID>
       <EMPNAME>JohnDoe</EMPNAME>
       <EMPAGE>3</EMPAGE>
       <FLAG>Yes</FLAG>
    </p2:data_filesender_MT>
    <b>Here is my target XML (in the message mapping test window)</b>
    <p2:data_jdbcreceiver_MT xmlns:p2="http://filetojdbc">
       <STATEMENTNAME>
          <Table1>
             <action>INSERT</action>
             <TABLE>Table1</TABLE>
             <access>
                <EMPID>JDK</EMPID>
                <EMPNAME>JohnDoe</EMPNAME>
                <EMPAGE>3</EMPAGE>
                <FLAG>Yes</FLAG>
             </access>
          </Table1>
       </STATEMENTNAME>
    </p2:data_jdbcreceiver_MT>
    Please let me know what I am doing wrong:
    Regards,
    N.S

    Hi Swamy,
    As Bhavesh mentioned check the  mapped xml message i.e JDBC message structure. By seeing the your post, you mentioned action as a element. It should be attribute.
    <p2:data_jdbcreceiver_MT xmlns:p2="http://filetojdbc">
    <STATEMENTNAME>
    <Table1 action = INSERT</Table1>
    <TABLE>Table1</TABLE>
    <access>
    <EMPID>JDK</EMPID>
    <EMPNAME>JohnDoe</EMPNAME>
    <EMPAGE>3</EMPAGE>
    <FLAG>Yes</FLAG>
    </access>
    </Table1>
    </STATEMENTNAME>
    </p2:data_jdbcreceiver_MT>
    In this Table1 should be your Table Name.
    To know more
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2e/96fd3f2d14e869e10000000a155106/content.htm
    btw what is the error in the RWB->message monitoring->Message DisplaY tool . also check JDBC communication channel in the Adapter monitoring
    Regards,
    Moorthy

  • File to JDBC error

    Dear All,
    I have working on a file to JDBC scenario, while i am executing the scenario I am getting the following error message in receiver JDBC.
    Error while parsing or executing XML-SQL document: Error processing request in sax parser: No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)
    Regards,
    Nithiyanandam

    Dear All,
    Now that I able to insert the record into the oracle database. But the problem is I am able to insert only one record at a time and not multiple records.
    My mapping is like this
    Source                                                Target
    MT_Sender_File(1 to1)                          MT_Receiver_JDBC(1 to 1)
           row (1 to unbound)                            Statement(1 to 1 Not mapped to any field
               EMPNAME(1 to unbound)                 EMPLOYEE(1 to 1 Tablename mapped to row)
               EMPNUMBER(1 to unbound)               action(Attribute required mapped to INSERT)
               AGE(1 to unbound)                                  access(1 to unbound mapped to row)
               ***(1 to unbound)                                        EMPNAME(1 to unbound mapped to EMPNAME)                                                                               
    EMPNUMBER(1-unbnd map to EMPNUMBER)                                                                               
    AGE(1 to unbound mapped to AGE)                                                                               
    ***(1 to unbound mapped to ***)
    But stl im not able to insert multiple records.please let me know how to insert multiple records in this structure.
    Regards,
    Nithiyanandam

  • Error Handling in RFC- JDBC sync

    Hi all,
    We are having scenario RFC<->XI<->JDBC(Sync),and its working fine also.
    Suppose  exception  occur in RFC->JDBC request mapping,Now is it possible to pass the error back to R/3 ?
    If parsing error occurs in JDBC adapter how to catch this error in error structure of rfc ?
    We observed that if any exception occurs on request side , response mapping will not get executed can anybody explain me why this is happening ?
    Thanks in advance,
    Tuhin

    Hi Gopesh,
    U should follow the steps as below.
    1.Create TCT/IP connection with t-code SM59
      in R/3 and give program id (it is case sensitive also).
    2.Give same program name in Sender RFc communication     channel.Check that this channel is register in your R/3 system with t-code SMGW(Gate way monitor)
    Only this much extra config I have done.
    Thanks,
    Tuhin

  • Error comming in File to JDBC scenario.

    Hi Frnds,
    I am trying to do the File to JDBC scenario and is using the SQLServer.
    After processing the message, it is showing executed successfully in moni but for the receciver communication channel  i am getting the error like---->
    Error during database connection to the database URL 'jdbc:sqlserver://10.112.132.211:1433;databaseName=DemoDB' using the JDBC driver 'com.microsoft.jdbc.sqlserver.SQLServerDriver': 'com.sap.aii.adapter.jdbc.sql.DriverManagerException: Cannot establish connection to URL 'jdbc:sqlserver://10.112.132.211:1433;databaseName=DemoDB': SAPClassNotFoundException: com.microsoft.jdbc.sqlserver.SQLServerDriver'
    What could be the possible solution for it.
    Thnx
    Raj.

    Hi Raj,
    As Prateek mentioned, the error you are getting is because of an improper installation of a driver.
    Check out the doc for the driver installtion steps : [How To Install and Configure External Drivers for the JDBC & JMS Adapters|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f04ce027-934d-2a10-5a8f-fa0b1ed4d88f]
    Also, the following thread contains some more useful links : Re: What's necessary to connect SQL server to XI?
    Thanks,
    Pooja Pandey

  • Error in File to Jdbc.

    Hi all
    I am trying to do a simple File to Jdbc scenario.table has 2 fields empno and empname.i am able to insert records into the database successfull without any data in empname ,but when trying to insert a record with value in empname it is giving me the error " Error when executing statement for table/stored proc. 'EMPLOYEE' (structure 'STATEMENT'): java.sql.SQLException: ORA-00984: column not allowed here  ".
    empname in database is of type varchar and length 100
    and in IR it is of type string.
    plz help me in resolving the issue
    <It is against the rules of Engagement to post a question with the catch of awarding points. Please refrain from the same.>
    Regards
    Bhasker
    Edited by: Bhavesh Kantilal on Dec 3, 2008 10:26 AM

    Hi all
    Thank u for response and feedback.
    my xml payload in adapter engine looks like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:employee_MT xmlns:ns0="http://filetojdbc.com/employee">
    -   <STATEMENT>
    -    <EMPLOYEE action="INSERT">
         <table>EMPLOYEE</table>
    -    <access>
            <EMP_NO>2548</EMP_NO>
            <EMP_NAME>abc</EMP_NAME>
         </access>
        </EMPLOYEE>
       </STATEMENT>
      </ns0:employee_MT>
    is anything wrong in this payload.?
    as mentioned earlier i am able to insert data without the any value in <EMP_NAME>
    please help me in resolve this issue.
    Regards
    Bhasker

  • Home Sync errors with Chrome files

    Recently a bunch of users in our office have been getting constant Home Sync errors, most commonly with Google Chrome files. File Sync opens and lists a number of errors syncing files including:
    Favicons
    History
    History Index 2012-02
    History index 2012-03
    Network Action Predictor
    Shortcuts
    Web Data
    among others. Any idea what's going on? Are the files locked by Chrome or something so Home Sync generates errors? Did something change in Lion or Chrome in the last few weeks because this never happened previously?
    Lion 10.7.3
    Chrome 17.0.963.65

    I ended up having to enforce this from our Open Directory server. You could uncheck "Library" from your homesynced folders on a per machine basis but that will have other consequences because things you would like to have backed up/synced won't be.
    From our mac server: Workgroup Manager->(Computer group name you want to manage)->Preferences->Mobility->Preference Sync->At logout+manually
    So I don't have it sync on login or in the background, only when they are logging out, hopefully warnings won't show up or it will be less intrusive.
    Homesync still has a lot of rough edges, I wish there was a cleaner option

  • Errors in file to jdbc

    possible errors in file to jdbc scenario

    1.mostly the error will be when you give a wrong message structure for corresponding database statements like insert,delete,select etc..
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'xxxxx' (structure 'STATEMENT'): com.microsoft.sqlserver.jdbc.SQLServerException: Cannot insert the value NULL into column 'xxxxx', table 'xxxx"
    2.if ur connection to database is not established properly because of improper driver and connection specification in the communication channel. u will get error as : connection to database cannot be established.

  • Hello friends while doing file to jdbc senario I am getting error

    Hello All,
    while doing file to jdbc senario in sap xi getting error in the receiver communication channel..error is
    2007-07-17 04:11:00 Error SAPEngine_Application_Thread[impl:3]_35 1184625660906 Attempt to establish database connection failed with SQL error java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.
    2007-07-17 04:11:00 Error SAPEngine_Application_Thread[impl:3]_35 1184625660921 Exception caught by adapter framework: JDBC Adapter Receiver Channel RA: Database connection could not be established
    2007-07-17 04:11:00 Error SAPEngine_Application_Thread[impl:3]_35 1184625660921 Delivery of the message to the application using connection AFW failed, due to: JDBC Adapter Receiver Channel RA: Database connection could not be established.
    I am weighting for ur replay...
    Yours,
    Sateesh.j

    Hi,
    This might help you...go through the document..
    http://help.sap.com/saphelp_nw70/helpdata/en/1d/756b3c0d592c7fe10000000a11405a/frameset.htm
    vasanth

Maybe you are looking for