Can we look at EBAN table data using SE11?

Can we look at EBAN table data using SE11? who can I look at the data in EBAN or ECKPO in ECC?
Thanks in advance.
York.

SE11 - Create/Change/Display Table Fields - ABAP Dictionary
SE16 - Display Table Entries - You cannot see Structure
For Data  - SE16 - Input Table Name - F7 - F8
Or
SE11 - Input Table Name - F7 - {Ctrl + Shift + F10 }/Contents - F8

Similar Messages

  • How can I find out whitch table are used in whitch document?

    How can I find out whitch table are used in whitch document?
    In the table EUL5_DOCUMENTS are stored the Documents and in the table EUL5_OBJS are stored the tables. How can I query these tables together?
    Are there other possiblities?
    Thanks

    Hi Dierk
    Please take a look at this thread: Re: An EUL query to list out All the Columns  (Fileds) for each Workbook
    I think you may well find what you are looking for in the answer that I gave there.
    Best wishes
    Michael

  • How to load Matrix report data into basic table data using ODI

    Hi,
    How to load Matrix report data into basic table data using oracle Data Integrator ?
    Requirement Description:
    Following is the matrix report data:
    JOB                       DEPT10                DEPT20 
    ANALYST                                           6000
    CLERK                   1300                     1900 Need to convert it into below format:
    JOB                             Dept                        Salary
    ANALYST                  DEPT10     
    ANALYST                  DEPT20                     6000
    CLERK                       DEPT10                    1300
    CLERK                       DEPT20                    1900
        Thanks for your help in advance. Let me know if any further explanation is required.

    Your list seems to be a little restrictive, you can do a lot more with ODI procedures.
    If you create new procedure, and add a step. In the 'command on source' tab set you technology and schema as per your source database. Use the unpivot functionality as described in the link, please, rather than using 'SELECT *' use the appropriate column names and alias them for eg:
    SELECT job as job,
    deptsal as deptsal,
    saldesc as saledesc
    FROM pivoted_data
    UNPIVOT (
    deptsal --<-- unpivot_clause
    FOR saldesc --<-- unpivot_for_clause
    IN (d10_sal, d20_sal, d30_sal, d40_sal) --<-- unpivot_in_clause
    Then in your 'command on target' tab set the technology and schema to your target db, then put your INSERT statement for eg:
    INSERT INTO job_sales
    (job,
    deptsal,
    saledesc
    VALUES
    :job,
    :deptsal,
    :saledesc
    Therefore you are using bind variables from source to load data into target.
    Obviously if the source and target table are in the same database, then you can have it all in one statement in the 'command on target' as
    INSERT INTO job_sales
    (job,
    deptsal,
    saledesc
    SELECT job as job,
    deptsal as deptsal,
    saldesc as saledesc
    FROM pivoted_data
    UNPIVOT (
    deptsal --<-- unpivot_clause
    FOR saldesc --<-- unpivot_for_clause
    IN (d10_sal, d20_sal, d30_sal, d40_sal) --<-- unpivot_in_clause
    also set the log counter as 'Insert' on the tab where your INSERT statement is, so you know how many rows you insert into the table.
    Hope this helps.
    BUT remember that this feature only came out in Oracle 11g.

  • Error in import table data using oracle datapump

    i am trying to import table data using oracle datapump
    CREATE TABLE emp_xt (
    ID NUMBER,
    NAME VARCHAR2(30)
    ORGANIZATION EXTERNAL (
    TYPE ORACLE_DATAPUMP
    DEFAULT DIRECTORY backup
    LOCATION ('a.dmp')
    it return the following error
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04084: The ORACLE_DATAPUMP access driver does not support the ROWID column.
    ORA-06512: at "SYS.ORACLE_DATAPUMP", line 19
    please help me

    .dmp file generated from exp command file not from oracle_datapump

  • How can I work lsmw with table control using mm01 appl?

    Hi
    How can I work lsmw with table control using mm01 appl?
    Is it difefrent the way we handle table control in BDC?
    Thank You

    Hi
    How can I work lsmw with table control using mm01 appl?
    Is it difefrent the way we handle table control in BDC?
    Thank You

  • Why can I not get this table data into Excel?

    I want to use Excel to analyse some data from the local newspaper.  The table of figures looks like this:
    I've used the 'print' function from the online newspaper to create the pdfs, then run OCR.  I can highlight the text and copy/paste it into a text document without any trouble, but I'd really like to have the data keep its columnar format.  When I highlight a part of the table then use the right-click menu to 'save as table' or 'copy as table' or 'Open data in spreadsheet', nothing happens.  What am I doing wrong?

    I would suggest you to try Acrobat XI once. The export quality with Acrobat XI is remarkably improved than it's predecessors.
    You can download the trial version from http://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=us

  • Download multiple table data using RTTI

    Hi,
    Using RTTI, I am trying to download database table data dynamically. I have code that works fine for one table at a time. If I need to download data from multiple tables in one go. How can I  do this using RTTI?
    Thanks in advance,
    VG
    My code is...
    DATA: go_struct TYPE REF TO cl_abap_structdescr,
                go_table TYPE REF TO cl_abap_tabledescr,
                gi_data type ref to data.
          FIELD-SYMBOLS: <gi_data> TYPE STANDARD TABLE.
    * Dynamically getting the line type of the specified table
          go_struct ?= cl_abap_typedescr=>describe_by_name( v_tabname ) .
          TRY.
              CALL METHOD cl_abap_tabledescr=>create
                EXPORTING
                  p_line_type  = go_struct
                  p_table_kind = 'S'
                RECEIVING
                  p_result     = go_table.
            CATCH cx_sy_table_creation .
    *MESSAGE e000 WITH text-004.
          ENDTRY.
    * creating internal table of table type just created
          CREATE DATA gi_data TYPE HANDLE go_table.
    * Assigning the internal table to field symbol
          ASSIGN gi_data->* TO <gi_data>.
    ** get the data into the internal table from db table
          SELECT * INTO TABLE <gi_data> FROM (v_tabname).
    download....
    CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
    *      filename                = 'C:\test.txt'
          filename                = p_file1
          write_field_separator   = 'X'
        TABLES
            data_tab               = <gi_data>
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6
          header_not_allowed      = 7
          separator_not_allowed   = 8
          filesize_not_allowed    = 9
          header_too_long         = 10
          dp_error_create         = 11
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          OTHERS                  = 22.
      IF sy-subrc = 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Edited by: Thomas Zloch on Nov 5, 2010 9:42 AM - please use code tags

    Hi,
    DATA: go_struct TYPE REF TO cl_abap_structdescr,
    go_table TYPE REF TO cl_abap_tabledescr,
    gi_data type ref to data.
    FIELD-SYMBOLS: <gi_data> TYPE STANDARD TABLE.
    LOOP AT GT_TAB_LIST INTO GS_TAB_LIST.
    * Dynamically getting the line type of the specified table
    go_struct ?= cl_abap_typedescr=>describe_by_name( GS_TAB_LIST-tabname ) .
    TRY.
    CALL METHOD cl_abap_tabledescr=>create
    EXPORTING
    p_line_type = go_struct
    p_table_kind = 'S'
    RECEIVING
    p_result = go_table.
    CATCH cx_sy_table_creation .
    *MESSAGE e000 WITH text-004.
    ENDTRY.
    * creating internal table of table type just created
    CREATE DATA gi_data TYPE HANDLE go_table.
    * Assigning the internal table to field symbol
    ASSIGN gi_data->* TO <gi_data>.
    ** get the data into the internal table from db table
    SELECT * INTO TABLE <gi_data> FROM ( GS_TAB_LIST-tabname ).
    download....
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    * filename = 'C:\test.txt'
    filename = p_file1
    write_field_separator = 'X'
    TABLES
    data_tab = <gi_data>
    EXCEPTIONS
    file_write_error = 1
    no_batch = 2
    gui_refuse_filetransfer = 3
    invalid_type = 4
    no_authority = 5
    unknown_error = 6
    header_not_allowed = 7
    separator_not_allowed = 8
    filesize_not_allowed = 9
    header_too_long = 10
    dp_error_create = 11
    dp_error_send = 12
    dp_error_write = 13
    unknown_dp_error = 14
    access_denied = 15
    dp_out_of_memory = 16
    disk_full = 17
    dp_timeout = 18
    file_not_found = 19
    dataprovider_exception = 20
    control_flush_error = 21
    OTHERS = 22.
    IF sy-subrc = 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    endloop.

  • How to Fill custom table data using standrad BAPI

    Hello Team,
    I have some clarification on usage of Standard BAPI :  BAPI_Material_savereplica.
    I have some custom fields in MARA and MARC tables so i have used BAPIExtensionin and able to pass custom field of MARA and MARC.
    My issue is in material master the MARC custom fields of a material are going to update in a Z table along with MARC table.
    So can we achieve this functionalioty using BAPI : BAPI_Material_savereplica menas can we upadate custom table by using standarda bapi
    Please let me know the available options ..

    Hi Some,
    You are saying most of the data is resides out of sap, then you try with mapping of those data in sap standard tables if match or if not then develop a custom interface which will read data from outside & will put in your pay roll processor interface,
    and normally your SAP data you can interface through PU12.
    If you want single interface then you need to develop unique interface program.
    All the best.

  • How do u select tables data using the EBS web page?

    Hi Friends,
    I am in EBS 11i web pages url > http://vision.abc.com:8000/
    using sysadmin account.
    Is there a counter part web based module/menu to display table data ?
    Like
    select * from fnd_tables;
    or
    select * from po_vendors;
    something like this that allow display of data
    Thanks a lot

    yes but I want a web-based tool that uses URL not like the client server ones. :) which are not allowed by security audit. As a development tools, I believe SQL Developer and TOAD (in addition to SQL*Plus) are what you need (though these are client/server tools).
    Oracle Enterprise Manager is a good monitoring tool (but not for development), you as a DBA can use EM and access it through a URL.
    I might not necessarily be using sqlplus command. but a stored program like the concurrent fnd programs.There is no standard concurrent request that can help in achieving this.

  • How can I tell if any table data has changed?

    HI
    I'm in the process of reverse engineering an application. We don't have the source code, so I've been looking to the Oracle 8 database to give me some clues as to what insert, update, delete operations are being performed.
    Is there any SQL I could run which would indicate the table data has been changed in some way.
    Thanks
    Glenn

    What's the application architecture? Is this a client/server application? Or a three-tier application? Is there a lot of PL/SQL? Or is all the SQL getting generated in the application and sent to the database? Depending on the architecture, a SQL*Net trace on the client may be appropriate-- that will log the SQL the client app is sending to the server. If you have a three-tier app, though, it may be hard to relate the SQL to a particular operation or to relate the SQL statements to each other. If you have a lot of stored procedures, you'd only see the procedure call, not the SQL the procedure executes.
    You could trace a particular database session, which has similar issues in a three-tier environment or if MTS (the precursor to shared server) is in use, but does capture SQL issued by stored procedures. That may put a degree of load on the database server as well.
    You could also query the data dictionary (i.e. V$SQL) periodically to see the SQL statements in the shared pool. You have to ensure that you're polling frequently enough to catch SQL statements before they age out of the shared pool and you won't generally be able to relate one statement to another or to a particular application function. But you could see all the SQL the database is executing.
    Justin

  • Where can I look up the production date of my MacBook Pro?

    does anyone have an idea, where I can look up the production date of a MacBook Pro? I can't remember when I bought it...

    Try this site as well. Paste in your Macs serial number and it will reveal all kinds of info about it including exactly where is was assembled. You can get the serial number from System Profiler. Cheers!
    Forgot the link!
    http://www.appleserialnumberinfo.com/Desktop/index.php
    Message was edited by: Glenn Carter

  • Upload a table data(using a transient VO) from excel using ADF DI

    Hi
    I have a scenario where I need to get data from excel into a custom method in model layer.
    Requirement:
    Transient VO(associated to AM, shown in datacontrols) included in the jspx as a table
    I used the same table/tree binding to use it as a table in the excel sheet. I have a custom method in AM(that is exposed) that is invoked on click of a button.
    Problem is that the data is not coming up to that method.
    Here is the code I used in the custom method
    RowSet rowSetVO = (RowSet)findViewObject("ReadOnlyVO");
    Row[] allRowsInRange = rowSetVO.getAllRowsInRange();
    for(int i=0; i<allRowsInRange.length;i++) {
    ReadOnlyVO1RowImpl indRow = (ReadOnlyVO1RowImpl)allRowsInRange;
    System.out.println("Name :: "+indRow.getName());
    The same code is running fine and the data getting uploaded/shown in the method when the corresponding jspx is used. But when excel is used, nothing is coming up.
    Thanks in advance
    Regards
    Ravi

    Let's assume that your VO has some existing rows and that the user clicked a button that included Table.Download.
    Now, the user modifies various rows in the ADF(di) Table component in Excel.
    The next step is for the user to click a ribbon command that includes Table.Upload.
    This ADFdi action will upload the altered rows to the VO and invoke the configured commit action.
    Please review this doc for more info:
    http://docs.oracle.com/cd/E24382_01/web.1112/e16180/work_table_comp.htm#BABIAAGH

  • View of set up tables data in se11??????????

    Hi,
    can we view the data in se11 thru set up tables names? if so then how do we find set up tables names, say for example if i am using 2lis_13_VDHDR then how can i view the data apart from RSA3 after filling up of set up tables? is there any chance to view the data thru se11 and with the set up table name? and if so then how do we find set up tables name?

    Hi
    set up table names starts with 'MC' followed by application component '01'/'02' etc and then last digits of the datasource name and then followed by set up..
    we can say the <b>communication structure</b> (R/3 side,you can check it in LBWE also) name followed by 'setup'
    for your example below is the name of setup table
    MC13VD0HDRSETUP
    If you want to check data in set up tables you better look at the transaction NPRT here you can see the table name from which data is picking also
    Hope it helps
    Thanks
    Teja

  • How to store Image data  in table  created using se11?

    Please Help me I am Working on a project there i have a requirement of saving image in database table
    along with All other information.
    with Regards
    laxmikant soni

    Hello Laxmikant,
    You can use SE78 to store the file and the data will be stored in STXBITMAPS table.
    To put it in MIME repository refer to the below links.
    FM for uploading Image to SAP
    Dynamic Use of Mime in component
    Regards,
    Thanga

  • Inserting standard table data using ztable

    Hi all,
               I have an issue like i have created "ztable" where i am taking few of the mara table fields.
    but my problem is i m not getting data into these fields , so can anyone tell me wht shuld be done to get the data into my ztable which will contain all these fields.
    <code>
    tables : mara.
    data : begin of itab occurs 0,
           matnr like mara-matnr,
           ersda like mara-ersda,
           ernam like mara-ernam,
           vpsta like mara-vpsta,
           mtart like mara-mtart,
           mbrsh like mara-mbrsh,
           matkl like mara-matkl,
           meins like mara-meins,
           end of itab.
    data : wa like line of itab.
    select matnr ersda ernam vpsta mtart mbrsh matkl meins from mara into corresponding fields of table itab .
    what should be done , shuld i use INSERT INTO "ZTABLE FROM ITAB.
    PLZZ SUGGEST.
    Thanks,
    karan

    navneet its working now but ztable_12 where i am inserting data its not getting any data why?
    below is my code.
    <code>
    tables : mara.
    data : begin of itab occurs 0,
           matnr like mara-matnr,
           ersda like mara-ersda,
           ernam like mara-ernam,
           vpsta like mara-vpsta,
           mtart like mara-mtart,
           mbrsh like mara-mbrsh,
           matkl like mara-matkl,
           meins like mara-meins,
           end of itab.
    data : wa like line of itab.
    select matnr ersda ernam vpsta mtart mbrsh matkl meins from mara into corresponding fields of table itab .
    append itab.
    INSERT ztable_12 from table itab.
    </code>
    thnks karan

Maybe you are looking for