Error While Configuring Receiver JDBC ADAPTER

HI Experts,
     while configuring the JDBC Receiver(Stored Procedure),I got the the follwing error's .PLease find the used data types and the exceptions (got) as follows.
1.Exception
<SAP:AdditionalText>
com.sap.aii.af.ra.ms.api.DeliveryException:
Error processing request in sax parser: Error when executing statement for table/stored proc.
'PRC_SET_MAIN' (structure 'InsertData'): java.sql.SQLException: ORA-06550: line 1, column 7: PLS-00201: identifier 'PRC_SET_MAIN' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored</SAP:AdditionalText>
1. Data Type eused.
  <?xml version="1.0" encoding="UTF-8" ?>
- <ns0:MT_Request_In xmlns:ns0="http://XXXXXXX">
- <InsertData>
- <PRC_MAIN action="EXECUTE">
  <table>PRC_SET_MAIN</table>
  <P_ID isInput="true" type="NUMERIC">245</P_ID>
  <P_QID isInput="true" type="NUMERIC">245</P_QID>
  </PRC_MAIN>
  </InsertData>
  </ns0:MT_Request_In>
2. Exception .
com.sap.aii.af.ra.ms.api.DeliveryException:
Error processing request in sax parser:
No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)
</SAP:AdditionalText>
2. Datatype used .
  <?xml version="1.0" encoding="UTF-8" ?>
- <ns0:MT_Request_In xmlns:ns0="http://XXXXXXX">
- <PRC_MAIN action="EXECUTE">
  <table>PRC_SET_MAIN</table>
  <P_ID isInput="true" type="NUMERIC">245</P_ID>
  <P_QID isInput="true" type="NUMERIC">245</P_QID>
  </PRC_MAIN>
  </ns0:MT_Request_In>
PLease suggest meany ideas (which will be rewarded) to solve the problem.
Thanks and Regards,
Kiran.

Hi,
I am using File to Jdbc (stored procedure) Scenario. Name of the Stored procedure is demoProcedure which inserts four fields (name,id,age,***) in a table.
Stored Procedure code as follows.
CREATE OR REPLACE PROCEDURE demoProcedure(
    name VARCHAR,
    id VARCHAR,
    age INTEGER,
    *** VARCHAR)           
AS   
BEGIN   
    INSERT INTO EMPLOYEE (NAME, ID, AGE,***)
    VALUES (name, id, age, ***);
