External System accessing BI DB

Hi,
         We are on BI 7.0 and we have a requirement for an external non SAP system to access the BI  DB to fetch data out of an ODS. I have read about the Open Hub Services of BI, but it doesnt really explain how an External System can open a ODBC connection to access the BI DB. Any suggestions would be helpful....

I can't offer a lot of deep insite, but in order to open data for ODBC access, you need to build a query on top of the object and release it for ODBO (third tab in the query property window).  Then, the ODBC connection should be able to view the query.
Another thing to note, reading data from SAP into another non-SAP system has some license impacts.  You will want to verify with your account manager that you are able to legally do this.

Similar Messages

  • Access abap object  from external system

    In R/3 have a Business Objects how can I access this object, for example Workflow BO, from java (external system) using XI????
    My goal is create workflow´s in r/3 sending as input the workflow characteristics and then create the workflow in R/3 and sending as output the idworkflow was creatde.
    thanks in advanced.

    Dear Murali,
    Try this
    a)Start transaction SXI_CACHE.
    b)From the context menu XI Runtime Cache select Start Complete Cache Refresh.
    If you still face issue try this .
    Many actions require to access System Landscape Directory content from the Integration Builder. To optimize performance, this content is loaded into a cache so that the System Landscape Directory does not have to be accessed directly each time that System Landscape Directory content is required.
    However, this cache is not automatically updated if changes are made to the content of the System Landscape Directory. For this reason that we delete the System Landscape Directory cache if changes have been made to content in the System Landscape Directory. The cache is then filled each time that the System Landscape Directory is accessed. If we log on to the Integration Builder after we have made a change in the SLD, we do not need to delete the SLD cache.
    To clear the SLD cache, from the Integration Builder main menu, choose Environment ® Delete Cache for SLD Data.
    Once we have deleted the cache for SLD data, accessing objects in the SLD may take longer than usual initially.
    Regards
    Agasthuri Doss

  • Accessing external system using bapi (urgent)

    hi,
             can anyone tell me the procedure how to access the external system using bapi
    regards
    sree

    Hi
    First Maintain entry for the RFC destination in RFCDEST table
    Since BAPI  works as a RFC enabled fun module you have to pass this destination for this.
    Then you have to map the data exactly to the Bapi structure fields
    such that the Application document is CAP is created with the data from the External system.
    Regards
    Anji

  • Calling a web service in external system from SRM

    Hi folks,
    A web service is created in the external system and I need to access this web service from a BADI. Can you tell me how can I call this web service (the external system is giving me a URL) and how I'll get a return. Please let me know in detail.
    Thanks,
    Prem

    Prem,
    Hi. You can call the service via HTTP protocol. Pass them values (SET_DATA), and receive a response (GET_DATA), via xml/html.
    In your code you would need to create the xml data to pass them, and evaluate the returned xml.
    Process...
    Data setup
    1) Create the XML to send them
    Working with the external service
    2) Open the HTTP connection
    2a) cl_http_client=>create_by_url (IF_HTTP_CLIENT)
    2b) lr_client->authenticate
    3) Call the to send them the XML
    3a) lr_client->request->set_data
    3b) lr_client->send
    4) Call the lr_client->receive to return the response
    5) Close the connection lr_client->close
    Data evaluate
    6) Evaluation the returned XML and process.
    Hope this helps
    Cheers
    Rob
    Code example below.. (There are loads of SAP examples depending on which release you are on).
    Process the call to the HTTP client - logic copied from RSHTML01     *
    Open IF_HTTP_CLIENT
      call method cl_http_client=>create_by_url
        exporting
          url                = l_url
        importing
          client             = lr_client
        exceptions
          argument_not_found = 1
          plugin_not_active  = 2
          internal_error     = 3
          others             = 4.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                   with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
          raising oops.
      endif.
    Authenticate the user
      if not g_int_type-usr is initial.
        move: g_int_type-usr      to l_user,
              g_int_type-password to l_password.
        call method lr_client->authenticate
          exporting
            username = l_user
            password = l_password.
      endif.
    Allow for Cookies
      lr_client->propertytype_accept_cookie = lr_client->co_enabled.
    Set the server protocol
      select single gsval into l_server_protocol
        from z77s0
          where grpid = c_grpid
          and   semid = c_server_protocol.
      if sy-subrc eq 0
      and not l_server_protocol is initial.
        move l_server_protocol to l_st_server_protocol.
        call method lr_client->request->set_header_field
          exporting
            name  = '~server_protocol'
            value = l_st_server_protocol.
      endif.
      Send out the XML
      Set body to XML data
        lr_client->request->set_data( g_xxml ).
        save_xml( i_role = cl_xml_document=>c_role_oreq ).
        l_request_length = xstrlen( g_xxml ).
      If Data is sent through then we need certain flags set
        lr_client->request->set_header_field(
                                   name = 'Content-Type'
                                   value = zcl_tem_bsp=>c_xml_content ).
        call method lr_client->request->set_header_field
          exporting
            name  = '~request_method'
            value = 'POST'.
      Set length of string to the header fields
        if not l_request_length is initial.
          move l_request_length to l_st_request_length.
          lr_client->request->set_header_field(
                                    name = 'content-length'
                                    value = l_st_request_length ).
        endif.
      Send the request
        call method lr_client->send
          exceptions
            http_communication_failure = 1
            http_invalid_state         = 2
            http_processing_failed     = 3
            http_invalid_timeout       = 4
            others                     = 5.
        check_for_error 'Send'.
      Receive the response
        call method lr_client->receive
          exceptions
            http_communication_failure = 1
            http_invalid_state         = 2
            http_processing_failed     = 3
            others                     = 4.
        check_for_error 'Receive'.
      Determined returned XML or HTML
        g_xxml = lr_client->response->get_data(  ).
      Determine the header fields for failure validation
        if lr_client->response->get_header_field( '~status_code' )
              between 200 and 299.
          save_xml( i_role = cl_xml_document=>c_role_ires ).
        else.
          l_status_code =
            lr_client->response->get_header_field( '~status_code' ).
          l_descript_1 =
            lr_client->response->get_header_field( 'error' ).
          l_descript_2 =
            lr_client->response->get_header_field( 'errortext' ).

  • Office 365 ECT to Azure Cannot connect to the LobSystem (External System)

    I've tried to set up External Content Types to an Azure SQL database but when I access my page I get an error.
    I basically followed http://www.pointbeyond.com/2012/12/31/surfacing-data-from-sql-azure-in-sharepoint-2013-online-office-365
    Can you help me work out what i've not done, I don't know where to configure Azure firewall as this message suggests. The error is below:
    Cannot connect to the LobSystem (External System). Reason: 'Cannot open server 'uf7prto4sj' requested by the login. Client with IP address '157.55.225.241' is not allowed to access the server. To enable access, use the Windows Azure Management
    Portal or run sp_set_firewall_rule on the master database to create a firewall rule for this IP address or address range. It may take up to five minutes for this change to take effect. Login failed for user '*REMOVED*'. This session has been assigned a tracing
    ID of '9389a67c-dc78-4134-9167-545ec963be3a'. Provide this tracing ID to customer support when you need assistance.'
    Correlation ID:9a3fb39c-d0ea-1000-8099-2fad02009a01

    Hi,
    It depends, if it's a static IP address for your machine, it should be OK for this one IP address; if it is a dynamic IP address in a range, you can input the IP address range which contains this mentioned IP address
    157.55.225.241, or update the changed address to date.
    http://stackoverflow.com/questions/8543653/windows-azure-client-with-ip-address-xxx-xxx-xxx-xx-is-not-allowed-to-access-t
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you
    have feedback for TechNet Subscriber Support, contact [email protected] 
    Daniel Yang
    TechNet Community Support

  • How do I integrate SAP R/3 with an external system?

    Hi there!
    I've run into a problem integrating SAP R/3 with an external system. The external system provides a webservice, and when I try to get WSDL file from that service, I am getting asked of authorization and when I authorize, I get error 500. The access is anonymous, as I'm being told. When I try to get just a response, server requests authorization. No matter what login and password I supply, I always get error 401 saying I'm not authorized.
    I think the ICF is somewhat misconfigured, but how do I configure it? Or maybe there's a problem with requests I send. I don't know.
    Please help!
    Regards, Dima

    Hi,
    You don't provide any info on how you want to cosnume the web service, but pls check things like
    /people/thomas.jung3/blog/2005/04/21/webservice-navigator-page-for-abap-and-java
    /people/thomas.jung3/blog/2005/04/27/webservice-navigator-page-for-abap-and-java-part-2--abap-unit
    /people/thomas.jung3/blog/2005/05/13/calling-webservices-from-abap-via-https
    /people/thomas.jung3/blog/2004/11/17/bsp-a-developers-journal-part-xiv--consuming-webservices-with-abap
    Eddy
    PS.
    Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!

  • Consuming a web service from external system

    Hi exepert,
    I'm new in web service, I have to send a file towards external system so I think that I have to expose
    my web service in sap system.
    How, the external system, can understand that I exposed my web service, in other word that my file is
    ready to be sent ?
    tks, bye.

    I am not sure if web service is a right fit for your issue but web service is accessed from another system using a URL(Uniform Resource Locator) which will be generated when you create a web service using SE80 or by running the wizard.
    The other system might not know that you file is ready, I suggest to write a sequential(repetetive) program in the target system and check by using the URL and check if the file is ready. If the file is ready pick the file else repeat the step.

  • Open Hub External System

    Hi,
    I have a basic requirement to extract data out of Open Hub into an external Oracle database. I have read previous threads online on this topic, but still have a couple of questions that are not clearly answered.
    Firstly, my client complies with all licensing arrangements to use Open Hub.They do not want to use flat files and they do not have access to tools like the Microsoft Connector described in many online blogs. 
    Secondly, my client would like BW to kick off the process chain, load into an internal BW table, and then raise a trigger to the external Oracle database to come and "pull" the data from the newly created table. I am new to working with API's, but I read about standard API's been available to achieve this, but I would like some simple clarrification:
    - In my Process Chain, after I load the Open Hub data into the internal table, I want BW to use the API RSB_API_OHS_3RDPARTY_NOTIFY to tell the external system it's ready to pull the data. Reading the docu about this API, it seems like this needs to be initated from the external Oracle database. Is this correct (I would hope BW could do this) ? And if so, I dont know if my client has these API's on their Oracle system. How do I ensure they do ? I imagine they are freely available, but since I am not a DBA, and do not have access to someone who can tell me or not, I would like to know what the standard procedure for API communication is here. An example or white paper showing the API (with parameters) for a real life scenario would be ideal.
    - If the above does not work, even though they say the Microsoft connector tool can be used for Oracle, I am hesitant to use a Microsoft tool, when surely Oracle has their own free tool to do this - or can the Microsoft Connector integrate directly with an Oracle database ??????
    - When we refer to the term "Third Party Tool", does this mean a ETL tool like Informatica, or a connection tool like the Microsoft Connector, or the external database like the Oracle database in this example ?
    Any clarrification with the above would be most appreciated. I do not have access to a BW system yet, so I would like to know some of the details before I propose a potential solution.
    Thanks,
    BWPerson

    Hi
    Here are some documents:
    http://help.sap.com/saphelp_nw04/helpdata/en/ce/c2463c6796e61ce10000000a114084/content.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e830a690-0201-0010-ac86-9689620a8bc9
    http://www.bwexpertonline.com/archive/Volume_01_(2003)/Issue_05_(May)/V1I5A5.cfm?session=
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5f12a03d-0401-0010-d9a7-a55552cbe9da
    http://help.sap.com/saphelp_nw04/helpdata/en/e3/e60138fede083de10000009b38f8cf/tree.htm
    http://www.thespot4sap.com/forums/m_30/mpage_1/key_/tm.htm
    hope it helps
    Fil.

  • External system accesing Function module

    hi all,
    I have some questions regarding connection of SAP with some external systems. So here it is:
    External system e.g. TIBCO is accessing SAP's Function Module e.g. Z_CA_CRM_INV_DETAILED, is there any way i can see in Debug mode a moment the external system calls this function module and import parameter values?
    Thank u all, and please refer me to a category in this forum if this question wouldn't be appropriate for ABAP general,
    thanx in advance,
    Maja

    hi,
    my problem is that i can't change existing function module as it's cross client..
    exactly where should i put that breakpoint? in Utilities/breakpoint? there is only set/delete... none options for external breakpoint...
    so it seems like i have a smaller version...

  • External system calling SAP ECC enterprise service.

    Hi Experts,
    We have an external system(out of the client network) which needs to call the Enterprise service ExchangeRateByExchangeRateQueryResponse_In  in ECC.
    As we  don't want to open the ECC port to the external systems we thought of using SAP PI in between.
    I can develop a  SOAP to SOAP scenario between External system and ECC using PI.
    I want to check whether there is any better  way of doing it without developing the interface.
    Thanks in advance
    Regards,
    Rajesh.A

    Hi Rajesh,
    If the requirement is to fully decouple the ECC system from the external caller system, then configuration of mediated scenario utilizing PI would be a good solution here. But if it is only necessary to ensure that the external system doesn't have direct connectivity to application servers of ECC, then you may consider installing SAP Web Dispatcher, connecting ECC as a backend system to the installed Web Dispatcher and using Web Dispatcher as an endpoint in the caller system. In this way, the caller system doesn't need to have network access to application servers of ECC and will only communicate with Web Dispatcher, all communication between Web Dispatcher and backend (here, ECC) will be transparent for the caller system.
    Regards,
    Vadim

  • Options to extract from external system

    Hi,
    What are all the possible options (DB connect, UD connect...) are there in BW to extract data from external system in BW and under which circumstances which one to use.
    Thanks,
    sam

    Hi Sam,
    Some information about DB Connect.
    DB Connect allows you to have extra database connections besides the default connection for SAP.
    You use these connections to access databases and transfer data into a BI system.
    In general, BI application servers can only be supported for DB Connect on operating system versions where a SAP Database Shared Library (DBSL) has been released for the BI database and the source database.
    Please see this link below
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/a1/89786c3df35c4ea930a994e884bb4c/frameset.htm">http://help.sap.com/saphelp_nw70/helpdata/en/a1/89786c3df35c4ea930a994e884bb4c/frameset.htm</a>
    Hope this helps
    Regards
    Sudeepti

  • How to send IDOC's to external systems

    Hi everybody,
    I'd like to get information of how I can send one IDOC to an external system.
    I have to send data about access control and e-learning from R/3 to external system,  I think an IDOC is the perfect way to do it, but I don't know all the steps involved.
    Could anyone explain me or give some document or link in with I could see all the steps  from the selection of the IDOC (What to do if the idoc doesn't fit exactly) until the IDOC is out of the r/3 system, how to configure the ALE, etc
    Thank you very much.

    This document might be helpful:
    http://www.angeli.biz/www5/books/IDocBook/IDocBook.pdf
    It's a bit outdated but most of the info is still actual. If you anticipate a lot of ALE/IDoc projects, I suggest getting this book: http://www.amazon.com/IDoc-Technologies-Prima-Techs-Book/dp/0761534318/sr=8-1/qid=1170864257/ref=sr_1_1/103-6659593-2860615?ie=UTF8&s=books
    It is out of print right now but I've heard that more copies are coming out this year. This is the most comprehensive book available on the market at this time.

  • Need to call up a webservice created in external system from SAP

    Hi folks,
    A web service is created in the external system and I need to access this web service from a BADI. Can you tell me how can I call this web service (the external system is giving me a URL) and how to capture the return value from the web service. Please let me know in detail.
    Thanks,
    Prem

    Hi,
    I have the same requirement and have created a new Proxy-Object, uploaded the WSDL file (locally) and Created a Logical port.
    In the Logical Port under the tab Call Parameter I've defined the URL of the web-service.
    Since I was not able to upload the WSDL by selecting the option URL/HTTP Destination due to error message "HTTP error (return code 400, message "ICM_HTTP_CONNECTION_FAILED")
    Message no. SPRX090" so uploaded the file locally.
    However, when testing the service, I didn't received a sucess message but:
    <CX_AI_SYSTEM_FAULT>
    <CODECONTEXT>Local</CODECONTEXT>
    <CODE> ERROR_WEBSERVICE_RUNTIME_INIT </CODE>
    <ERRORTEXT> Error when instantiating the Web service runtime (Error when initializing SOAP client application: ' error_text' ) </ERRORTEXT>
    <LANGUAGE />
    </CX_AI_SYSTEM_FAULT>
    </cls:CX_AI_SYSTEM_FAULT>
    What might be the Problem ?
    /Manik

  • BW implementation - with appr. 400 different external system

    Hi,
    we plan to implemenent an BW scenario with appr. 400 different external systems (100 access databse, SQL SERver, Excel  ....)
    Our architektur is designed in the moment with an additional layer in the ETL architektur = an SQL server.
    Means all 400 different systems would send data to the SQL server and on an second step the data would send to the BW server.
    Benefit - reduce the interfaces to the BW system and the BW system would have just on type of extrnael system and dataformats.
    Does anyone have expierence with this kind of scenarios - what are the benefit? Or what are the argument fro this sceanrio??
    Best regards
    Grit

    Hi,
    Ofcourse BIW can be used as one place of integration for all our different systems existing in the organization. But your no is a quite big one to hear. So it is better to use  SQL server as intermediate integration of data, rather  than creating lot of sourcesystem which can be used to upload a quite small amount of the data to BIW.
    With rgds,
    Anil Kumar Sharma .P

  • How to send delivery document from external system to ECC

    i have a business requirement to send a delivery and billing documents from external system ( MS access )  to ECC
    could any one light me how to do this ???
    Thank you in advance

    Hi Ahmed,
    Talk to your middleware team, They will upload the data through RFC.
    Basiclly RFC(Remote function call) works like it will call the function module and then upload the data.
    For more information, check the link given below.
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/1bd5b6a85b11d6b28500508b5d5211/content.htm
    Hope this helps,
    Regards,
    MT

Maybe you are looking for