How to connect external database with SAP

Hi,
How to get the data from an external database into SAP by directly linking the SAP Program to the external database.
Regards
Guhapriyan

Hi,
http://help.sap.com/saphelp_nw04/helpdata/en/58/54f9c1562d104c9465dabd816f3f24/content.htm
This might help,
Regards,
Gaurav

Similar Messages

  • How to connect external database(Ex:SQL Server/Tivoli)  from ABAP Webdynpro

    Hi,
    Any one have idea how to connect external database like SQL Server/Tivoli to access tables from WebDynPro ABAP.
    Please point to me some links if you have
    Thanks
    Praveen

    Hi,
    Please check out this link -
    FETCH DATA FROM ORACLE DATABASE USING Web Dynpro
    Regards,
    Lekha.

  • How to connect oracle database with JAVA

    how to connect oracle database with JAVA....
    using j2sdk and Jcreator . which connector to use .. what are the code for that ..

    PLEASE .... Ask in an Oracle Java forum.
    And read the documentaiton. There is a whole document devoted to doing that. http://download.oracle.com/docs/cd/B19306_01/java.102/b14355/toc.htm has examples.
    PLEASE ... do not ask product questions in a forum which clearly has a title saying it is devoted to assisting with download problems.

  • How to connect mySQL database with jdbc

    Who can tell me how to connect mySQL database with jdbc? Thanks

    http://onesearch.sun.com/search/developers/index.jsp?and=connect+mysql&nh=10&phr=&qt=&not=&field=title&since=&col=devforums&rf=0&Search.x=24&Search.y=16

  • How to connect MySql database with JSP

    Dear everyone,
    how to connect MySql database with JSP......

    It's too bad that nobody has ever asked this question before...

  • How to connect tibco ems with sap xi engine?

    hi friends,
    how to connect tibco ems with sap xi engine?
    plz explain me in brief. if possible plz give some link.
    thanks & regards
    Ruban

    Hi Ruban
    refr this links
    Re: XI 3.0 - Tibco integration
    <b>IBCO -> XI SCENARIO -> Web Service</b>
    http://dev.systinet.com/doc/ssc-60/primer/html/using.web.services.html
    http://www.estrategy.gov/presentations/umd_e-gov_ent_arch/sld015.htm
    General disadvantages of using web service
    http://www.samspublishing.com/articles/article.asp?p=31555&rl=1
    http://www.omg.org/news/whitepapers/CORBA_vs_SOAP1.pdf
    Replace TIBCO with XI
    Tibco & XI
    XI integration with Tibco
    <b>
    Aslo see the below links</b>
    XI Vs Tibco Vs Webmethods
    Re: Why XI ??
    Differences between Tibco BW and how to do canonical mapping in XI
    http://www.sap.com/solutions/netweaver/pdf/BWP_SB_ExchangeInfrastructure.pdf
    XI integration with PSFT/Seibel ?
    Performance statistics of SAP XI
    /thread/154189 [original link is broken]
    publish subscribe with XI
    XI in SRM, CRM, MDM
    XI implementation - xi implementation
    Thanks!!

  • How to connect sql database with Flash

    Dear Friends,
    Iam working on a quessinarie (assesment) for elearning software. i want to connect sql database with flash and save my records in back end like add, delete, modification of student result and details.
    Kindly help me to connect the sql database. or dot net server. I know how to connect PHP and mysql. But my client dont want php. only sql database and do the add, del, modificaiton.
    Thanks in advance,
    Syed Abdul Rahim

    unfortunately no, i do not know ASP well enough to give any code advice, other than the basic concept:  make a request on a server-side script (such as ASP) via URLLoader - the script receives variable values (if required), runs the DB queries you wish to invoke, and 'returns' the results - pick them up in the URLVariables class via the event handler in Flash and assign them to local properties if needed, etc.
    there are quite a few threads that you could find more specific information on the ASP side, here and elsewhere around the net.

  • Connecting Microsoft database with SAP Lumira

    Hi,
         I would like to know if it is possible to connect a Microsoft database (Contoso) with SAP Lumira SP15.
    If so, what would be the steps?
    Thanks in advance.

    Hi,
    isn't Contoso actually a sample datasource of MS SQL Server,  rather than a product itself?
    in which case, yes, you can use "free hand sql" via JDBC driver.
    Another option: If you have BusinessObjects BI, you can can surface the datasource through a Universe (semantic layer) into Lumira.
    there are Tutorials on this Lumira SCN space to help with all the above, if you search for 'tutorials'
    regards,
    H

  • How to connect external database into BI source system?

    <Moderator Message: Please search before posting. This issue has already been discussed a lot of times. Additionally you might have a look at the online help>
    Dear SDN,
    I am working on BI 7.0 system.
    Client request is to connect the external database into source system.
    External database (different server) has installed the Sybase database.
    1.Is it possible ?
    2.What is the procedure for connectivity from BI end .
    3. which server port of external database(sybase databse) need tobe open for firewall policy.
    Thanks in advance
    Ravi
    Edited by: Siegfried Szameitat on Mar 9, 2009 1:23 PM

    Hi Ravindra,
                    Check here........
    <link farm removed by moderator>
    Thanks,
    Vijay.
    Edited by: vijay m on Mar 9, 2009 5:43 PM
    Edited by: Siegfried Szameitat on Mar 9, 2009 1:23 PM

  • How to connect visual basic with sap

    hi
    i want to connect vb system and sap system.can any1 help me?

    Hi
    Using BAPIS u statrt communicating with vb or java --etc.
    For example,
      U want tot connect vb .U need to use the component
    SAP.BAPI.1 Component.
    U design a form in vb,
    Declarations:  
    Public obj As Object
    Public boOrder As Object
    Public oHeader As Object
    Public oHeaderde As Object
    Public oHeaderup As Object
    Public oHeaderin As Object
    Public conn As Object
    Public ovalues As Object
    Public oReturn As Object
    Public x As String
    In form load event:
      Private Sub Form_Load()
    On Error GoTo err1
    Form_Timer
    Set obj = CreateObject("SAP.BAPI.1")
    Set conn = obj.connection
    conn.logon
    Set boOrder = obj.GetSAPObject("ZBAPISTUD(bapiname)")
    Set oHeader = obj.dimas(boOrder, "ZbapiSearch(bapi method name)", "STUD")   'searching the record
    Set oHeaderde = obj.dimas(boOrder, "DeleteStud", "STUD") 'deleting the record
    Set oHeaderup = obj.dimas(boOrder, "ZbapiUpdate", "STUD") 'updating the record
    Set oHeaderin = obj.dimas(boOrder, "CREATESTUD", "STUD") 'inserting the record
    Exit Sub
    err1:
      MsgBox Err.Description
      DoCmd.Close
    End Sub
    Every bapi is must a remote enabled fm. Every bapi method linked with a rfc fm.
    If it is helpful rewards points
    Regards
    Pratap.M

  • How to connect to database with a schema other than current user?

    Dear all,
    I would like to know whether it is possible to specify a specific schema while connecting to a database directly by SQL*Plus command. Usually here is what I do (assuming that db01.WORLD is already in tnsnames.ora)
    $ sqlplus scott/[email protected], in this case the user is SCOTT and the current schema is also SCOTT. If I want to change the current schema I have to use an ALTER SESSION SET CURRENT_SCHEMA command. So what I would like to know is that whether there is an alternative, that is, proceeding in a way where the user SCOTT connects directly (by using SQL*Plus shell) to a SCHEMA other than SCOTT (in other words, is it possible to specify the desired schema at the connection time, for example user SCOTT who connects under a schema named 'management')
    Thanks in advance,
    Dariyoosh

    The ordinary way to do this is to
    1 - grant object privileges from the other schema to scott (Refer to the GRANT command in the online documentation)
    2 - create a private synonym in the Scott user (Look up CREATE SYNONYM in the documentation)
    The only other solution would be to make sure to create an after login trigger running the alter session command.
    Finally two words of advise
    1 You are recommended to leave the user Scott alone, and not mess it up with your own additions.
    2 You seem to treat this forum as a free Oracle class. As the people responding here are volunteers you are kindly advised to stop doing that and use the online documentation at http://tahiti.oracle.com and read at least the 'Getting Started' document and/or the '2-Day' document for your unknown version of Oracle.
    Sybrand Bakker
    Senior Oracle DBA

  • How to connect Peachtree database with an Excel File

    I have Crytal Report 2008 SP1 for Peachtree Quantum 2010.  I need to make a report that links an Excel 2007 File with Peachtree data files but I have not success.  I could do it with previous version of Crystal .  Could any one help me on this matter?
    Thanks in advance for your time.

    I suggest you contact Peachtree for support. If you can create any other report off of an Access table for example then it's a configuration and/or database connector issue with Peachtree.
    Also verify they support CR 2008.
    Thank you
    Don

  • How to connect to database with JS in indesign?

    Anyone can tell me how to do or give me some examples?

    Short answer is, "you can't".
    You can connect to a web service by using the Socket object to write http requests.
    If you know the DB's connection protocol, you theoretically could write the interface code using the Socket as well.
    You can create a java class to do it. Call the class, write the data to a file, and then read it. You can do synchronous Java calls on a Mac, on PC they must be asynchronous, which will increase complexity.
    Regards
    Bob

  • How to connect oracle database with mvc3 either can use connection string or dbcontext??? please help me

    hi can anyone please help me??

    Are you using the Oracle ODBC driver? If so, which version?
    Are you writing your own VB application? What API are you using-- ADO? Can you post the code that's making a connection and the exact text of the error message?
    Justin

  • Connecting and Updating External Database from SAP

    Connecting and Updating External Database from SAP
    How can i connect SAP Database to External database?
    How can i update external databas from SAP withouting using BI/BW, Workflow or Net Weaver?
    If anyone know please let me inform.
    Thanks in Advance.
    Jahnavee Trivedi

    Steps
    1. Create an entry in tnsnames.ora for the remote oracle DB
    2. Test sqlplus user/pass@remote 
    3. create a synonym which points to a table at remote DB check docs.oracle.com
    4. user ABAP code execute SQL to insert data into local synonym which inturn updates the remote DB.
    I have done this in the past, it works great.
    It requries, DBA skills + ABAP programming
    -AJ