END demoProcedure;
Inbound (Generated XML file During Mapping Test):
<?xml version="1.0" encoding="UTF-8"?>
<ns3:MT_file2JavaProc_Sender xmlns:ns3="http://file2JavaProc">
  <name>A</name>
  <id>1</id>
  <age>25</age>
  <***>Male</***>
</ns3:MT_file2JavaProc_Sender>
Outbound (Generated XML file During Mapping Test):
<?xml version="1.0" encoding="UTF-8"?>
<ns2:MT_file2JavaProc_Receiver xmlns:ns2="http://file2JavaProc">
  <Statement>
    <demoProcedure action="EXECUTE">
      <name type="VARCHAR">A</name>
      <id type="VARCHAR">1</id>
      <age type="INTEGER">25</age>
      <*** type="VARCHAR">Male</***>
    </demoProcedure>
  </Statement>
</ns2:MT_file2JavaProc_Receiver>
I think this will solve your problem.
Thanks
Dipankar
Message was edited by:
        Dipankar Sinha Sarkar

Similar Messages

  • Error when using receiver JDBC adapter

    i am using JDBC adapter as receiver(for oracle 10g) now, however i got ORA-00984 error. So i enable logSQLStatement.
    then got the following SQL statement from communication channel monitoring:
    INSERT INTO BASEINFO(APPNO, BUSSINAME, APPPERSON) VALUES (3, Steven, Lee)
    I realize the statement is incorrect, which should be:
    INSERT INTO BASEINFO(APPNO, BUSSINAME, APPPERSON) VALUES ('3', 'Steven', 'Lee')
    So how can i correct the SQL statement? is there any setting i miss out in configuration?
    Thanks

    You may try this. For each field in datatype, add an attribute hasQuot. Map it to "no" in mapping. Then add single quotes to all the values by simply concatinating it on both sides of value.
    Regards,
    Prateek

  • Error in the Receiver JDBC Adapter

    Hi Guys,
       Iam getting the below given error when trying to insert the data into the Legacy DB...
    2006-06-20 01:16:25 Error Unable to execute statement for table or stored procedure. 'Table_Name' (Structure 'STATEMENT') due to java.sql.SQLException: ORA-01861: literal does not match format string
    2006-06-20 01:16:25 Error Exception caught by adapter framework: Error processing request in sax parser: Error when executing statement for table/stored proc. 'Table_Name' (structure 'STATEMENT'): java.sql.SQLException: ORA-01861: literal does not match format string
    Can anybody tell me what the error is ?
    Regards,
    Kittu.

    Kittu,
    this is how your Target Datatype should be,
    <nr1:MT_tablename xmlns:nr1="urn:XXXXXX.XX.yyyyy">
    <StatementName>
    <dbTableName action=”INSERT”>
    <table>TABLENAMETO WHICH INASERTING DATA</table>
    <access>
    <ts_matl>2006-06-14</ts_matl>
    <no_matl>M181127</no_matl>
    <qt_do>1</qt_do>
    </access>
    </dbTableName>
    </StatementName>
    </nr1:MT_tablename >
    Regards,
    Bhavesh
    Message was edited by: Bhavesh Kantilal

  • Configuring Receiver File Adapter for J2SE

    Hi All,
    I have a scenario in which i need to convert the IDOC data into a fixed length file.
    I did mapping according to the output structure of the file.
    My Output file format is as follows...
    Document1          document2      document3      etc
    Each document contains different fields with different lengths
    In XI-FIle adapter we give Recordset structure : Document1,Document2,Document3.
    But while configuring Receiver File adapter in J2SE.
    There is no option mentioned in J2SE Adapter.
    <b>http://saphelp.border-states.com/EN/95/bb623c6369f454e10000000a114084/content.htm</b>
    Please throw some light on the same.
    Thank You
    Regards,
    Reehan

    as far as i read the document, what i understood is that the J2SE adapter has a limitation.
    your XML structure should be as mention in the link;
    <i>To convert a table in XML format to pure text format, the document format must be the same as that which is generated by the sender file/FTP adapter in mode FILE2XMBWITHROWCONVERSION <i>(with the default value <row> for the structure)</i> and the sender JDBC adapter. This means that the document structure looks like this:
    <resultset>
    <row>
    <column-name1>column-value</column-name1>
    <column-name2>column-value</column-name2>
    <column-name3>column-value</column-name3>
    </row>
    <row>
    <column-name1>column-value</column-name1>
    <column-name2>column-value</column-name2>
    <column-name3>column-value</column-name3>
    </row>
    </resultset>
    This is an example for 3 columns and 2 lines. The number of lines and columns is, of course, unlimited. <b>The XML elements in italics can be defined by the user and the elements of a line must be grouped within an element of type <row> … </row></b>.</i>
    So cannot take the <b>recordset structure</b> as we have for the normal File adapter.

  • Table name in Receiver JDBC Adapter

    Hi All,
    I am using receiver JDBC adapter.
    But table name consist of " like BPC."#II" .
    After mapping table name becomes BPC.&quot;#II&quot; .
    I am getting error while pulling data from DB.
    Is the table name creating a problem.
    Please remedy of this if you have come across such scenario.
    Regards
    Piyush

    Hi Piyush,
    All that i could get from the SAP Help regarding JDBC Adapters are these links where i never found anything much regarding the table name.anyways just go through these links and see if you find anything useful.
    http://help.sap.com/bp_bpmv130/Documentation/Planning/XIUnicodeGuide030411.pdf
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/b0/676b3c255b1475e10000000a114084/content.htm">Configuring the Receiver JDBC Adapter</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/406642ea59c753e10000000a1550b0/content.htm">Mapping Lookups</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/22/b4d13b633f7748b4d34f3191529946/content.htm">JDBC Adapter</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/64/ce4e886334ec4ea7c2712e11cc567c/content.htm">Configuring the Receiver JDBC Adapter - part 2</a>
    This is all i got from the help files, anyways you can also go through those links and see if you find anything else useful.
    - Escape Symbol for Apostrophe
    The apostrophe character (‘) is a reserved character in SQL syntax and is therefore replaced by an escape character if it occurs within value strings. This replacement character can be database-specific. Typical replacement characters are \’ or ’’(default value). If a character occurs that is invalid for the database being used, the adapter triggers an error message (an SQL exception) concerning the SQL syntax that is generated by the database.
    - Column Name Delimiter
    Depending on the database being used, column names can be enclosed by a special delimiter character, for example, if the names can contain special characters (such as ”). This character can be specified at this point. The default setting is no delimiter character. If a character occurs that i
    Also check if there are notes in the service market place related to the same.
    Regards,
    abhy
    Message was edited by: Abhy Thomas

  • Messages are in hold state due to one message at receiver JDBC adapter

    Hello,
    I am using a receiver JDBC adapter and trying to send an XML file which has an insert query to insert some data into the database i.e., Oracle 9i.
    Here at the receiver side due to one message (  which is in to be delivered state) all other messages are got hold and waiting for long time.
    I am getting the exceptions as this,
    JDBC Adapter processing failed with Error processing request in sax parser: Error when executing statement for table/stored proc. 'FSASMGR.XTBL_KL06_IINQUIRY' (structure 'REC01'): java.sql.SQLException: ORA-12899: value too large for column "FSASMGR"."XTBL_KL06_IINQUIRY"."CASE_TITLE" (actual: 81, maximum: 80)
    Exception caught when executing statement for table/stored proc. 'FSASMGR.XTBL_KL01_ISTAFF_MST' (structure 'REC1'):
    java.sql.SQLException: ORA-00001: unique constraint (FSASMGR.XTBL_KL01_ISTAFF_MST) violated
    Can anyone help me out in solving this issue.
    THanks,
    Soorya

    hi surya,
    jdbc channel tries a request for n number of times(no of rettries),if that request fails it will take up the following requests,its not like it will process a request forever.
    to be delivered will be resulting if reciever is down or network between XI and database server is bad.
    try to ping databse server from XI host system.
    if everything is fine then look at the channel configuration->advanced->no of retries of database transaction on sql server.
    just redue the count to 1 and recheck.
    Regards,
    rama Krishna

  • RECEIVER JDBC ADAPTER----ROLLBACK IN XI

    Hi Gurus,
    I have a scenario with the receiver as JDBC adapter.If there is any error in updating to Database during the interface flow,how do Rollback occurs in XI???
    Please help......
    Regards,
    Sriparna

    Hi Sripam1,
    select SQL statement 'batch mode' ,
    i.e,
    see
    8. Defining Parameters in Advanced Mode
       6. If you want to collect SQL statements in a batch, select Batch Mode.
    of the SAP online help
    [Configuring the Receiver JDBC Adapter|http://help.sap.com/saphelp_nwpi711/helpdata/en/48/465581929734d9e10000000a42189d/content.htm]
    Also ensure that 'Database Auto-Commit-Enabled (No Transaction Handling)' is not enabled.
    Regards
      Kenny

  • Dac error while configuring

    Hello All,
    I am trying to configure Dac on windows7 64 bit but getting the error...
    Configuration: Windows7 64bit
    Oracle DB: Oracle 11g
    Dac Version : 10.1.3.4.1
    Informatica: 9x
    Obiee 11g
    Already copy the file odjbc5.jar file into dac_home\bifoundation\dac\lib
    Created the user Dac_rep with all the required privileges.
    But still getting below error while configuring and testing:
    MESSAGE:::The Network Adapter could not establish the connection
    EXCEPTION CLASS::: java.sql.SQLException
    oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412)
    oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:531)
    oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:221)
    oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
    oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503)
    java.sql.DriverManager.getConnection(DriverManager.java:582)
    java.sql.DriverManager.getConnection(DriverManager.java:185)
    com.siebel.etl.gui.login.LoginDataHandler$LoginStructure.testConnection(LoginDataHandler.java:514)
    com.siebel.etl.gui.login.LoginDataHandler.testConnection(LoginDataHandler.java:386)
    com.siebel.etl.gui.login.ConnectionTestDialog$Executor.run(ConnectionTestDialog.java:290)
    ::: CAUSE :::
    MESSAGE:::The Network Adapter could not establish the connection
    EXCEPTION CLASS::: oracle.net.ns.NetException
    oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:359)
    oracle.net.resolver.AddrResolution.resolveAndExecute(AddrResolution.java:422)
    oracle.net.ns.NSProtocol.establishConnection(NSProtocol.java:672)
    oracle.net.ns.NSProtocol.connect(NSProtocol.java:237)
    oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042)
    oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301)
    oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:531)
    oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:221)
    oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
    oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503)
    java.sql.DriverManager.getConnection(DriverManager.java:582)
    java.sql.DriverManager.getConnection(DriverManager.java:185)
    com.siebel.etl.gui.login.LoginDataHandler$LoginStructure.testConnection(LoginDataHandler.java:514)
    com.siebel.etl.gui.login.LoginDataHandler.testConnection(LoginDataHandler.java:386)
    com.siebel.etl.gui.login.ConnectionTestDialog$Executor.run(ConnectionTestDialog.java:290)
    ::: CAUSE :::
    MESSAGE:::Connection refused: connect
    EXCEPTION CLASS::: java.net.ConnectException
    java.net.PlainSocketImpl.socketConnect(Native Method)
    java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    java.net.Socket.connect(Socket.java:519)
    oracle.net.nt.TcpNTAdapter.connect(TcpNTAdapter.java:141)
    oracle.net.nt.ConnOption.connect(ConnOption.java:123)
    oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:337)
    oracle.net.resolver.AddrResolution.resolveAndExecute(AddrResolution.java:422)
    oracle.net.ns.NSProtocol.establishConnection(NSProtocol.java:672)
    oracle.net.ns.NSProtocol.connect(NSProtocol.java:237)
    oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042)
    oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301)
    oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:531)
    oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:221)
    oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
    oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503)
    java.sql.DriverManager.getConnection(DriverManager.java:582)
    java.sql.DriverManager.getConnection(DriverManager.java:185)
    com.siebel.etl.gui.login.LoginDataHandler$LoginStructure.testConnection(LoginDataHandler.java:514)
    com.siebel.etl.gui.login.LoginDataHandler.testConnection(LoginDataHandler.java:386)
    com.siebel.etl.gui.login.ConnectionTestDialog$Executor.run(ConnectionTestDialog.java:290)
    Kindly help, already googled but no luck.
    Thanks & Regards
    Anu

    Check your config.bat config
    just in case refere this Oracle BI Solutions: DAC - Installation and Configuration v10.1.3.4.1 on Windows

  • Error while configuring work repository details in topology Manager

    Hi,
    Could anyone pls advice, is it possible creating more than one Master repository connection for the same instance.
    When i try to do so, am getting the below error while configuring the work repository details in topology manager.
    “A work repository already exists for this connection.
    Enter the repository password to declare it in your Master Repository”
    I tried with both the new master and work repository password. But no luck.
    Previous Master & work details:
    Master: PCS_MASTER
    Work:PCS_WORKREP
    New Details
    Master: PCS_MASTER_INT
    Work:PCS_WORKREP_INT
    Instance: PCBID
    Am trying to create new master repository for PCS_MASTER_INT.

    In the same oracle schema you can have only 1 master and 1 work repository. Usually they take 2 schema (1 for each).
    If you need 2 master repository you have to use 2 different jdbc path. I'm using a db with several master / work, each repo has got its schema..

  • Error while Configuring  environment parameters

    Hi,
    I am installling Oracle Utilities Business Intelligence 2.3.2 version . I am getting error while configuring Environment Paramameters
    Database- Oracle 11g R2
    OS- Windows Server 2008
    1. Environment Description
    Environment Description: DEV01
    2. Business Application Server Configuration
    Business Server Host: 01HW342889
    WebLogic Server Name: myserver
    Business Server Application Name: SPLService
    MPL Admin Port Number: 6502
    MPL Automatic startup: false
    3. Web Application Server Configuration
    Web Server Host: 01HW342889
    Web Server Port Number: 6500
    WebLogic SSL Port Number: 6501
    Web Context Root: ouaf
    WebLogic JNDI User ID: systemjndi
    WebLogic JNDI Password: ENC(tEky0TX65m0nDNIlnX
    CcwlbnXl2b1kMnvE8DD0wfI1Y=)
    WebLogic Admin System User ID: {3DES}gg8gG+5N+gwJBPWG
    IhRRuQ==
    WebLogic Admin System Password: {3DES}gg8gG+5N+gwJBPWG
    IhRRuQ==
    WebLogic Server Name: myserver
    Web Server Application Name: SPLWeb
    Application Admin User ID: appladmin
    Application Admin Password: ENC(OrIg4HyDLxi2kQ6uSs
    cBz4cubUr2U5BbRl75SY2pP6Q=)
    Expanded Directories: false
    Application Viewer Module: true
    4. Database Configuration
    JDBC Name: oubi-jdbc
    MPL Database User ID: SPLADMV2
    MPL Database Password: ENC(mfG7quacTagw5qEvov
    oaQIRpnogRvroY4NcXp6WZCZo=)
    XAI Database User ID: SPLADMV2
    XAI Database Password: ENC(tNfRJUthvYQR990TzW
    314nXU+5jWBuYBDs5AgT5qG7g=)
    Batch Database User ID: SPLADMV2
    Batch Database Password: ENC(L5BXr/lXp/riShr9Lp
    kFDsgUIjDm5I6TJU5Suz0Wy/k=)
    JDBC Database User ID: SPLADMV2
    JDBC Database Password: {3DES}L43JfrbOrCtupkwm
    4I/Adw==
    Database Name: DEV1
    Database Server: 01HW342889
    Database Port: 1701
    ONS Server Configuration:
    Database Override Connection String:
    Oracle Client Character Set NLS_LANG: AMERICAN_AMERICA.UTF8
    5. General Configuration Options
    Batch RMI Port: 6509
    Batch Mode: CLUSTERED
    Coherence Cluster Name: OUBICLUSTER1
    Coherence Cluster Address: 172.25.138.45
    Coherence Cluster PORT: 6508
    Coherence Cluster Mode: dev
    Each item in the above list should be configured for a successful install.
    Choose option (1,2,3,4,5, <P> Process, <X> Exit): P
    --> Calculating additional variables ... done.
    --> Writing variables to E:\OUBI2\ouaf\temp\FW.V4.0.2\tmp\2011-06-10-0954\ENVIRO
    N.INI ... done.
    Can't open E:\OUBI2\ouaf\temp\FW.V4.0.2\install_FW_E:\OUBI2\ouaf\DEV01.log for o
    utput at E:\OUBI2\ouaf\temp\FW.V4.0.2\data\bin\perllib/SPL/splLog.pm line 190.
    "ERROR - Detected while running install.plx."
    Thks,
    Mohan

    This is a common error people get when configuring Repository Service in Admin Console...
    Main reason for this is that there is an incompatible bit versions of Oracle Database and Informatica Server and windows. Try to reinstall Oracle DB or Infa Server and tryconfiguring the same it will work
    Or it could be parameter issues if it is linux...
    Please mark helpful this post

  • Sync Receiver JDBC Adapter

    Hi All,
    I was trying to make a synchronous call to a receiver jdbc adapter with the help of
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3928. [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    I am getting the following error in jdbc adapter.
    <i>com.sap.aii.af.ra.ms.api.DeliveryException: ERROR:Processing request: Error when executing statement for table/stored proc. 'MISDetails': java.sql.SQLException: FATAL ERROR document format: structure 'STATEMENT', key element 'FiscalYear' contains no values</i>
    My Source message is
    <i><?xml version="1.0" encoding="UTF-8"?>
    <ns:MT_FILE_OUT xmlns:ns="urn:ters">
      <REQUEST>
        <FISCALYEAR>2007</FISCALYEAR>
        <YEARMONTH>1</YEARMONTH>
        <OPERATION>EQ</OPERATION>
      </REQUEST>
    </ns:MT_FILE_OUT></i>
    And JDBC request message is ..
    <i><?xml version="1.0" encoding="UTF-8"?>
    <ns:MT_JDBC_REQ xmlns:ns="urn:ters">
    <STATEMENT>
    <TABLENAMEACTION="SELECT">
    <TABLE>MISDetails</TABLE>
    </TABLENAME>
    <ACCESS>
    <FiscalYear> </FiscalYear>
    <YearMonth> </YearMonth><ProductCode> </ProductCode><TargetVolume> </TargetVolume>
    </ACCESS>
    <KEY>
    <FiscalYear compareOperation="EQ">2007</FiscalYear>
    </KEY>
    </STATEMENT>
    </ns:MT_JDBC_REQ></i>
    Regards,
    Sumit

    Sumit, the problem is that </TABLENAME> is closed ealier than necessary.
    This is how the JDBC datatype should be,
    <?xml version="1.0" encoding="UTF-8"?>
    <ns:MT_JDBC_REQ xmlns:ns="urn:ters">
    <STATEMENT>
    <TABLENAME ACTION="SELECT">
    <TABLE>MISDetails</TABLE>
    <ACCESS>
    <FiscalYear> </FiscalYear>
    <YearMonth> </YearMonth>
    <ProductCode> </ProductCode>
    <TargetVolume> </TargetVolume>
    </ACCESS>
    <KEY>
    <FiscalYear compareOperation="EQ">2007</FiscalYear>
    </KEY>
    <b></TABLENAME></b>
    </STATEMENT>
    </ns:MT_JDBC_REQ>
    The TABLE, ACCESS and KEY come under the TABLENAME tag.
    Regards,
    Bhavesh

  • Using Stored procedure in sender or receiver jdbc adapter

    Hi All,
    Please let me know simple blogs for Stored procedure used in sender or receiver jdbc adapter to get data from 2-3 tables
    Thanks

    Hi
    To work with Store proceudres (SP) you have to create the SP's in database like Oracle, Mssql or Msaccess.
    Ususally the SP creations are done by database experts. For more info about "SP" try Googling!
    The below blog is about SP but not the one you expect!
    /people/itisha.alok/blog/2009/03/23/jdbc-stored-procedure-returning-multiple-resultsets
    Executing an Oracle Stored Procedure from Sender JDBC adapter
    Sender Adapter - -
    SP will contain the select Query alone or with it will contain insert, delete statement too.
    Receiver:
    SP will have insert or delete satement.
    Adapter
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/frameset.htm
    The below details are required  to configure the adapters
    Driver details
    database name
    Procedure name
    user name
    password,
    Regards
    Ramg

  • Problem in Receiver JDBC Adapter

    Hello Gurus,
    I am trying SAP -> Oracle Database Scenario.
    Where i am passing Id and Email address into the Oracle.
    In Runtime workbench, Receiver JDBC adapter Channel, i am able to see that message is in Success.
    But if i am going into the Database and looking for that Record, it is not updating that record.
    I am not able to understand what is happening.
    Please help me out in this issue.
    Thanks,
    Akhil

    HI Akhil,
    I know you might have verified alll datat hat will be passing to JDBC...but may I kindly request you to confirm about the table name that was passed in the Mapping once again.
    While inserting or Updating are you using all the Key fields..that will allow you to create the unique entry..as if in case if the record is already exists then there may be problem of Indexing...of adding duplicate entry...and due to partial key fields Update statement will not work properly..
    Also verify the ORACLE  Database log...to get anymore details.
    Thanks
    Swarup

  • Dml in Receiver JDBC ADAPTER

    Dear all,
    By putting action=Insert in the Receiver Structure ,I could able to insert the data.
    When I am Trying Delete or Update in the Same way I could not see the data modified in the table.
    Please Let me know how to achieve the same.
    Thanks,
    Srinivas

    Hi,
    go thru these links:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2e/96fd3f2d14e869e10000000a155106/content.htm
    /people/alessandro.berta/blog/2005/10/04/save-time-with-generalized-jdbc-datatypes
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4d/8c103e05df2e4b95cbcc68fed61705/frameset.htm
    Also have alook at this
    Receiver JDBC
    /people/sameer.shadab/blog/2005/10/24/connecting-to-ms-access-using-receiver-jdbc-adapter-without-dsn
    /people/ajay.kumar/blog/2005/03/24/writing-bsp-for-sap-r3-version-46
    /people/sugree.phatanapherom/blog/2005/08/14/configuring-sld-in-sneak-preview-sap-netweaver-04-sneak
    /people/sanyam.kapur/blog/2005/04/30/custom-fields-and-bw-extractors-making-a-mixed-marriage-work-part-ii
    Regards,
    Akshay Jamgaonkar.
    Reward points if find useful.
    Message was edited by:
            Akshay Jamgaonkar

  • What are the Batch mode parameters for Receiver JDBC Adapter

    Hi All,
             Could some pls tell me how to set bacth mode in receiver JDBC adapter and what are its parameters and how to configure them. i beleive there is something like max count parameters etc..
    Regards,
    Xier

    Hi,
    Check this for more info
    http://help.sap.com/saphelp_nw04s/helpdata/en/64/ce4e886334ec4ea7c2712e11cc567c/frameset.htm
    Regards
    Seshagiri

Maybe you are looking for

  • Help with two DIVs as columns at 100% page height

    I've got two DIVs side by side on my page and I want both columns to fill the page from top to bottom. The left DIV stops about half way down the page. There are DIVs inside of each column. My test link is: http://faceworks.webtestingsite.net/pages/f

  • ITUNES VERSION 9.0.2,

    I update my itunes to new version but know I'm having trouble to burn my music from my library. here is the message i got " THE ATTEMPT TO BURN A DISC FAILED. THE BURN FAILED BECAUSE OF A MEIDUM WRITER ERROR... there is any suggestion please help ...

  • Authentication Failed using K2 SmartObjects as Data source

    I have an issue with Visual Studio 2010 and the K2 Smart Objects Data source. I continue to get Authentication Failed: SEC_E_LOGON_DENIED. I log into a corporate domain and then VPN into another domain where the K2 database and SQL Server are located

  • Books created by iBooks Author. It can be used with the iPhone.'s How.

    I'm not good at English.

  • My webcam is not working for skype and other appli...

    Hello, My webcam is not working for skype and other applications i have used tinychat and tango..i have updated all version of skype as you said in other topics but all of them is not working for me...my device name is vimicro usb 2.0 and i have acci