JDBC Adapter-Implicit COMMIT--Need to have 1 Transaction

Hi,
I am on XI 3,SP9. We are trying to delete all the records from the table first and then Insert Records into the table.
I have definted seperate Statements for the Database Table Delete and INSERT in my XML Schema for the Receiver JDBC Adapter.
The Problem: After Deleting if there is an Error in the INSERT the Adapter does NOT do a Rollback but it Auto-commits.
Can someone tell me how do I stop this? I want to bundle both the Delete and Insert into 1 transaction.
Here is the output XML from the adpater:
<?xml version="1.0" encoding="UTF-8" ?>
- <ns:root xmlns:ns="urn:genentech:xi:fin_int_056:costcenters:sap_to_adaytum">
- <StatementName1>
  <FI_OUT_COST_CENTER action="DELETE" />
  </StatementName1>
+ <StatementName2>
- <FI_OUT_COST_CENTER action="INSERT">
- <access>
  <COST_CENTER_ID>0001</COST_CENTER_ID>
  <COST_CENTER_NAME>Standard Hierarchy CO Area 0001</COST_CENTER_NAME>
  <PARENT_ID />
  <ELEMENT_LEVEL>0</ELEMENT_LEVEL>
  <TYPE>G</TYPE>
  <START_DATE>19970101</START_DATE>
  <CLIENT>200</CLIENT>
  </access>
  </FI_OUT_COST_CENTER>
  </StatementName2>
- <StatementName2>
+ <FI_OUT_COST_CENTER action="INSERT">
- <access>
  <COST_CENTER_ID>0001-1</COST_CENTER_ID>
  <COST_CENTER_NAME>Administration</COST_CENTER_NAME>
  <PARENT_ID>0001</PARENT_ID>
  <ELEMENT_LEVEL>1</ELEMENT_LEVEL>
  <TYPE>G</TYPE>
  <START_DATE>19970101</START_DATE>
  <CLIENT>200</CLIENT>
  </access>
  </FI_OUT_COST_CENTER>
  </StatementName2>
- <StatementName2>
- <FI_OUT_COST_CENTER action="INSERT">
+ <access>
  <COST_CENTER_ID>0001-1-1</COST_CENTER_ID>
  <COST_CENTER_NAME>Executive</COST_CENTER_NAME>
  <PARENT_ID>0001-1</PARENT_ID>
  <ELEMENT_LEVEL>2</ELEMENT_LEVEL>
  <TYPE>G</TYPE>
  <START_DATE>19970101</START_DATE>
  <CLIENT>200</CLIENT>
  </access>
  </FI_OUT_COST_CENTER>
  </StatementName2>
+ <StatementName2>
- <FI_OUT_COST_CENTER action="INSERT">
- <access>
  <COST_CENTER_ID>SAP-DUMMY</COST_CENTER_ID>
  <COST_CENTER_NAME>SAP dummy</COST_CENTER_NAME>
  <PARENT_ID>0001-1-1</PARENT_ID>
  <ELEMENT_LEVEL>3</ELEMENT_LEVEL>
  <TYPE>C</TYPE>
  <START_DATE>19970101</START_DATE>
  <CLIENT>200</CLIENT>
  </access>
  </FI_OUT_COST_CENTER>
  </StatementName2>
Thanks
Ashish

If an exception occurs in XI 3.0 the JDBC adapter doesn't actually issue a ROLLBACK. It just closes the connection. The problem is that Oracle will then  COMMIT this since the connection was explicitly closed (as opposed to dropped) even if Auto-commit is turned off at the DB level.
SAP has let us know that they will fix this by including the ROLLBACK. It will be included in SP11.
Thanks,
J

