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.

Similar Messages

  • Generic extraction (table,view,functionmodule)

    hi
    In generic Extaction when we use table and view and function module and sap qu (scenario)
    AND
    plz send some examples
    Please search the forums before posting

    Hi,
    when Standard Extractors are not supporting to your requirement then we go with Generic Extraction.
    Here we have Three different types to design generic extractors
    Table
    View
    Function Module
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a0f46157-e1c4-2910-27aa-e3f4a9c8df33
    https://websmp103.sap-ag.de/~sapidb/011000358700007535452002
    Hope this will help you.
    Thanks
    Prasad

  • Table View crashing when trying to use UITableViewCell from NIB

    Hi All,
    I have narrowed down my issue to a simple piece of code. I have a simple NIB file which only contains a UITableViewCell with a label on it. In the NIB i set the cell class to StatCell, which is a UITableViewCell class I created, and set the identifier to "MyStatCell". The following code is the rowAtIndexPath function of my UITableView.
    static NSString *StatID = @"MyStatCell";
    StatCell *statCell =(StatCell*) [tableView dequeueReusableCellWithIdentifier:StatID];
    if(statCell == nil){
    statCell = (StatCell *) [[[NSBundle mainBundle] loadNibNamed:@"StatCellView" owner:self options:nil] objectAtIndex:1];
    [statCell autorelease];
    return statCell;
    The initial TableView shows up fine, however once I scroll past a few rows, it halts with the EXECBADACCESS. Any ideas as to what my issue may be?
    Thanks a ton

    You can try to select only one setting at the time in [[Clear Recent History]] to see which one is causing the crash.

  • Insert form view data into table view

    Hi Experts,
      I have
                 --> a form view with three input fields and a button(ADD)
                 --> a table view with three columns.
    Both views in same page.
    My requirement is when a user enters the three inputs and click button (ADD) all the inputs entered should be inserted in the below table view.
    User can be able to enter multiple lines by clicking ADD again and again with different inputs.
    How to insert rows from a form view event (ADD) into table view?
    Thanks&Regards,
    karthik

    Hi
    Which 'System Action' are you using in the 'Add' button? You need to use 'Insert Row' Action. When you select this below the action you will get one box 'Apply To' there you select the table. Then save & deploy the model, you will get what you want.
    Caution - THis data will not get stored in the table permenently, once you close this model you will loose all the data.
    Regards
    Sandeep

  • Table views  as data source to imported in OBIEE

    I have a data source that consist of tables view and packages and function and I needed to import them into OBIEE physical layer. I never imported tables view into the physical layer , so I will like some help. As far as the packages and functions, how do you deal with them when importing the tables view in OBIEE?

    Hi friend,
    To import a view follow nexts steps on administration tool:
    - File -> import -> from database
    - Select correct connection type (at the same way when you import a table).
    - Enter correct user and password.
    - Go to correct schema which contain data base elements.
    - Select check box "Views". Now it will appear views created in that schema.
    Good luck.

  • Export entire Dashboard in excel is giving error generating document when table view have subtotals

    Hi all,
    We have dashboard with multiple tabs and are trying to Export entire Dashboard into excel.
    Excel file is generated with all dashboard tabs as sheets but few of those sheets are empty with Error generating document message in first cell.
    After further analysis we concluded that cause is table view with subtotals enabled. Pivot tables with subtotals are generated properly.
    Obvious workaround solution to recreate table views into pivots is not possible due high number of reports.
    We are running Oracle Business Intelligence Product Version 11.1.1.7.150120 (Build 150113.1200 64-bit)
    Any ideas or solutions about this problem would be much appreciated.
    Thank you;
    Klaudio

    We just found culprit
    Rows per page of table view must be max 999999999 which is more than enough for our needs.

  • Reuse of table view in mine own view.

    Hi experts,
    I have reused a view from standard component BP_DATA ( marketing attribute : table view ) into my component.
    I have created a component usage for BP_DATA and then i have assigned the usage are to a view set and then that view set is assigned to window directly.
    When i am launching Web UI , I am getting the view area only.
    Couple of requirements further is :
    1. To assign the title to that area.
    2. To have the table view fields available on view area.
    view area in in black border in Screenshot attached.
    Kindly advice.
    Thank you.
    Regards,
    Vishal

    Hi Vishal,
    I would try to answer your questions:
    1. To assign the title to that area.
                  Try to find a method *descrition* in IMPL class
    2. To have the table view fields available on view area
                   Generally if you add a view (a) inside view set (b) - in runtime to make field visible there should be similar kind configuration in view with configuration key object type etc. used in viewset; it means viewset configuration crietria gets precedence unless there is a BADI implemented for the view to alter the criteria.
    So please check configuration and BADI CRM*VIEW*CONFIG
    Hope it helps.
    Thanks
    Krish

  • Table Views - Referencing data rows

    I have a table view set up where files are selected from a path and placed into the table and reordering. This works fine. However, I need to now perform other tasks on those files (in the order that they now exist in the table) and I don't know how to reference and call data source. Part of my script:
    else if name of theObject = "choose" then
    set theFolder to choose folder with prompt "Choose the folder containing the files" default location (path to desktop) without invisibles
    tell application "Finder"
    set theFiles to every file of theFolder
    set theTableViewContents to {}
    repeat with aFile in theFiles
    tell aFile to set end of theTableViewContents to {its name, it as text}
    end repeat
    end tell
    tell window "merger"
    set content of table view 1 of scroll view 1 to theTableViewContents
    end tell
    end if
    set allows reordering of table view 1 of scroll view 1 of window "merger" to true
    set allows multiple selection of table view 1 of scroll view 1 of window "merger" to true
    ===============
    Prior to setiing up a table, a typical task was initiated immediately after the files were selected. One of the scripts:
    tell application "Finder" to set files_ to files of folder_ as alias list -- *this now needs to reference the updated contents of table - folder_ no longer exists*
    --set files_ to items 1 thru 2 of files_
    try
    set file_ref to open for access output_ with write permission
    repeat with file_ in files_
    set text_ to read file_
    write (text_ & return) to file_ref starting at eof
    end repeat
    try
    close access file_ref
    end try
    on error e
    display dialog e
    try
    close access file_ref
    end try
    end try
    Thanks so much.

    Hi friend,
    To import a view follow nexts steps on administration tool:
    - File -> import -> from database
    - Select correct connection type (at the same way when you import a table).
    - Enter correct user and password.
    - Go to correct schema which contain data base elements.
    - Select check box "Views". Now it will appear views created in that schema.
    Good luck.

  • Best way to pass back data from hierarchical table view?

    Hi,
    I have a view hierarchy using a navigation controller that's working pretty well. One of the bottom level views is a table view where the user selects an item from the list. This bottom view checks the list item, saves the selected item in a property, and then pops the view off the stack.
    What's the best way to alert the parent view that the child view has been popped off so it can retrieve the value in the property? The calling push returns immediately, so it doesn't appear to be a modal call. I want to be able to use the same controller from other parent forms, so I need to be able to do this without referencing the parent in the child form ideally.
    Thanks
    Ray

    Hi, well let me try to explain it a bit more
    - Add a "delegate" property to your child-viewcontroller-class
    - Define a protocoll within each chil-viewController-class
    In this example let us name it "didSelectValue:(NSString *)value"
    - In the parent-viewcontroller before pushing a child-viewcontroller set it's delegate property to "self" (parent-viewcontroller)
    - In the parent-viewcontroller implement to protocoll-method "didSelectValue:(NSTring *)value"
    - In the child view-controller in (assuming it is a tableViewcontroller) add some code in didSelectRowAtIndexPath that checks if the delegate is set and check if it responds to selector "didSelectValue:(NSString *)value". If so, call it with the selected value.

  • Data Extraction from SAP R/3 Table View in BW

    Dear All,
    I am trying to create a BW query from SAP R/3 Table View.
    Till now i have created a table view
    Extracted Data source in R/3 Useing Tcode : RSA3
    In BW Side
    1. I have replicated the data source in Source system
    2. Created  info object
        and info object catalog
        and assigned it
    Now i am little confused over what to do next
    wheather to create ODS object in info cube,
    Please guide me with rest of steps to follow.
    Regards,
    Gaurav

    Hi,
    After replicating DS in BW, you have to maintain ODS or Cube for maintaining data in BW.
    After loading data into Data Targets you can create Reports based on those Data Targets.
    For better reporting performance you can create Cube rather ODS.
    Info Source(After Creating info Objects, you have to create a Transfer Structure to map the Fields.)
    Then create a Data Target ODS/Cube.
    Update rules
    Info Package
    Hope it helps you .
    Let us know if you still have any issues.
    Reg
    Pra

  • How to select the data from a Maintainance View into an internal table

    Hi All,
    Can anybody tell me how to select the data from a Maintainance View into an internal table.
    Thanks,
    srinivas.

    HI,
    You can not retrieve data from A mentenance view.
    For detail check this link,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ed2d446011d189700000e8322d00/content.htm
    Regards,
    Anirban

  • 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

  • How to pull the table data into SAP BI

    hi all,
    i have connected to oracle database and i can see the view of the tables in sap BI.can u please help me out how to see the data inside the table and how to load that table data into info cube.

    Hi Vamshi ,
    In R3 there is a t-code RSDBC through that t-code you make your data source .
    I know you already make a connection between r3 and sql2000.
    in RSDBC in logical system name you enter your connection name,and in table /view u should enter sql table name and make sure the table name which u enter in this text box should be store in sql in capital letters and fields should be in capital letters.
    and generate your data source and execute it it show all the record .
    Thanks for material its really gud
    Ankit modi

  • Anyone tried this - Extract data from HANA Live reuse views into BW?

    Hello Experts,
    I've read from this blog http://scn.sap.com/community/bw-hana/blog/2014/05/26/go-hybrid--sap-hana-live-sap-bw-data-integration that this scenario
    > "Loading of data into BW using Reuse Layer of SAP HANA Live as data source (Extract data from HANA Live reuse views into BW)" is possible.
    Does anyone has a step by step guide on how to do this? Can you please share?
    Regards,
    DaSaint

    Hi DaSaint,
    best to check the online documentation
    Notes about transferring data from SAP HANA using ODP - Modeling - SAP Library
    Best regards,
    Andreas

  • View Calculation view of ECC in SAP BW on HANA Server

    Hello All,
    I have a question
    1. We have SAP BW powered by HANA
    2. We have ECC System which is also powered by HANA
    3. We have HANA Studio installed on our desktop
    4. Lets say I have connected to ECC Data Base VUA HANA studio and created Calculation Views.
    5. Now when I logon to BW server I want the calculation VIew to be exposed to BW
    what are the steps to establish connection between BW and HANA
    how can I see the Calculation view created VIA Hana Studio in ECC Hana Database in BW Server
    My requirement it I will upload all master data in BW and then Calculation view created in ECC will need to be exposed to BW on HANA server then link this Calculation View to Master Data in BW Via Composite Provider and then use this for reporting.
    Please suggest possible ways by which by which I can see the calculation views created VIA HANA Studio on ECC HANA Data base.
    Regards,
    Sachin

    Hi Sachin,
    You have my Role model & hero's name I will definitely help you out ...
    To repeat your question..
    You have ECC on HANA and also BW on HANA
    ECC and BW cannot coexists on single HANA box as of today. So in your landscape you might be having two HANA boxes ,one connecting to ECC and other to BW.
    Now your question is you want to bring the Calculation view build on ECC HANA box to BW  HANA box. Check the steps below to achieve the same.
    1) if you have already build a calculation view in ECC HANA box then export the Calculation view  .
    2) Connect the two HANA box via SLT and replicate all the tables that is required for the calculation view.
    3) Once the tables are replicated   then import the Calculation view that is exported earlier.
    4) Now the calculation view is in BW on HANA box. Now its possible to build a composite provider by combining the BW master data and ECC transaction data calculation view.
    If you don't want to use SLT then use SDA option to virtualize all the required tables and rebuild the calculation view again on these virtual tables.
    Hope this answers your question.
    Thanks & Regards
      A.Dinesh

Maybe you are looking for

  • Apple TV cannot update software sucessfully

    My Apple TV is currently on ver 2.3.1. Every time when I try to update the software, it downloads the software (successful) and tries to installs it (unsuccessful) afterwhich the amber light appears on the set and the question mark icon appears on th

  • Terminal

    ok guys, I'm not new to macs but don't use terminal very much. Just got my new i7 and opened terminal. I entered ' smartctl -a /dev/sdX | grep LoadCycleCount ' hoping to find out how many cycles my hard drive has registered not knowing if the command

  • Xerces Sockets and The root element is required

    Hi, I have a problem with Xerces 1.4.3 saying "The root element is required in a well-formed document.". The story is as follows: When I read the XML from a file, it works OK. But when I send the file over a socket stream, and try to parse it in the

  • Publish path in iWeb (e.g. root)?

    does anybody know how to set iWeb that it will publish to the root (where a personal domain would point)? Having a look at my mounted iDisk the index.html file resides in <iDisk>Web/Sites iWeb automatically creates a folder named iWeb and within anot

  • How can I make a table screen-reader accessible?

    I need to make a table screen-reader accessible prior to publishing on the web. Is there any way to make a table accessible in Numbers?