Maybe you are looking for

  • SCreen Painter working not correctly.

    Hi, In se53 when we go to screen painter it's not coming properly.. some line is coming. and we got EU_SCRP_WN32 : timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'  error message. we have sap gui 710 with patch level 7. the dumpfile also generated.

  • DAbort 0x26550A7E in transact.cpp

    Hello, I'm still a bit new to labview so bear with me. I've only been working with it about 2 months. Today I was making some minor additions to a HUGE program I made in labview when everything went haywire. This morning I successfully added about 4

  • Every time I go to use Firefox, I have to wait until I can do anything

    If I'm not at the computer, or doing something in a different window, then go to another window, as soon as the mouse hits the page, I get the spinning ball, and must wait 20 secs to a minute, until it will refresh the page, or I can then do anything

  • Business rule for compare data in form

    Hi all, Let us explain my scenario, I have 2 dynamic calc members in a dataform. I just want to compare those 2 member rows( data compare) and show some message. is there any way i can make? can i create one business rule to make this happend? is it

  • Bookmarks Toolbar does not appear in "Show All Bookmarks"

    I keep all my bookmarks in the Bookmarks Toolbar folder. All are intact and functional. They appear to back up properly (i.e., viewing a newly-created json file with MS Notepad, I find nothing to suggest that anything is missing). BUT, I can't actual