Similar Messages

  • HT3702 How can I just prepay say 500 dollars on my itunes account, so that I dont need to have multiple transactions on my credit card...?

    Hello There! How can I just prepay say 500 dollars on my itunes account, so that I dont need to have multiple transactions on my credit card...? Cheers Dilip

    Hello DilipVenkat,
    Welcome to the Apple Support Communities. If you want to have a purchase iTunes Gift Cards to have credit on your account, just purchase an iTunes Gift Card at your local Apple Online Store or through iTunes. Store.
    iTunes: Sending iTunes Gifts
    http://support.apple.com/kb/ht2736
    iTunes Store: How to redeem a code
    http://support.apple.com/kb/HT1574
    Regards,
    -Norm G.

  • JDBC adapter Commit/Rollback

    Hi Guys, I got a question regarding JDBC adapter auto commit. Hopefully you guys can help me :). Until now, when my XI calling a storedprocedure in ORACLE using JDBC adapter, it will automatically commit the calling. When i see my configuration for the JDBC adapter receiver, the checkbox for Enable Autocommit is thicked. My question is, is there anyway that we handle the commit or rollback ourself. How we can handle that? Is it from the BPM or just from the Configuration.
    Thank you very much in advance for all replies, advices and answer. Cheers guys..

    Hi
    Try this out
    You can programmatically set auto commit to true as in follows
    // Load the Oracle JDBC driver
    DriverManager.registerDriver(new oracle.jdbc.OracleDriver());
    // Connect to the database
    // You can put a database hostname after the @ sign in the connection URL.
    Connection conn =
          DriverManager.getConnection ("jdbc:oracle:oci:@", "scott", "tiger");
    // It's faster when auto commit is off
    <b>conn.setAutoCommit (true); </b>
    // Create a Statement
    Statement stmt = conn.createStatement ();
    regards
    krishna

  • Transaction handling in sender JDBC adapter

    Hello,
    In a scenario where a third party application updates a field (counting it up) and we pick up these counts and zero out the field with the sender JDBC adapter, we would like that the third party application is not able to update while the JDBC sender adapter is processing.
    We were under the assumption that the select and update statements of the sender JDBC adapter where executed within the same DB transaction and set the isolation level to "repeatable read" to make sure the third party app. could  not update while the adapter is processing.
    This had no effect.
    Do the select and update statement occur within the same transaction?
    Thanks,
    Dan
    Edited by: Dan Hansen on May 5, 2008 9:58 AM

    Thanks for the answers so far, I have looked through this and can find no reason why the current set up with "repeatable_read" should not work... a little more info. We are running against a MSSQL 2005 database using a table with the following structure.
    CREATE TABLE [dbo].[OPERATION] (
         [WERKS] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
         [AUFNR] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
         [VORNR] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
         [SSAVD] [datetime] NULL ,
         [ARBPL] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
         [MGVRG] [bigint] NULL ,
         [LMNGA] [bigint] NULL ,
         [LTXA1] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
         [ZCONFQTY] [numeric](18, 0) NULL ,
         [ZTIMESTAMP] [datetime] NULL ,
         [ZSTATUS] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
         [STAT] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
         [SSEVD] [datetime] NULL ,
         [FSEVD] [datetime] NULL ,
         [FSAVD] [datetime] NULL ,
         [XMNGA] [bigint] NULL ,
         [RMNGA] [bigint] NULL ,
         [RUECK] [bigint] NULL ,
         [ZPACKQTY] [bigint] NOT NULL ,
         [STEUS] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
         [ZSCRAPQTY] [numeric](18, 0) NULL ,
         [ZREWORKQTY] [numeric](18, 0) NULL ,
         [BEARZ] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
         [BEAZE] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
         [RUEST] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
         [RSTZE] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
    ) ON [PRIMARY]
    GO
    We read information about the quantities per primary key combination with the select statement where the ZSTATUS field is "CONF" and then zero out the quantity field and set the ZSTATUS to CONF2SAP with the update statement.
    Another app counts up the quantities and sets the ZSTATUS to CONF as needed.
    Sometimes we see that we miss a count because we read before someone has increased the quantity but update back after they did and thereby zero out their entry.

  • SAP XI JDBC Adapter

    Hi,
    I have few question and I am requesting you to answer my questions.
    1. What is the purpose of Program ID to specify when we configure the Sender RFC communication Channel?
    2. How to get the JDBC Driver name , connection parameters, Host and Port for the JDBC Communication channel configuration. My Basis consultant said, he has not aware this JDBC Adapter?
    I need to use JDBC Adapter for my JDBCXIFile Scenario. Please explain me the step by step procedure. Please explain me from where we need to get the above parameters and JDBC Driver already configued in XI. I need the Driver name with syntax and connection parameters, host and port.
    3. Where we need to write the SQL Query for SELECT, INSERT, DELETE, and UPDATE in configuring the Receiver JDBC Communication channel?
    I am very thankful to you in advance.
    Nagarjuna.

    Hi,
    I have few question and I am requesting you to answer my questions.
    1. What is the purpose of Program ID to specify when we configure the Sender RFC communication Channel?
    Program ID : Program ID of the registered server program. The selected program ID must uniquely describe the RFC sender channel in the configured gateway (Application Server (Gateway) and Application Server Service (Gateway) parameters). Also this program where you execute your RFC function with specified RFC destination.
    2. How to get the JDBC Driver name , connection parameters, Host and Port for the JDBC Communication channel configuration. My Basis consultant said, he has not aware this JDBC Adapter?
    I need to use JDBC Adapter for my JDBCXIFile Scenario. Please explain me the step by step procedure. Please explain me from where we need to get the above parameters and JDBC Driver already configued in XI. I need the Driver name with syntax and connection parameters, host and port.
    Host and Port for the JDBC Communication channel configuration: there are DB parameters which you are using.
    info about installation drivers for JDBC & JMS adapters
    FIRST: drivertool you can find at https://www.sdn.sap.com/irj/sdn/howtoguides
    Then Exchange Infrastructure How-to Guides for SAP NetWeaver 2004 How to Install and Configure External Drivers for JDBC & JMS AdaptersDownload attached system files (ZIP 16KB)
    SECOND:installation guiade:
    External Driver Configuration for Process Integration 7.0
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60237e74-ef19-2b10-5a9b-b35cc6a28e83
    Tips and Tutorial for Sender JDBC Adapter
    /people/yining.mao/blog/2006/09/13/tips-and-tutorial-for-sender-jdbc-adapter
    File-to-JDBC(Receiver JDBC)
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30
    3. Where we need to write the SQL Query for SELECT, INSERT, DELETE, and UPDATE in configuring the Receiver JDBC Communication channel?
    You write them in action tag in Message Mapping.
    For the details find "Document Formats for the Receiver JDBC Adapter" on help.sap.com
    BR,
    Dzmitry

  • Configuring sender jdbc adapter

    Hi all,
    I have a requirement in which i have to select certain data from Oracle table and send it to an IDOC via SAP XI.
    Problem is the select can happen from several tables. For example:
    SELECT col1,col2,col3 FROM <tablename>
    The <tablename> has to be variable. I do not need to do any JOIN. At a time select will be only from a single table i.e. col1, col2, col3 will all belong to the same table. But the adapter should poll multiple tables.
    One more requirement is that once a particular record from a particular table has been selected some UPDATE also need to be done on the same record.
    Pls can anybody provide me with a proper solution.
    This requirement is a bit urgent.
    Thanks in advance.
    Regards
    Neetu

    Neetu,
    You need to have the Table name dynamic in the Sender JDBC adapter's Select Query . This is not possible
    You can consider using a Reciver JDBC adapter for which you can have a look at this blog ,
    /people/bhavesh.kantilal/blog/2006/07/03/jdbc-receiver-adapter--synchronous-select-150-step-by-step
    Or, you need a Separate sender JDBC adapter for every table to be polled.
    >><i>One more requirement is that once a particular record from a particular table has been selected some UPDATE also need to be done on the same record.</i>
    If you are using the Sender JDBC adapter, this would be simple using the UPDATE field of the Sender JDBC adapter .
    If you are planning to use Receiver JDBC adapter, then You need a separate Send Step for this Update.
    Better way to go would be to have separate sender JDBC adapters.
    Regards,
    Bhavesh

  • JDBC Adapter Performance

    Hi Experts,
    We have nearly 60 interfaces will read/write from/on DB and AS400 tables.
    We are facing so many problems in production system. Everyday the messages are strucking at Adapter Engine. All messages are in "To be delivered" stage. If we can stop some cc's then it is processing slowly even the Database is using 60% usage.
    We tried to create logical views(Instead of Physical views) on DB and AS400 even the performance has not increased.
    We have used "prefetch=false" at "connection" on JDBC adapter but no use.
    We can use "Disconnect after each message processed", but my client is not agree with this option.
    We don't want to increase the connections to DB and AS400.
    Is there any parameters needs to be updated at JDBC Adapter?
    Help needed...
    Regards,
    Rams.

    Hi,
    The below links may help u.
    JDBC ADAPTER
    http://help.sap.com/saphelp_nw04/helpdata/en/7e/5df96381ec72468a00815dd80f8b63/content.htm
    /people/saravanakumar.kuppusamy2/blog/2005/01/19/rdbms-system-integration-using-xi-30-jdbc-senderreceiver-adapter
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30 - File to JDBC
    JDBC - http://help.sap.com/saphelp_nw2004s/helpdata/en/64/ce4e886334ec4ea7c2712e11cc567c/content.htm
    multiple tables with JDBC - http://help.sap.com/saphelp_nw04/helpdata/en/2e/96fd3f2d14e869e10000000a155106/content.htm
    JDBC Response /people/swaroopa.vishwanath/blog/2006/12/28/send-rfc-to-sap-xi-150-asynchronous
    Regards
    Pullarao

  • Action attribute in jdbc adapter

    Hi
    I have been working on jdbc adapter. Till now I have been using action attribute in jdbc receiver adpater for insertion only. Now I'd like to know what are the possible values can u we in "Action"?

    Hi,
    s the attribute action with the value INSERT, UPDATE, UPDATE_INSERT, DELETE, or SELECT. If you use the optional <table> element, the value specified is used as a database table name.
    1.Action=UPDATE
      Statements with this action cause existing table values to be updated. Therefore, the statement corresponds to an SQL UPDATE statement.
    The corresponding SQL statement for StatementName1 in the example above is as follows:
    UPDATE dbTableName  SET col1=u2019val1u2019, col2=u2019val2newu2019 WHERE ((col2=u2019val2oldu2019 AND col4=u2019val4u2019) OR (col2=u2019val2old2u2019))
    2. Action=UPDATE_INSERT
    The statement has the same format as for the UPDATE action. Initially, the same action is executed as for UPDATE. If no update to the database table can be made for this action (the condition does not apply to any table entry), values of the table described in the <access> element are inserted in accordance with the description of the action INSERT. <key> elements are ignored in this case.
    3.Action=DELETE
    Statements with this action cause existing table values to be deleted. One or more <key> elements formulate the condition for which table values are deleted.
    The corresponding SQL statement for StatementName3 in the example above is as follows:
    DELETE FROM dbTableName  WHERE ((col2=u2019val2oldu2019 AND col4=u2019val4u2019) OR (col2=u2019val2old2u2019))
    4.action=SELECT
    Statements with this action cause existing table values to be selected. Therefore, the statement corresponds to an SQL SELECT statement.
    5.Action=EXECUTE
    Statements with this action result in a stored procedure being executed. The name of the element is interpreted as the name of the stored procedure in the database.
    regards,
    ganesh.

  • Implicit commit in ABAP Web Dynpro?

    I wonder if ABAP Web Dynpro is executing an implicit commit. I have two buttons on the same view. The first one inserts an entry into a table, the second one executes a "rollback work" (and to be sure calls function "DB_ROLLBACK").
    However, after first pressing the insert-button and secondly the rollback-button, the rollback had no effect, i.e. one dataset has been permanently inserted into the database table.
    Is it possible that until the view is ready for new processing (i.e. finished any initializations) an implicit commit is executed by SAP?
    I have not used any commit nor do I use debugger mode.
    The same behavior happens when I split the insert and rollback things into two views. In the second view the rollback is possible before the inbound plug is processed to the end, but afterwards (e.g. when handling a button click by an assigned method) not.

    Hi Klaus,
    I was wondering if you could do a ST05 trace? It will reveal the place where the commit happens. It will be quite interesting to see if it happens inside of the WD runtime. If yes, I would consider it a bug.
    Best regards,
    Thomas

  • How to config JDBC adapter for internal database

    Hi all,
    I have configured a scenario that sends data from PROXY to JDBC adapter, JDBC adapter connects to the internal database. The Proxy adapter is OK, but the Receiver JDBC adapter I really don't have any idea about it. Please let me know.
    The version, I am doing on it, is 7.1
    Thanks in advice.
    Ken.

    Hi ,
    Check in your message mapping after execution( Target Side)  -> Test Tab -> XML structure,
    it Should be like this/ in this format
    here action/ table/access : these tagname should not be changed.
    Enter the new column values in the <access> element.
    Enter exactly one <access>element.
    <StatementName>
         <dbTableName action=u201DINSERTu201D>
         <table>TableName</table>
          <access>
                 <col1>val1</col1>
                 <col2>val2</col2>
          </access>
         </dbTableName>
    </StatementName>
    Statement would be like this :
    INSERT INTO TableName  (col1, col2) VALUES(u2018val1u2019, u2018val2u2019)
    Regards
    Prabhat Sharma.

  • Need help reg sender JDBC adapter

    Hi,
    I am having a requirement like, i need to fetch the data from two data base tables. and after fetching the data, i need to update those two tables.
    For selecting the data from two tables, two select statements i need to write, how i can give two select statements in sender JDBC comm channel.
    In sender JDBC channel, only one update query we can give...how i can update two tables?
    Regards,
    Venkata Ramana.

    Hello Venkat,
    For your requirement, go for stored procedure and find the below thread.
    Fetching data from JDBC without using JDBC sender adapter
    Re: Executing an Oracle Stored Procedure from Sender JDBC adapter
    Re: Sender JDBC adapter not picking up data
    Re: Retrive data from two diffirent tables
    hope this will help you
    Thanks,
    Venky

  • I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one?

    I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one?

    Hi Chris.
    It's asking you for my apple id password. not going to give that out, sorry.
    However I did try this projector on my mother in laws iphone 4 and on my old iphone 3. ipico software isn't needed. plug and play any video through standard movie player or camera saved video.
    I tried on my girls iphone 5 with the adapter. The ipico software and projector doesn't work on this phone.
    Hope this helped you. Better to buy a used iphone 3 or 4 and use it for video storage.
    I also found that the battery on these projectors are a joke (30-60mins max). I rigged a longer lasting battery on the outside and keep it plugged in while using. This doesn't charge the phone though so I replaced the battery in the old iphone 3 and now get at least a full length movie from it. Great in bed projected onto the ceiling.
    William
          From: Apple Support Communities Updates <[email protected]>
    To: blackyam <********@yahoo.com>
    Sent: Tuesday, January 13, 2015 4:36 AM
    Subject: https://discussions.apple.com/iPhone Accessories - I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one? https://discussions.apple.com/f9xu1m-7t1g5-gcrif
    Apple Support Communities updates#yiv9918778479 a, #yiv9918778479 a.yiv9918778479aapl-link, #yiv9918778479 a.yiv9918778479aapl-link:link {text-decoration:none;color:#08c;}#yiv9918778479 p #yiv9918778479 a.yiv9918778479aapl-link:hover {text-decoration:underline;}#yiv9918778479 body  _filtered #yiv9918778479 {}#yiv9918778479 _filtered #yiv9918778479 {}#yiv9918778479 * .filtered99999 #yiv9918778479 * .filtered99999 #yiv9918778479 * .filtered99999 #yiv9918778479 * .filtered99999 #yiv9918778479 #yiv9918778479 _filtered #yiv9918778479 {}#yiv9918778479 td .filtered99999 {padding-left:20px!important;padding-right:20px!important;}#yiv9918778479 table #yiv9918778479 table .filtered99999 , #yiv9918778479 table .filtered99999 tbody, #yiv9918778479 table .filtered99999 tr, #yiv9918778479 table .filtered99999 td #yiv9918778479 td img {max-width:100%!important;height:auto!important;}#yiv9918778479 td .filtered99999 {}#yiv9918778479 a.yiv9918778479button #yiv9918778479
    |
    |
    |
      |
    |
    |
    Apple Support Communities
      |
    |
    |
    Chris  has posted in the iPhone Accessories community.
      |
    |
    |
    |
    I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one?
    blackyam...thank you for the ipico software.  When I try to authorize my computer for it it says that I need to fill in the password for *******@yahoo.com.  I can't seem to get it to work with my email and password.  Do you know anything about this or do you know *******@yahoo.com's password?thx, Chris
      |
    |
    |
    To post a reply, go to the discussion in Apple Support Communities.
    |
    |
    You are receiving this email from Apple Support Communities. You can change your email preferences in your Apple Support Communities Profile.
    TM and copyright © 2014 Apple Inc. 1 Infinite Loop, MS 96-DM. Cupertino, CA 95014.
    All Rights Reserved
    Privacy Policy
    Terms of Use
    Apple Support
    <Email Edited by Host>

  • Need to connect to Oracle 11g using PI 7.1 JDBC adapter

    Hi All,
    I am trying to configure a JDBC adapter to connect Oracle 11g. For this I need to know the driver,jar and connection URL details.
    Can anyone please provide the above information?
    Please correct me if my details are wrong :
    JDBC Driver : oracle.jdbc.driver.OracleDriver
    JAR : ojdbc5.jar
    URL : jdbc:oracle:thin:@localhost:1521:ora11i
    Regards,
    Prakash.

    Yes i knew how to deploy the jars using SDA.
    I will try to deploy the above jar (ojdbc5.jar ) and try to connect to Oracle 11g with URL & Driver classname.
    If I face any problem then i will get  back to you.

  • HT5299 i have an apple cinema display circa 2005. what thunderbolt adapter do i need in order to be able to plug it into a current mac mini?

    I have an apple cinema display circa 2005. What Thunderbolt adapter will I need in order for it to work with a current model Mac Mini?

    see > I have an Apple Cinema Display ADC. What adapters do I need to hookup my ADC connected monitor to my Mac Mini.
    or > Using Older Apple ADC Displays with Mac Pro - The Mac Observer
    and > Thunderbolt and ADC: Apple Support Communities

  • Need Help...........JDBC Adapter

    Hi All,
    We have installed SAP on OS/400.
    My scenario is IDOC XI JDBC.
    We have created a File JDBCTEST , member JDBCTEST and Field JDBCTEST.
    These are created under a lib QLGP.
    Then I did a message mapping between the IDOC and JDBCTEST by concatenation function.
    <b>IN THE JDBC ADAPTER CONFIGURATION I am getting the error
    Value missing for mandatory configuration attribute table EOColumnName Ts</b>
    In the EO JDBC ADAPTER Configuration, the DATABASE parameters:
    DBTABLE:JDBCTEST
    KEY COLUMN NAME:JDBCTEST
    Is there anything wrong I am doing?
    Any help is appreciated.
    Thank you.

    Hi Bhavesh,
    My XML structure after testing the mapping is as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge"><ns0:Message1><ns1:TEST_MT xmlns:ns1="http://mri.com/xi/IDOC2JDBC"><STATEMENTNAME><JDBCTEST action="INSERT"><access><JDBCTEST>567,23,2345,MRI</JDBCTEST></access></JDBCTEST></STATEMENTNAME></ns1:TEST_MT></ns0:Message1>
    I have tested by giving the PERSISTENCE as LOCAL,then intially there was no error but now I am getting the Transformation error.
    TransformException error in xml processor class: Error processing request in sax parser: Error when executing statement for table/stored proc. 'JDBCTEST' (structure 'STATEMENTNAME'): java.sql.SQLException: [SQL0104] Token MOTOR was not valid. Valid tokens: ) ,.
    Am I doing anything wrong in the JDBC Adapter Configuration or Message Mapping?
    Please help me out with this issue.
    Thank you in advance.

Maybe you are looking for

  • AND/OR TRUTH TABLE.

    Is there any explanation for why 1) TRUE AND NULL = NULL 2) FALSE AND NULL = FALSE 3) TRUE OR NULL = TRUE 4) FALSE OR NULL = NULL Thank you, Narendra

  • Slide Show visible in FF but not IE

    The widget works in other layouts I've tried but for some reason it does not display in IE. Firefox works fine but IE shows a Black Screen... all though the control buttons seem to work fine there is no image... Any help would be greatly appreciated.

  • Which is better SB0100 or SB04

    I use to have a SB000 Sound Blaster Li've! 5. .. and it was working fine.. a friend of mine gave me a SB040 Sound Blaster Li've! 24-bit.... I was wondering what card was suppose to be better or how I can make the sound better on the SB040.. because I

  • Roles for Testing ChaRMs for Non-Abap Systems

    Hi, Can you please suggest what all authorizations  are required for Testing the ChaRM functionality for non-abap systems Thanks in advance Regards, Reddi

  • Why when i open itunes it  just shows me the music an nothing else?

    can somebody help i open itunes and the only thing it gives me is the music it wont even open the ipod