Transfer Table View from R/3 to Sap BW? How to Replicate DS form R/3 to Bw?

Dear Friends ,
I have a requrement where I need to transfer a Table view from SAP R/3 to SAP BW System.
I have made view ,
In RSO2 identified Data source
In RSA3 Did the data extracion process.
I need proceeding steps to follow in SAP BW
1. Replicate the data source
2.Etc
Regards,
Gaurav sood

Hi Gaurav,
Your question is not clear.
There is no need to transfer view from R3 to BW.
ONce the datasource created in r/3 by using views or tables you have test the datasources wther it extract records or not.
Once the testing is done then in BW side you have to replicate using RSA1 tcode and then extract data from r/3 to bw...
Hope it helps..let me know if its not clear
Regs,
VAC
Assign points if helpfull

Similar Messages

  • How To Update A Table View From Client Side !!!!

    Hi I would like to update a table view from the Client Side. So that the user can keep updating the relevent data on the client and when they have finally finished they can press Save so the entire page is then sent to the Server.
    Does anyone know how to do this, I guess u have to use the EPCM, I have just started on it and would really appreciate some Help.
    Thanks,
    Emmanuel.

    This is what I found :-
    There are a couple of ways to approach this.
    1) load the excel spreadsheet into the database "as is". You can use interMedia
    text to convert the .xls file into a .htm file (HTML) or use iFS (see
    http://technet.oracle.com/
    for
    more info on that) to parse it as well. InterMedia text will convert your XLS
    spreadsheet into a big HTML table (easy to parse out what you need at that
    point)
    2) Using OLE automation, a program you write can interact with Excel, request
    data from a spreadsheet, and insert it. Oracle Forms is capable of doing this
    for example as is other languages environments. In this fashion, you can remove
    the "manual" and "sqlldr" parts -- your program can automatically insert the
    data.
    3) You can write a VB script that uses ODBC or Oracle Objects for OLE (OO4O) in
    Excel. This VB script would be able to put selected data from the spreadsheet
    into the database. We would recommend OO4O. It provides an In-Process COM
    Automation Server that provides a set of COM Automation interfaces/objects for
    connecting to Oracle database servers, executing queries and managing the
    results. OO4O is available from
    http://technet.oracle.com

  • How to transfer table data from one client to another client?

    How to transfer table data from one client to another client?

    Hi,
    Look at the Blog
    /people/community.user/blog/2007/01/07/transport-table-entries
    Regards
    Sudheer

  • Extract Tables/views into ECC 5.0 SAP system from Non-SAP system

    Hi,
    I am looking for some inputs on how to set up the following scenario of extracting data stored in tables/views in a non-sap external system into my SAP ECC 5.0 SAP database.
    Currently we are using a middleware between SAP and the external system to fetch data. I would like to get rid of the middleware and set up a scenario to call this non-sap external system and pull data stored in views into our SAP system directly. Is that possible in SAP version 5.0? If yes let me know the steps to be performed... do I need to set up XI ?

    maybe you can access sap data using some connector such as java or .net connector.

  • Unable to create visual composer table view from the Bex Query

    Hi
    I am trying to create the visual composer lay out from a Bex query. The Bex query contains a set of Key figures and a structure.
    These key figure and structure combination is forming a table in the query output. Key figure parameters are coming as rows and Structure parameters are coming as columns.
    example query out put:
    Total, HPC, FDS excel ICe etc are as Structure elements and coming as columns in query out put and
    Invoice value, Gross sale value, Efficient operations etc are as Key figure elements in query and coming as rows in query out put.
    But if I map this query to visual composer table view all these are coming as columns as given below.
    Total Invoice value ,             Total Gross sale value,    Total Efficient operations,      HPC Invoice vale,.........
    And if execute the query will giving the out put in single row.
    Can anybody help me out to map this in the row column format?
    Is it really possible to do in VC?
    I am using CE 7.2. The VC model I need to be embedding in BPM.
    Please help me to solve this issue. I completely stuck up this issue.
    Regards
    Sajith P
    Edited by: Sajith P on Aug 17, 2010 3:07 PM
    Edited by: Sajith P on Aug 17, 2010 3:15 PM

    Hi,
    Try to use some function module which will convert query data into flat tables. (eg., RS_VC_GET_QUERY_VIEW_DATA_FLAT).
    Hope this solves your issue.
    Regards,
    Vinay

  • Add data to table view from input fields in a page

    Hi
            I am developing a BSP page which will be called from SRM shop transaction. After user enters the line item data, data will be passed back to shop transaction using OCI interface and the page attributes (URL).
       (1) How can I add data from input fields to table view on a page on a button click? I am able to add first line but I could not retain first line data when I try to add the second line.
          I am able to add multiple lines to table view if I use view and controller by adding to the line data to static attribute of the controller. I can’t use the controller and view because I can not set the attribute to Controller automatically.
       (2) Is there a way to pass an attribute (URL) to controller from SPRO? Like we pass an attribute to page automatically (Automatic page attribute).
       (3) How can I call a controller and view and pass the page attribute to the controller on a button click from a page with out controller?
    Thanks
    Sreenivas

    I'm trying to test the merge with the following data in a test.txt file:
    ZZZZZ114923000004
    1234Z400660000001
    ZZZZZ114923000010
    Getting an error:
    SQL> @C:\dataformats\sql\pc12seriesMerge.sql
    Directory created.
    SP2-0552: Bind variable "17" not declared.
    SQL>
    here it the pc12seriesMerge.sql file
    set serveroutput on
    create or replace directory user_dir as 'c:\dataformats\incoming\';
    DECLARE
    v_filename VARCHAR2(100); -- Data filename
    v_file_exists boolean;
    v_file_length number;
    v_block_size number;
    f utl_file.file_type;
    s varchar2(200);
    lineString varchar(200);
    v_account varchar(5);
    v_IDN varchar(6);
    v_quantity varchar(6);
    BEGIN
    v_filename := 'TEST.TXT';
    DBMS_OUTPUT.PUT_LINE(v_filename); --shows filename
    utl_file.fgetattr('USER_DIR', v_filename, v_file_exists, v_file_length ,v_block_size );
    IF v_file_exists THEN
    dbms_output.put_line('File Exists');
    create table ext_table (
    account varchar2(5),
    idn number(6),
    quantity varchar2(6)
    organization external (
    type oracle_loader
    default directory user_dir
    access parameters (
    records delimited by newline
    fields (
    account position(1:5) char(5),
    idn position(6:11) char(6),
    quantity position(12:17) char(6)
    location ('test.txt')
    reject limit unlimited;
    MERGE INTO id_req_stg t
    USING (
    SELECT account,
    idn,
    decode(quantity, '-', 0, to_number(quantity)) as quantity
    FROM ext_table
    ) v
    ON ( t.account = v.account AND t.idn = v.idn )
    WHEN MATCHED THEN
    UPDATE SET t.quantity = v.quantity
    DELETE WHERE t.quantity = 0
    WHEN NOT MATCHED THEN
    INSERT (account, idn, quantity)
    VALUES (v.account, v.idn, v.quantity);
    ELSE
    dbms_output.put_line('File Does Not Exist');
    END IF; -- file exists
    EXCEPTION
    WHEN UTL_FILE.ACCESS_DENIED THEN
    DBMS_OUTPUT.PUT_LINE('No Access!!!');
    WHEN UTL_FILE.INVALID_PATH THEN
    DBMS_OUTPUT.PUT_LINE('PATH DOES NOT EXIST');
    WHEN others THEN
    DBMS_OUTPUT.PUT_LINE('SQLERRM: ' || SQLERRM);
    END;
    /

  • How to Transfer the Data from ORACLE APPS to SAP

    Hi Gurus,
    Here are my couple of quieries regarding Data Migration from Legacy(Oracle Apps) to SAP.
    1. How to link between Legacy system(ORACLE APPS) and SAP ?
    2. How to migrate the data from Oracle tables to SAP directly, instead of loading the flat files(.txt, .xls) ?
    Please respond to my queries ASAP.
    Thanks,
    SAPSURE.
    Edited by: sapsure on Sep 9, 2010 11:39 AM
    Edited by: sapsure on Sep 10, 2010 2:32 PM

    1. How to link between Legacy system(ORACLE APPS) and SAP ?
            If you have SAP PI in place then you can interact with oracle database tables directly from PI and then data can be posted to SAP transactions through IDocs/BAPIs.
            If you did not have SAP PI still you can do JDBC connection directly from ABAP program. Not sure about the exact steps check in forum.
    2. How to migrate the data from Oracle tables to SAP directly, instead of loading the flat files(.txt, .xls) ?
            If you want to directly post the data SAP transactions (I hope not directly to SAP tables) then connection needs to establish through ABAP program or Via. PI.
    Regards,

  • Can I transfer my photos from picasa 3 to photoshop and how?

    I have photos in my picasa 3, that I need to transfer to Photoshop, to adjust Pixels and DPI. How can I transfer them? and then I need them in1024 x 768 with 72 DPI. Could you explain to me in a simple manner. I am not an expert in Computer , altough I know some.       Thank you so much, I just got the Photoshop Discgarge ad I don`t know yet anything about it.    Jorge

    See Here
    How to transfer or sync content to your computer
    From Here
    http://www.apple.com/support/iphone/syncing/

  • Need to transfer data records from one version of sap to another version of

    hello,
            i have a requirement where i need to transfer the tables  with the records in it from sap r/3 4.7 version to sap ecc 6.0 version,now the present issue is how to tranfer the data records from old version to new version......kindly help me in this requirement

    Hi,
        Write a program in SAP 4.7 to download all records to a flat file. Then write a program in ECC6 to upload all records from the flat file...........
    Thanks,
    Aditya.

  • How to transfer Cats data from legacy system to SAP System

    Hi,
    I need to export data to CATS from Legacy system.What is the procedure for that?
    How do I define field?
    Please help it is urgent.
    Thanks,
    Kavita

    Hi Kavita,
      Check the link below.
       http://sap-img.com/sap-data-migration.htm
      Reward points if it helps.
    Regards
    Karan

  • Crystal Reports - Tables Missing from the List Within SAP Data Dictionary

    We have installed the Integration Kit and would like to create reports in Crystal Reports 2008 based on some transparent tables (BKPF being one) in our ECC 6.0 box. Using the standard Data Source 'SAP Table, Custer, or Function' we are able to connect to our ECC system and generate a list of tables within the data dictionary. However, we are missing quite a few tables such as BKPF and VBAK (tables we can see include EBKN and EBKZ).
    We ran a trace on the system (ST01) but have not found any authorization failures for the assigned account (nor do any errors or issues show up in any of the work process trace logs).
    Has anyone experience anything similar? Helpful pointers to helpful info is much appreciated (we do have all the install and user docs).
    Thanks!
    Joe Haynes
    Edited by: Joe Haynes on Apr 14, 2009 11:41 AM

    Hi Joe,
    try the following:
    - right click on the connection entry
    - select the item options
    - there is on the right hand a box that allows you to enter filter values. example SFL% will show all tables starting with SFL
    - enter a filter and hit OK
    - right click again
    - select refresh.
    most likely it is just the amount of tables coming back
    Ingo

  • I would like to transfer the balance from one Apple ID to another how can this be done??

    I want to transfer the account ballance from my account to my son's. I unintentionally redeemed one of his gift cards to my account. how can this be done?

    Sorry, but balances can't be transferred from one iTunes Store account to another. You'll either have to make his purchases through your account, or buy another prepaid card and redeem that in his account.
    BTW, for future questions, this forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help if you ask in the general iTunes forums.
    Regards.

  • I just purchased an iphone 5s and want to transfer my itunes from my mac to new phone.How do I accomplish this? I tried downloading itunes 11.1 but itunes wont recoginize the updated version and tells me version 10 is still operating? Please help.  Thanks

    Greetings this evening, I just purchased an iphone 5s and want to transfer some of my itunes from my mac running 10.6.7  to my new iphone 5s.I downloaded version 11.1 from the itunes website,restarted my computer but it wont recoginize the new 11.1 version which it tells me I need to sync songs from mac to 5S.Even though I downloaded version11.1 it still says I'm running version 10? How can I get my itunes from my mac onto my new phone and have them in itunes on the phone? Love my music!     Thank You !

    You have to update to 10.6.8 first.
    Then, if your machine qualifies, this explains how to get Mavericks:
    http://www.apple.com/osx/
    This explains whether your machine is capable of Mavericks installation:
    http://support.apple.com/kb/HT5842

  • How to transfer email folders from old Mac to new Mac, How to transfer email folders from old Mac to new Mac

    How do I transfer email folders with all messages from a i-Mac G5 (OSX 10.4.11) to a new iMac with OSX 10.6.7?

    Martin,
    I would recommend starting over this time using Setup Assistant. Because you are migrating from a PPC machine I would migrate everything EXCEPT applications. You should manually install your apps, this will give you the opportunity to udate the ones that need it and I'm sure there are many. You may even apps that won't run on Intel based machines so why migrate them at all? You can use the Setup Assistant tips beginning at "Second chance...." You can either restore from your old machine or from one of it's backups. I think you'll see it's a pretty clean process, something you passed over (I'm not sure why) when  you turned on the new iMac for the first time.

  • I want  to transfer a workout from my ipad to my ipod, how is this done?

    How do I do this?

    The web page for that app says "Backup your personal data to iCloud and restore it on any other iOS device with iFitness installed", so that would seem to be a possibility if your iPod can run iOS 5 (necessary for iCloud). Whether that includes the workouts you're referring to I don't know. Contact the app's developer and ask, and if iCloud isn't an option whether there is anothe way to transfer a workout.
    Regards.

Maybe you are looking for