Using Remote SQL for NW Installation

Hi All,
I am planning to Install SAP EHP1 for NW 7.3. I want to use the existing MSSQL Database whch is present in the different server.
Is that possible to use that?
When I am trying for Installing through"Standard System" it is showing the local Instance and If DB exist it showing as already the DB exist.
It's showing "you can only chose local instance in this Installation type" as below.
Can any one tell me what type of Installation I have to choose to perform the Installation with pointing the remote MSSQL Instance?
Regards
R.Prakash

Hi SS,
In the distributed system we have "SCS,PAS and DB instance" . Is that we have to install all the three?
Actually I have Installed NW in "server1" and it created DB "DN1". Is that I can use the same DB "DN1" for Installing the new NW in "server2"?
If yes let me know what should I do?
Regards
R.P

Similar Messages

  • How to use remote directory for external table

    Hi Folks,
    I have 2 Oracle 11GR2 64 bit database installed on Win 2008 server as prod1 and prod2.
    I have one directory created on prod1 server as EXT_TAB_DIR using the path as D:\OrsDWtest_dir .
    I want to use this directory in Prod2 server and use external table using this remote directory.
    I am able to access the Prod1 directory from Prod2 machine and also i have created Network map drive as Z drive pointing to that prod1 D:\OrsDWtest_dir directory. Also i checked read and Write permissions are there . I am able to create the external table but when i try to fetch the data i m getting below error ..
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file IOMM_20121213_060736.csv in EXT_TAB_DIR not found
    now my doubt is this possible ? Can we use remote directory for External table ? or is there is there any alternative way to achieve same ?
    Thanks & Regards,
    Vikash Jain(DBA)

    could you confirm the name and the existence of this file "IOMM_20121213_060736.csv" ?
    same error like:
    http://www.oracle-base.com/articles/9i/external-tables-9i.php
    if the load files have not been saved in the appropriate directory the following result will be displayed.
    SQL> SELECT *
      2  FROM   countries_ext
      3  ORDER BY country_name;
    SELECT *
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file Countries1.txt in EXT_TABLES not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 14
    ORA-06512: at line 1Edited by: Fran on 10-ene-2013 23:32

  • Could we use embedded SQL for XML in .pc ?

    Hi,
    Can we use embedded SQL for XML in .pc ?
    <1> assume we have run SQL statements in Oracle9i:
    SQL>create table MY_XML_TABLE
    (Key1 NUMBER,
    Xml_Column SYS.XMLTYPE);
    SQL>insert into MY_XML_TABLE(key1, Xml_Column) values
    (1, SYS.XMLTYPE.CREATEXML
    ('<book>
    <chapter num="1">
    <text>This is the my text</text>
    </chapter>
    <book>')
    <2> Could we directly translate it in .pc as usually:
    <outlined, not exactly)
    int emp_number = 1;
    XML_Data emprec; /* ?????? */
    EXEC SQL SELECT M.Xml_Column.GETCLOBVAL() as XML_Data
    INTO :emprec INDICATOR :emprec_ind
    FROM MY_XML_TABLE M
    WHERE Key1 = :emp_number;
    Thanks
    MJ

    reply by myself.
    No problem!!
    ===============================
    int emp_number = 1;
    struct emprec{
    char feature[1280]
    EXEC SQL SELECT M.Xml_Column.GETCLOBVAL() as XML_Data
    INTO :emprec INDICATOR :emprec_ind
    FROM MY_XML_TABLE M
    WHERE Key1 = :emp_number;

  • Should I use dynamic SQL for simple updates?

    Please tell me, out of the two options given below, which option should i use to update columns in a table and why?
    what will be the performance difference between the two approaches?
    Please note: The options given below is just for an example
    procedure proc1(var1 varchar2)
    is
    begin
    update tab1 set col1 = var1;
    commit;
    end;
    procedure proc1(var1 varchar2)
    is
    sqlstr varchar2(1000);
    begin
    sqlstr := 'update tab1 set col1 = :v1';
    execute immediate sqlstr using var1;
    commit;
    end;
    Thanks
    Arun

    Arun G Nath wrote:.
    Should I use dynamic SQL for simple updates? No way, not a chance.
    Performance is not the issue (as long as you are using bind variables).
    But with dynamic SQL, you loose compile time checking; you do not know until runtime if the SQL is valid.
    You also loose the dependency between proc1 and tab1, which can be found only if you search user_source.
    (And in either case, you probably want to remove the commit)
    Regards
    Peter

  • How to use Remote key for linking two repository

    Hi,
    I have a challenge like not to repeate common tables like Company_code,Currency,Vendor name,customer name across all repositories.
    Is there any way I can use 'Remote key' to link different repository.
    I can create a Main table with all common attributes required across the repository but want to know how I can connect it to different repository.
    For example to get company-code in Vendor table , how can I link Company-code main table(customized) in another repository may be thru 'Remote key'.
    Going thru java api route is not prefffered for the sake of simple solution.
    Appreciate your help in providing any idea and detail steps for the process.
    -regards, Reo

    could you confirm the name and the existence of this file "IOMM_20121213_060736.csv" ?
    same error like:
    http://www.oracle-base.com/articles/9i/external-tables-9i.php
    if the load files have not been saved in the appropriate directory the following result will be displayed.
    SQL> SELECT *
      2  FROM   countries_ext
      3  ORDER BY country_name;
    SELECT *
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file Countries1.txt in EXT_TABLES not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 14
    ORA-06512: at line 1Edited by: Fran on 10-ene-2013 23:32

  • Using a SQL for Oracle in Microsoft Excel Query

    I am having the most difficult time (in fact, I can't get it to work) trying to use an SQL I created in Toad for Oracle. It works fine in Toad for Oracle...gives me all the data I need. I am trying to use it in Excel for users that don't know SQL or Oracle so they can use the query to extract data they need for Charts, Graphs, etc.
    Here is the SQL code from Toad for Oracle:
    /* Formatted on 2006/09/22 11:42 (Formatter Plus v4.8.6) */
    SELECT a_compl_summary.incident_number, a_compl_summary.case_number,
           a_compl_summary.part_sequence, a_compl_summary.part_number,
           a_compl_summary.lot_number, a_compl_summary.alert_date,
           a_compl_summary.entry_date, a_compl_summary.NAME,
           a_compl_summary.MONTH, a_compl_summary.product_family,
           a_compl_summary.complaint, a_compl_summary.reportable,
           a_compl_summary.product_returned, a_compl_summary.case_desc,
           a_compl_summary.failure_invest_desc, a_compl_summary.lhr_search,
           a_compl_summary.root_cause, a_compl_summary.corrective_action,
           a_compl_summary.region,
           rp_qa_reported_device_codes.reported_device_code,
           rp_qa_reported_device_codes.reported_dev_clarification,
           rp_qa_reported_device_codes.reported_dev_code_desc,
           rp_qa_patient_codes.patient_code,
           rp_qa_patient_codes.patient_code_clarif,
           rp_qa_patient_codes.patient_code_severity,
           rp_qa_patient_codes.description
      FROM chsuser.a_compl_summary,
           chsuser.rp_qa_patient_codes,
           chsuser.rp_qa_reported_device_codes
    WHERE (    (a_compl_summary.product_division = 'CP')
            AND (    a_compl_summary.entry_date >= :date1
                 AND a_compl_summary.entry_date <= :date2
            AND (   a_compl_summary.product_family LIKE :pf1
                 OR a_compl_summary.product_family LIKE :pf2
                 OR a_compl_summary.product_family LIKE :pf3
                 OR a_compl_summary.product_family LIKE :pf4
                 OR a_compl_summary.product_family LIKE :pf5
            AND (a_compl_summary.region = :r1)
            AND (   a_compl_summary.NAME = :c1
                 OR a_compl_summary.NAME = :c2
                 OR a_compl_summary.NAME = :c3
                 OR a_compl_summary.NAME = :c4
                 OR a_compl_summary.NAME = :c5
            AND (a_compl_summary.complaint = :yorn)
            AND (   rp_qa_reported_device_codes.reported_dev_clarification LIKE
                                                                              :cl1
                 OR rp_qa_reported_device_codes.reported_dev_clarification LIKE
                                                                              :cl2
                 OR rp_qa_reported_device_codes.reported_dev_clarification LIKE
                                                                              :cl3
                 OR rp_qa_reported_device_codes.reported_dev_clarification LIKE
                                                                              :cl4
                 OR rp_qa_reported_device_codes.reported_dev_clarification LIKE
                                                                              :cl5
            AND (rp_qa_reported_device_codes.reported_dev_clarification NOT LIKE
                                                                              :dc1
            AND (a_compl_summary.incident_number =
                                               rp_qa_patient_codes.incident_number
            AND (a_compl_summary.case_number = rp_qa_patient_codes.case_number)
            AND (a_compl_summary.part_sequence = rp_qa_patient_codes.part_sequence
            AND (a_compl_summary.incident_number =
                                       rp_qa_reported_device_codes.incident_number
            AND (a_compl_summary.case_number =
                                           rp_qa_reported_device_codes.case_number
            AND (a_compl_summary.part_sequence =
                                         rp_qa_reported_device_codes.part_sequence
            AND (rp_qa_reported_device_codes.incident_number =
                                               rp_qa_patient_codes.incident_number
            AND (rp_qa_reported_device_codes.case_number =
                                                   rp_qa_patient_codes.case_number
            AND (rp_qa_reported_device_codes.part_sequence =
                                                 rp_qa_patient_codes.part_sequence
           )Can someone help me...maybe point out what I'm doing wrong.
    Note: I also tried creating this query in Microsoft Query (the simple way) and when I first create it...it works...But then if I go back in to edit the query, and refresh the query or try to Return data to Excel, it gives me a ORA-00936 error message.
    Why it works when I first create the query in Excel, I don't know. But I have to validate the queries I'm creating (SQL or not) and I can't validate it if every time I go into edit the query (which may have to happen; that's why I have to fix this before I can submit my validation).
    Anyway, any help would be greatly appreciated.

    Okay, I know I'm replying to my own threads here...but I want to add a little bit more information again.
    I was successful in figuring out that changing the :criteria to a ? worked.
    I tested this on 1 criteria at a time. Adding one more scenario ? at at time.
    It only worked up until about 3 scenarios of each criteria.
    Then when I refreshed the query in Microsoft Excel Query, I got an "out of memory" error, and then it ended up just erasing the SQL I had been using.
    Here's the SQL I had where it gave me this error. Am I possibly just making Excel work too hard? It just doesn't make sense because Toad for Oracle handled it in like 4 seconds. Which brings me back to an intial question I had. Can Excel use Toad for Oracle somehow?
    Here's the code:
    SELECT a_compl_summary.incident_number, a_compl_summary.case_number,
           a_compl_summary.part_sequence, a_compl_summary.part_number,
           a_compl_summary.lot_number, a_compl_summary.alert_date,
           a_compl_summary.entry_date, a_compl_summary.NAME,
           a_compl_summary.MONTH, a_compl_summary.product_family,
           a_compl_summary.complaint, a_compl_summary.reportable,
           a_compl_summary.product_returned, a_compl_summary.case_desc,
           a_compl_summary.failure_invest_desc, a_compl_summary.lhr_search,
           a_compl_summary.root_cause, a_compl_summary.corrective_action,
           a_compl_summary.region,
           rp_qa_reported_device_codes.reported_device_code,
           rp_qa_reported_device_codes.reported_dev_clarification,
           rp_qa_reported_device_codes.reported_dev_code_desc,
           rp_qa_patient_codes.patient_code,
           rp_qa_patient_codes.patient_code_clarif,
           rp_qa_patient_codes.patient_code_severity,
           rp_qa_patient_codes.description
      FROM chsuser.a_compl_summary,
           chsuser.rp_qa_patient_codes,
           chsuser.rp_qa_reported_device_codes
    WHERE (    (a_compl_summary.incident_number =
                                               rp_qa_patient_codes.incident_number
            AND (a_compl_summary.case_number = rp_qa_patient_codes.case_number)
            AND (a_compl_summary.part_sequence = rp_qa_patient_codes.part_sequence
            AND (a_compl_summary.incident_number =
                                       rp_qa_reported_device_codes.incident_number
            AND (a_compl_summary.case_number =
                                           rp_qa_reported_device_codes.case_number
            AND (a_compl_summary.part_sequence =
                                         rp_qa_reported_device_codes.part_sequence
            AND (rp_qa_reported_device_codes.incident_number =
                                               rp_qa_patient_codes.incident_number
            AND (rp_qa_reported_device_codes.case_number =
                                                   rp_qa_patient_codes.case_number
            AND (rp_qa_reported_device_codes.part_sequence =
                                                 rp_qa_patient_codes.part_sequence
    AND (a_compl_summary.product_division = 'CP')
            AND (    a_compl_summary.entry_date >= ?
                 AND a_compl_summary.entry_date <= ?
            AND (   a_compl_summary.product_family LIKE ?
                 OR a_compl_summary.product_family LIKE ?
                 OR a_compl_summary.product_family LIKE ?
                 OR a_compl_summary.product_family LIKE ?
                 OR a_compl_summary.product_family LIKE ?
            AND (a_compl_summary.region = ?)
            AND (   a_compl_summary.NAME = ?
                 OR a_compl_summary.NAME = ?
                 OR a_compl_summary.NAME = ?
                 OR a_compl_summary.NAME = ?
                 OR a_compl_summary.NAME = ?
            AND (a_compl_summary.complaint = ?)
            AND (   rp_qa_reported_device_codes.reported_dev_clarification LIKE
                 OR rp_qa_reported_device_codes.reported_dev_clarification LIKE
                 OR rp_qa_reported_device_codes.reported_dev_clarification LIKE
                 OR rp_qa_reported_device_codes.reported_dev_clarification LIKE
                 OR rp_qa_reported_device_codes.reported_dev_clarification LIKE
            AND (rp_qa_reported_device_codes.reported_dev_clarification NOT LIKE
               ))

  • How to use a driver for two installations

    Hi everyone
    I downloaded from ni.com a driver for my spectrum analyzer (agesa). I had this installed on a LV 8.0 installation, and it worked.
    I have now updated to 8.2. In this installation the driver doesn't show up.
    The problem: I need both installations, and I need the driver to show up on both installations. When I restart the installation program for the driver, I only can repair it (for the 8.0 installation) or remove it (which I don't want to).
    How can I use the driver in both installations?

    Now this is quite embarassing Someone might want to delete this thread.
    I didn't think it was that easy.
    Thank you, works

  • Using native sql for update

    Hello ,
    I have a reqaust to update a db table declared "outside" our R3 db.
    I mennage to select the data using native sql with a connection to the db.
    Now i need to modify the data on the db.
    Is there a similliar command like "fetch next" ' for update?
    Mybe i need to build a procedure in th "host" db and use its own commands to update?
    Thanks,
    koby

    Hello Kobi,
    Which release of SAP are you woking on?
    If you're on ECC6.0, instead you using Native SQL to call the stored procs of external DBs you can use the [ADBC APIs |http://help.sap.com/abapdocu_702/en/abenadbc_procedure.htm](CL_SQL* classes).
    BR,
    Suhas

  • Stupido! - two copies of Studio 2 but used same discs for both installs!

    Yes, I truly own two copies of Final Cut Studio 2 and yes, I truly used only one serial number/disks for both installs. Of course, only one will run. But when I tried to delete one version in order to install the 2nd set, the original serial number is still there. How can I completely delete one install and begin all over again - or, how to I change the serial number to the correct one.
    Many thanks for any help - I'm stuck!
    Cleo1076

    Remove the system ID file instruction can be found here
    http://docs.info.apple.com/article.html?artnum=303184
    How did I find that you ask? Open Final Cut Pro and go to Help/Final Cut Pro Support it'll take you there!

  • Bulk Loading using remote sql statement execution

    Well, i have a different scenario. I want to bulk load the tables like we do in MySQL with LOAD LOCAL DATA sql command.
    I have a file populated with data, what sql statement would bulk load the data into specified table using that file?
    Adnan Memon

    In Oracle, you would either use the SQL*Loader utility to load data from a flat file or you would create an external table (9i and later) that loads the flat file.
    A quick example of the external table approach
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Ipad no longer connects to internet after using remote app for apple TV

    I can use the Remote app on my Ipad to connect to Itunes library through my apple TV but as soon as I do that, I can no longer connect to the internet on my Ipad.  The network stays connected on my Ipad but no internet.  I have to recycle the router (airport extreme) and power off the Apple TV.  Once I do that I can then connect to the internet again.  I am using a Mac Pro as my desktop with airport extreme as my router.  All software is up to date.  Appreciate any thoughts anyone might have.  Its a pain to use that litte remote for my Apple TV.

    My question: Is it normal for the internet connection to switch from an Apple Network to another network?
    No.
    You are probably connecting to a neighbor's wireless network. Unplug your base station and see if the network remains.

  • Cannot use product key for Vista installation on my Satellite U400-112

    HI, NICE DAY
    I BOUGHT TOSHIBA SATELLITE U400-112 , WINDOWS VISTA , I FORMATED MY LAPTOP THEN I SETUP WINDOWS VISTA , BUT WHEN I INTRED THE PRODUCT KEY (THAT IN THE LAPTP`S STICKER) , A MESSAGE APPEAR AND TELL THE P K IS INVALID !!!
    BY THE WAY, MY WINDOWS VISA IS A COPY CD OF THE ORIGENAL VISTA, IT CAN BE UPTATED BUT DOES`T ACCEPT MY LAPTOP PRODUCT KEY!!!
    WAIT FOR HELP, THANKS.

    hi
    i get answer by search results
    ther is
    Hi!
    The product key on the bottom side of the notebook is an OEM key and belongs to the preinstalled OEM version. That means you can??t use this key with a normal Vista installation disk that you can buy on the internet or from a computer shop.
    If you want to install Vista you should a Toshiba recovery disk or a Microsoft disk with the corresponding product key.
    You can order a Toshiba recovery disk from Toshiba directly:
    https://backupmedia.toshiba.eu/landing.aspx
    Bye
    thanks

  • Power view not working using remote sql

    Hi
    Our Sharepoint 2013 has all it's content databases installed on a sql server 2008 R2
    And our BI guys would like to use power view with the data on their SQL 2012 SP1.
    How should I proceed with the setup?
    At the moment I can't find any powerview integration feature to switch on, how should I do this?
    Do I need to install the Reporting Services Add-in for Sharepoint on the sharepoint servers?
    Anders

    PowerView requires SSRS in SharePoint integrated mode. Install SSRS on a SharePoint server in your farm and configure the SSRS Service Instance/Service Application, then try again.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Unable to use public-yum for R installation

    Dear experts,
    I am trying to install R-core for Oracle Enterprise Linux 5 update 6 in order to deploy a R server on it. According to the installation manual I should be using Oracle's public yum server to download and install R (http://docs.oracle.com/cd/E27988_01/doc/doc.112/e26499/install.htm#BABDFEDA).
    However following the guide, setting up yum repository and everything is working fine, when I key in "yum install R.x86_64" it returns there is no such package. I scanned the public yum folders and found no R rpms. May I know where should I get the rpms or where should I point the yum to look for the R packages?
    Thanks.
    Cheers,
    Philip

    Hi,
    It still shows the No package found error.
    I ran yum list and there isn't any R/R-core packages available.
    Below is the output of ls /etc/yum.repos.d/ and yum list (I extract the el5_addons one to keep the post short as it seems unable to upload the entire list as attachment here)
    =================
    ls /etc/yum.repos.d/public-yum-el5.repo
    public-yum-el5.repo.old
    public-yum-el5.repo.old2
    The old and old2 files are just identical backup.
    =================
    root@localhost yum.repos.d>yum list | grep el5_addons
    Bad id for repo: EL5.6 DVD, byte = 5
    This system is not registered with ULN.
    ULN support will be disabled.
    Django.noarch 1.0.2-2.el5 el5_addons
    VirtualBox-3.2.i386 3.2.12_68302_rhel5-1 el5_addons
    VirtualBox-4.0.i386 4.0.16_75491_rhel5-1 el5_addons
    VirtualBox-4.1.i386 4.1.22_80657_el5-1 el5_addons
    VirtualBox-4.2.i386 4.2.4_81684_el5-1 el5_addons
    blocxx.i386 1.0.0-17.2 el5_addons
    hwinfo.i386 13.57-2 el5_addons
    jta.noarch 2.6-1 el5_addons
    kernel-uek-headers.i686 2.6.32-300.39.1.el5uek el5_addons
    kmod-ovmapi-uek.i686 1.0.0-27.300.uek5 el5_addons
    libovmapi.i386 3.0-6.el5 el5_addons
    libovmapi-devel.i386 3.0-6.el5 el5_addons
    libxcrypt.i386 2.4-12.2 el5_addons
    liby2util.i386 2.13.8-0.12 el5_addons
    libzypp.i386 2.15.10-0.4 el5_addons
    ol-template-config.noarch 1.1.0-9.el5 el5_addons
    ovm-template-config.noarch 3.0-68.el5 el5_addons
    ovm-template-config-authentication.noarch 3.0-68.el5 el5_addons
    ovm-template-config-datetime.noarch 3.0-68.el5 el5_addons
    ovm-template-config-firewall.noarch 3.0-68.el5 el5_addons
    ovm-template-config-network.noarch 3.0-68.el5 el5_addons
    ovm-template-config-selinux.noarch 3.0-68.el5 el5_addons
    ovm-template-config-ssh.noarch 3.0-68.el5 el5_addons
    ovm-template-config-system.noarch 3.0-68.el5 el5_addons
    ovm-template-config-user.noarch 3.0-68.el5 el5_addons
    ovmd.i386 3.0-27.el5 el5_addons
    perl-Parse-RecDescent.i386 1.80-259.2 el5_addons
    perl-X500-DN.i386 0.28-133.2 el5_addons
    perl-gettext.i386 1.05-13.2 el5_addons
    python-ZSI.noarch 2.1-a1.el5 el5_addons
    python-sqlite2.i386 1:2.3.3-2.el5 el5_addons
    testutf8.i386 1.0-1.2 el5_addons
    tightvnc-java.noarch 1.3.9-4 el5_addons
    uln-yum-proxy.noarch 0.0.3-1.el5 el5_addons
    xenstoreprovider.i386 3.0-9.el5 el5_addons
    yast2.i386 2.13.104-1.0 el5_addons
    yast2-EM.noarch 1.9.5-0.2 el5_addons
    yast2-all.noarch 2.0-1 el5_addons
    yast2-core.i386 2.13.39-0.3 el5_addons
    yast2-country.i386 2.13.52-0.9 el5_addons
    yast2-hardware-detection.i386 2.13.7-0.9 el5_addons
    yast2-installation.noarch 2.13.192-0.4 el5_addons
    yast2-ldap-client.noarch 2.13.27-0.11 el5_addons
    yast2-mail-aliases.noarch 2.13.8-0.11 el5_addons
    yast2-ncurses.i386 2.13.66-0.12 el5_addons
    yast2-network.i386 2.13.98-0.7 el5_addons
    yast2-nfs-client.noarch 2.13.4-0.11 el5_addons
    yast2-pam.noarch 2.13.5-0.11 el5_addons
    yast2-perl-bindings.i386 2.13.11-0.17 el5_addons
    yast2-pkg-bindings.i386 2.13.117-0.13 el5_addons
    yast2-runlevel.noarch 2.13.11-0.11 el5_addons
    yast2-security.noarch 2.13.7-0.11 el5_addons
    yast2-users.i386 2.13.55-0.4 el5_addons
    yum-arch.noarch 2.2.2-2.el5 el5_addons
    zend-server-repo.noarch 4.1-1.el5 el5_addons
    Does anything seem wrong in my process?
    Thanks.
    Cheers,
    Philip

  • Can we use remote cubes for real time data

    Hi Gurus,
    Can you please explain, can remote cubes be used for sales item and billing item ,data sources, if it, can i extract the data as of normal cube running on these DataSource, if so then i want to make multicube on normal cube and remote cube and make a real time sales data on BW, please explain the possibilities of this, we are on version 3.1c
    Thanks in advance

    Hi,
    Remote cubes are special InfoCubes. A Remote cube represents a logical view.
    Unlike with BasisCubes however, no data is physically stored in SAP BW. The
    data is taken from the source systems only after a query has been executed.
    There are three types of remote cube. They can be distinguished by the way
    in which they retrieve data.
    Overview: Virtual Cube Types
    -SAP RemoteCube
    A SAP RemoteCube allows you to define queries with direct access to transaction data in other SAP systems.
    -General RemoteCube:
    A general Remote Cube allows reporting using data from non-SAP systems. The external system transfers the requested data to the OLAP processor via the BAPI.
    -Virtual InfoCube with Services:
    For a virtual InfoCube with services, a user-defined function module is used as the data source.
    Regards
    Pavan Prakhya

Maybe you are looking for