RSO2 extraction table

Hello all:
in SAP R/3 t.code RSO2 to create datasource, in the field EXTRACTION view/table.
is this the table in R/3 or what?
THx in advance.

Yes, its the R/3 table over which you are building your datasource

Similar Messages

  • How to extract table from oracle in to delimited flat files

    Hi i have the following requirement.i tried one dump procedure but i could extract table one by one.i need to do extract on regular basis using plsql procedure.
    Data will be extracted from production tables in Oracle into pipe delimited flat files that will be sent by SFTP. The list below represents the tables that will be used for extract along with a notation whether the entire table is extracted or only incremental transactional data.
    Table name extraction type No of records
    EXPIRE     All Records     157 - One Time     All Records     17
    ACE All Records     7,970
    DATA All Records     5,868
    MEMBER     All Records     24,794,879
    MEMBER Incremental & Update     13,893,587 (Initial Load)
    MEMBERRED All Records     25,108,606
    MEMBERPOINT     All Records     42,487,640
    MEMBERCOM     Incremental & Update     14,337,561 (Initial Load)
    MEMBERCODE     Incremental Only     14,985,568 (Initial Load)
    MEMBERDETAIL     Incremental Only     14,341,890 (Initial Load)
    MEMBERHISTORY     Incremental Only     70,021,067 (Initial Load)
    suggest me how can i extract these tables by using plsql procedure.In the above table some table has be extract select list of column.

    Saubhik wrote:
    This may help you.
    Re: Dynamic Fetch on dynamic Sql
    Well I was going to post my standard response, but I see I don't have to. ;)

  • Extract table form pdf file

    Is is possible by code to extract table from pdf file to reuse it for other purpose. If yes please let me know the code. thanks

    No, because there is no such thing as a "table" in a PDF.  That may be how you as the viewer interprets the data, but in the PDF specification there is nothing defining a "table".  You would need to design your own logic to determine what parts of the PDF content you want to consider a "table" and then based on that, extract the data you want.

  • RSCRM_BAPI - Extract Table

    Hi All,
    I am using  RSCRM_BAPI  to fetch data from query into extract table.
    The table name will be automatically assign pre-fix "/BIC/0C" in front of the customize table name.
    Thus, it is not allow to transport the table, may I know how to transport this table from Dev to QA system?
    Please advice and thank you in advance.
    /Jamie

    Hi.
    As I know you should create extract manually in each environment.
    Regards.

  • What can Extract Tables from PDF

    Hi All,
    I have a bunch of PDF docs with tabular data in them which I need to extract to process and run calculations on.
    Is there anything out in the world (preferablly free, open source) that is able to get tabluar data out of PDFs into a more readable format in bulk either natively integrated with an app or passively via command line or looping the process in code?
    Can be any format really just as long as the tables are maintained.
    Anything I've found so far is either a one-off (only does one pdf at a time) or does not maintain the table structure (only extracts simple, unstructured text)
    Any ideas please post.

    This is a forum to discuss the actual PDF format and not product recommendations.

  • 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

  • How to add a field in already extracted Table

    Hi ,
    Requirement is to add a new field in VBAK Table ( incoterms). VBAK has alredy extracted in HANA with few selected fields.
    Please suggest

    Hi,
    Please see documentation of enhancement MM06E005 (transaction SMOD).          
    Userexit EXIT_SAPMM06E_016 is a component of enhancement MM06E005.            
    With that enhancement, you can                                                
      -   Maintain/supply your own customer fields                                
      -   Update your own customer-specific tables                                
    You cannot:                                                                   
      -   Change standard fields                                                  
      -   Change data that depends on the document header in the items            
      -   Change data that depends on an item in the document header                                                                               
    Please have a look at Business Add-In (BAdI) ME_PROCESS_PO_CUST.              
    Regards,
    Edit

  • Extract tables from "Oracle Apss 11.0.3" and load it to "Oracle Apps 11i"

    Hi hussein,
    I am tasked to extract the following tables from Oracle Apps 11.0.3 and load it to Oracle Apps 11.5.10.2.
    PO_VENDORS
    PO_VENDOR_SITES_ALL
    Can I use export / import?
    Thanks a lot

    Hi,
    I believe export/import of individual apps tables is not supported due to objects dependency and refrential integrity.
    Regards,
    Hussein

  • 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.

  • Extract table using utl_file

    Hi aces,
    I'm trying to extract a table to a linux file.
    This is the code I'm executing and the error I get :
    create or replace directory repr_utl_dir AS '/home/oracle';
    GRANT read, write ON DIRECTORY repr_utl_dir TO sys;
    declare
    f utl_file.file_type;
    begin
    f := utl_file.fopen('repr_utl_dir','repr.txt','W');
    for s in (select * from repr)
    loop
    utl_file.put_line(f,s);
    end loop;
    utl_file.fclose(f);
    end;
    ERROR at line 7:
    ORA-06550: line 7, column 1:
    PLS-00306: wrong number or types of arguments in call to 'PUT_LINE'
    ORA-06550: line 7, column 1:
    PL/SQL: Statement ignored
    Any ideas please ?

    Hi,
    if you want to do data extraction from procedure, you can try external tables. UTL_FILE will work too, but I expect it'll be slow because of writing line by line. It depends on your needs.
    DECLARE
      f utl_file.file_type;
      l_delimiter varchar2(1) := ';';
    BEGIN
      f := utl_file.fopen('repr_utl_dir', 'repr.txt', 'W') ;
      FOR s IN  (SELECT * FROM repr)
      LOOP
        utl_file.put_line(f, s.column1||l_delimiter||s.column2||...) ;
      END LOOP;
      utl_file.fclose(f) ;
    END;
    /Or create external table:
    create table ext_repr
    organization external
      type oracle_datapump
      default directory "repr_utl_dir"
      location( 'repr.txt' )
    as
    select * from repr
    /

  • Oracle_Datapump extracting table/columns ddl from pumpfile

    LS,
    Can I extract the xml-like information from the header of an existing datapump-file?
    Or can I create an external table (meant to read the datapump-file) without knowing at forehand how the table in the datapump-file is constructed, such as "Create my_ext_table As 'read the header' "?
    Using dynamic SQL, I would like to be able to compare the structure of an given datapump-file to the expected structure (comparison on columns, datatype etc.).
    Regards,
    André Klück

    user9074365 wrote:
    Hi All, I do have 11gr1 database on linux. I do have the full expdp dump of the source database I just need to extract the sql ddl for all the users(mroe than 10000) . . how can i extract ddl for create user statement from this dump file.impdp help=yes
    your desired option is listed

  • I would like to open a URL and extract tables from the HTML code of the web

    Hi I have opened a URL say www.amazon.com and I would like to extract te tables in that particular web page would somebody out there help me with the code so that the output file displays only the relevant tables containing books and its prices dropping out all other data on the web page . My code for opening the URL goes here. Any quick help would be appreciated
    import java.net.*;
    import java.io.*;
    class ConnectionTest {
    public static void main(String[] args) {
    try {
    URL amazon = new URL("http://www.amazon.com");
    URLConnection amazonConnection = amazon.openConnection();
    DataInputStream dis = new DataInputStream(amazonConnection.getInputStream());
    String inputLine;
    while ((inputLine = dis.readLine()) != null) {
    System.out.println(inputLine);
    dis.close();
    } catch (MalformedURLException me) {
    System.out.println("MalformedURLException: " + me);
    } catch (IOException ioe) {
    System.out.println("IOException: " + ioe);
    }

    The quick and dirty way ( Not perfect and will be prone to errors ) :
    As you read the lines using readLine(), look for the string "<table>" (Perhaps using String.indexOf ? -- Java API for class String -- http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html)
    If the start tag is found, start dumping lines into a String (string concatenation), keep doing it until you find the end tag, using the method mentioned.
    Also, you may want to consider the case where <table> or </table> may not be at the beginning of the line, so you may want to use String.substring to selectively extract part of the line that you want to keep.
    Oh, and don't assume that the <table> tag is in lower case, and don't forget that there may be other attributes that are defined in the start and end tags.
    I wouldn't recommend using this method other than a quick and dirty extraction. If you really want to do things the right way, use a HTML parser or use the Amazon Web Services as paulcw suggested.
    Amazon Web Services:
    http://aws.amazon.com

  • Extract tables deployment!

    Hi all!
    I am really sorry but I am getting crazy.
    I am new newbies and I can't get some basic ideas on Apex.
    I would like to find out more information about the databases that are supporting an application, I mean the real databases.
    I would like to extract which is/are the database/s where the tables are really deployed, how can I get it?
    I thank you in advance.

    Start by reading the documentation on APEX, and the two day tutorial... And secondly there r are no databases that support apex, you are thinking in Microsoft terms, there is a database with multiple schemas. Apex has its support schema and has a workspace that contains the users and other metadata..
    Thank you,
    Tony Miller
    Webster, TX
    A lady came up to me on the street, pointed at my suede jacket and said "Do you know a cow was murdered to make that jacket?"
    "I didn't know there were any witnesses", I replied " Now I'll have to kill you too"

  • SAP Java Connector: Is it possible to cut field values of extracted table?

    I am extracting some SAP tables using the SAP Java Connector (via RFC_READ_TABLE or similar). Is it possible to pass some kind of maxlength for some fields of a table, e.g. if we have a field with size 3750 (like PROFS in table USH04) but I only want the first 100 chars - something like LEFT(PROFS, 100) in SQL?
    Thank you for your helpful response!

    Hi.
    The point is that PROFS has a size of 3750 - but RFC_READ_TABLE will only extract data up to 512 chars per row.
    Kind regards

  • Web Application Designer - Extract Table cell with JavaScript

    If I set an analysis item to display as an html table i want to be able to extract certain cells from the table and display them in seperate textboxes.  I believe this is possible using javascript but not sure how to go about doing it.  Any help would be appreciated.

    There is a javascript option of using innerhtml by which you should be able to get the information within tables..

Maybe you are looking for

  • Family Sharing enabled, cannot view my own purchases on iPhone anymore

    I have Family Sharing set up for my family. I am the organizer. I have my wife and my daughter added to Family Sharing. My daughter's account was added using "Create an Apple ID for a child". I am logged into my own iCloud account on my iPhone, as yo

  • I can't see my external hard on my airport extreme

    my external hard drive is connected to the airport extreme.  I can see it on my ipad and my iphone.  I can't see it on my macbook.  But I'm unable to access it on any of my devices. I think I have the external hard drive configured.  But I can't acce

  • Buying Indesign software instead of Creative Cloud pay monthly

    Please can someone help? I have Adobe Photoshop Elements 12 and I also want to buy Adobe InDesign. I don't want to pay monthly as the level that I need it for I will not need updates on it etc etc. I would prefer to buy outright and not pay monthly (

  • Report on average vendor dats

    Hi everybdy I want to see report of average vendor days both in value, days for all company codes. please can you help me in this matter.where can i find this report or shall i change any config in my system.

  • How to get error message from the BPEL process

    Hi, We have some BPEL processes running in BPEL PM 10g. If any of these BPEL process fails, we would like to get the error message caused this process to fail. Please let me know where does the BPEL proccess holds (table/file) these details. or is it