How to know the tables used in a program?

Hi,
Please tell me, how to know all the tables that have been used in a program?

Hello Vijay
Have you had a look at fm RS_PROGRAM_TABLES already?
See also tables from prog
Regards
  Uwe

Similar Messages

  • How to know the tables used in an Extractor?

    Hi Friends,
    Is there any method to find out the underlying tables used in an extractor?
    For example , 2LIS_11_VAITEM datasource uses tables  VBAP and VBUP( item status). For LOs we can see it in Lo **** pit. So If any extractor uses more than one table ..then how do you see those?? . If it is generic ds which is based on Functional Module, then what is the procedure other going into table tab.
    Actuall i would like to know for DS of FICA Open items 0FC_OP_01 .
    Thank in advanace
    Murthy

    Hi If it is LO extractor:
    Use transaction code LBWE  in the R/3
    Go to the extractor for which you want to see the data( Logistic app->Extractors)
    Go to maintenance
    You will get an option to update just click yes and then you will get option to create request.Just check the display, it will lead you  top the window where you can see where all the fields are and from which table it is available.
    check the Roberto's blog:
    /people/sap.user72/blog/2005/09/05/sap-bw-and-business-content-datasources-in-pursuit-of-the-origins

  • How to know the tables for a datasource like 2lis_17_order

    Hi,
    How to know the tables for a data source like 2lis_17_order, i have checked in Extract structure of that data source, only fields are visible but how will i know that these fields are getting extracted from so and so tables?
    pls respond. thanks in advance

    Hi,
    Go to RSO2 at source system, Enter data source and click on display.
    if its table based then you can see table name there it self.
    if its view based then notedown the view name and go to  SE11, provide view and click on display. see joined table names there.
    Thanks

  • How to know the table name of an InfoCub if we know cube technical name?

    How to know the table name of an ODS if we know the ODS technical name?
    Thanks
    Message was edited by: Kevin Smith

    hi kevin
    if the ODS is a standard ODS then you check the following way in SE16
    (for custom ODS objects)
    /BIC/A<ODS technical name>00 (Active Data Table)
    /BIC/A<ODS technical name>40  (Activation Queue)
    /BIC/B<10 digit number> (Change Log Table)
    (for SAP defined ODS Objects)
    /BI0/A<ODS technical name>00 (Active Data Table)
    /BI0/A<ODS technical name>40  (Activation Queue)
    /BI0/B<10 digit number> (Change Log Table)
    and for Transactional ODS Object you will have only the active data Table. So you need to check with /BIC/A<ODS technical name>00 for the custom ODS objects and /BI0/A<ODS technical name>00 for SAP defined ODS objects.
    hope this helps.
    regards
    vijaykumar

  • How to know the run time of a program..?

    Hi Gurus,
    How to know the exact run time of a program....?
    Suppose i've a program....I've changed the code to improve the performance.
    Now i want to compare run time of older and new one...How to do this...?
    Pls help me ....
    Thanks and Regards,
    Nagarjuna

    Hi,
    go thru the below mentioned code............
    data:   start TYPE i,
              end TYPE i,
              dif TYPE i.
    GET RUN TIME FIELD start.
    SELECT SINGLE bukrs belnr gjahr blart budat
    FROM bkpf
    INTO (cc, doc, fy, doc_ty, pst_dt)
    WHERE bukrs = p_bukrs
    AND belnr = p_belnr
    AND gjahr = p_gjahr.
    GET RUN TIME FIELD end.
    dif = end - start.
    WRITE: /001 'Time for select',
    067 ':', dif, 'microseconds'.
    Reward all helpful answers.
    Thanks

  • How to know the memory used by db

    Hi,
    Is there any transaction which tells me the exact memory used by Db (MS SQL)?
    If not is there any utilities I can go in and find out the Db memory used?
    I remember seeing the screen which says:
    Server
    Memory Available MBytes = xxxxx
    How can i get this? I dont know how to get to it, but i know its possible.
    Thanks

    Hi,
    Actually I suppose that, we cant definitely say that how much memory the database is using because, the frequently used tables are always buffered and less frequently used table are not buffered or partially buffered.
    However when a table is accessed, it brought to the buffer and then only seen in the GUI. Suppose consider an instance, some tables are accessed once a month or once a quarter, during that time it buffer used by the total number of tables will be more. than the normal instances.
    Regards
    Sudha

  • How to know the table names n field names 2

    hi,
    with the use of the below fileds
    Vendor number, material number, PO number, Purchasing group/Buyer, PO creation date, PO delivery date, PO created by
    I should get the out put with the fields....
    PO, PO date, PO group/buyer, purchasing org, vendor, PO line, order quantity, Unit, Material, Description, ST LOC SHELF BIN, ST LOCBULK BIN, QTY TO BE RECV, QTY  RECEVED.
    Can anyone let me know  the corresponding fields and tables based upon the input fields
    SRI

    Hi,
    1.   press F1 functional key on the field you required
    2. Click on the technical information button which will be beside the book button
    3. Then Double click on the field name
    4. IF the display one is a structure then double click on the data type
    5. Now you are in Domain of the field name.. keep a cursor on the domain
        and  choose the where used list (with arrows)
    6. As MIGO transaction is related to the GOODS receipt..
        check one among the following tables:
        1. MKPF,
        2. MSEG,
        3. EKBE
        4. MVER
        5. SO31
        6 SO13
        7. SO 11.
    Award points if it is helpful
    Br,
    Laxmi

  • How to Track the table using Trigger or any other Object

    Hi Folks
    I need to audit Inserts, deletions, updates  to inserted into other tracking table. I was planning on using a trigger to do this,
    Can you please help me how can I wright code for trigger for this. or else using any other object we can do this operation.
    can you please help me thanks in advance.
    Thank in advance.

    Also you can use an OUTPUT clause ( need to modify your DML operations)
    create table itest ( i int identity not null primary key, j int not null unique )
    create table #new ( i int not null, j int not null)
    insert into itest (j)
    output inserted.i, inserted.j into #new
    select o.object_id from sys.objects as o
    select * from #new
    drop table #new, itest;
    go
    The example below shows code that uses OUTPUT clause in UPDATE and DELETE statements to insert rows into an audit table.
    create table t ( i int not null );
    create table t_audit ( old_i int not null, new_i int null );
    insert into t (i) values( 1 );
    insert into t (i) values( 2 );
    update t
       set i  = i + 1
    output deleted.i, inserted.i into t_audit
     where i = 1;
    delete from t
    output deleted.i, NULL into t_audit
     where i = 2;
    select * from t;
    select * from t_audit;
    drop table t, t_audit;
    go
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to populate the table using webservice

    Hi,
    i have created the web service from function module and  integrated this web service in interactive form using New data connection.
    I have drag and drop all field into the form table and test the form,but its not populate table.
    if any script need for this,
    Kindly explain in detail or give the sample code.
    Thanks in advance
    Parthasarathi

    Dear folks
    M about to create a midlet
    application in which i need to populate my table
    with the current stock exchange values. Since these
    values get changed dynamically , I planned to use
    streaming. Since m new to streaming ,pls someone
    come up to guide me in right path. M using Canvas
    application. I appreciate all the repliesthats fine and funny....
    let me tell you something, in GCF everything you fetch through GPRS is bound to come as an inputstream and whatever request you send is passed as outputstream. so if you have worked with GCF, you have worked with streaming already. isn't it.
    SD

  • How to populate the table using streaming data

    Dear folks
    M about to create a midlet application in which i need to populate my table with the current stock exchange values. Since these values get changed dynamically , I planned to use streaming. Since m new to streaming ,pls someone come up to guide me in right path. M using Canvas application. I appreciate all the replies

    Dear folks
    M about to create a midlet
    application in which i need to populate my table
    with the current stock exchange values. Since these
    values get changed dynamically , I planned to use
    streaming. Since m new to streaming ,pls someone
    come up to guide me in right path. M using Canvas
    application. I appreciate all the repliesthats fine and funny....
    let me tell you something, in GCF everything you fetch through GPRS is bound to come as an inputstream and whatever request you send is passed as outputstream. so if you have worked with GCF, you have worked with streaming already. isn't it.
    SD

  • How to know the table field for RMCLM- ANZRE

    Hi experts,
    I need to know table for structure field RMCLM - ANZRE.
    In CL02, it indicates 'display relavent' for character.
    Thanks in advance.
    zak.

    CABN-ATVIE. (look at OSS [Note 488831 - Relevance fields are missing|https://service.sap.com/sap/support/notes/488831] found by keyword ANZRE, in the correction you will find the "move")
    Regards

  • How to know the table names n field names

    hello Experts,
    can anyone let me the corresponding field names and table names plz....
    Vendor number, material number, PO number, Purchasing group/Buyer, PO creation date, PO delivery date, PO created by...
    Please can one shed some light on it...
    SRI

    hi
      material number - matnr - mara
    vendor number - lifnr  - ekko
      PO number- vbeln - ekko
      Purchasing
    > group/Buyer -   ekgrp - ekko
    PO creation date - aedat -ekko
    PO created by  - ernam - ekko
    we get details regarding the details of vendors or customers in the header data table
    and regarding the item in item data tables...here ekko is the header table for purchase order details.....
    hope this helps
    > hello Experts,
    >
    > can anyone let me the corresponding field names and
    > table names plz....
    >
    > Vendor number, material number, PO number, Purchasing
    > group/Buyer, PO creation date, PO delivery date, PO
    > created by...
    >
    > Please can one shed some light on it...
    >
    > SRI

  • How to know the dir where my jar program is stored

    I write a swing editor text files.
    I make the jar of my program: Editor.jar
    Then with jsmooth (open source java wrapper) i make the exe: Editor.exe.
    The user can put the exe anywhere in a folder and use it, example:
    User have a text file on desktop and want to open it:
    User make a double click on file.txt --> Microsoft Windows Xp open my program and load the file.
    All work correctly but there is one problem.
    My program Editor.exe when is close make a Editor.properties file. I would like this file to be created in the same dir where Editor.exe is stored.
    I don't know how to do this thing. I write this code:
    public static void save(Properties propertiesFile) {     URL jarURL = (PropertiesFile.class.getClassLoader().getResource("."));          FileOutputStream out;     System.out.println("dir \n" + jarURL.getFile());          File f = new File(jarURL.getFile()+"Editor.settings");     try {          out = new FileOutputStream(f);                    propertiesFile.store(out, "Program settings");          out.close();     } catch (IOException ioe) {          ioe.printStackTrace();     }}
    This code is wrong because jarURL.getFile() is the directory where file.txt is stored but i want the dir where Editor.exe is stored.
    I try with this line of code:
    URL location = getClass().getProtectionDomain().getCodeSource().getLocation();
    i get this dir:
    /C:/Documents%20and%20Settings/Andrew/Settings%20local/Temp/temp10
    .jar
    This is a correct dir, because the program is stored ind dir
    c:\program files\editor\Editor.exe
    Anybody can help me?
    THX

    try below...
    public java.net.URL getResource(String strName)throws java.net.MalformedURLException
                String baseURL = getClass().getResource("/resources").getFile(); // ("/resources" ):- is a file /dir stored in in jar
                try{
                        baseURL = java.net.URLDecoder.decode(baseURL,"UTF-8");
                }catch(Exception e){}
                if(baseURL.startsWith("file:"))
                        baseURL = baseURL.substring(baseURL.indexOf(":")+1);
                java.io.File fBase = new java.io.File(baseURL);                    // Original URL Ref. To Jar Archive
                java.io.File jarFile = fBase.getParentFile();                    // Jar File Reference
                java.io.File rootDir = jarFile.getParentFile();                    // Root Directory which Contains Jar File
                java.io.File fileApp = new java.io.File(rootDir,strName);               // Requested File/Directory     
                if(fileApp.exists())
                    return fileApp.toURL();
                else
                    return null;
        }Timir

  • How to Know the changes made on a program and complete activity on it

    Hi abapers,
    I want to know who is working on a particular report currently and check the complete activity like changes made on the report.
    Is there any transaction to check this, please let me know
    Thanks in advance
    Bond

    Hi,
    See also this help on version management
    http://help.sap.com/saphelp_nw2004s/helpdata/en/57/38e0fb4eb711d182bf0000e829fbfe/frameset.htm
    Eddy
    PS.
    Did you (and your colleagues) put yourself on the SDN world map already? Pls check
    /people/eddy.declercq/blog/2006/06/14/from-the-grumpy-old-man-hoy-en-el-mundo
    for details.

  • How to referesh the table control?

    Hi all,
    How to refresh the table control in dialog programming with the command REFRESG CONTROL provided already ?
    Rgds,
    Madhuri

    Code  like
    Refresh Control 'TC_name' From Screen 'ur_screen_no'.
    Regards,
    Alpesh

Maybe you are looking for

  • Session Timeouts issue massively frustrating

    I am getting session timeouts when logged into my netmail & trying to compose emails. It happens constantly, sometimes immediately after logging in, sometimes 5 minutes into a session, sometimes 2 minutes into a session. It is completely random timin

  • Optical Drive no longer showing on C drive

    Hi everyone, My optical drive (CD/DVD) is no longer accessable, either via C drive or any other means. The drive is still mechanically working, accepting and ejecting discs, but I have no meams of accessing it. I'm thinking this is a driver/software

  • How to install keyboard software update

    I just bought a numeric keyboard that I cannot yet use because I cannot work out how to download the apple keyboard software.  When I attempt to install keyboard software update, an alert appears with the following script: a newer version of this sof

  • Thumbnails do not appear

    I am running Windows XP on a P4 2000 system. I previously was using the LR beta version and had no problems. I downloaded the 30 day trial version and now none of my images load into thumbnails in the Library module. In the Develop module only the si

  • Spotlight and Time Machine broken after restore/upgrade

    I've found a few similar threads to this but none of those solutions has worked for me. Two things happened at nearly the same time, so I don't exactly know the source of my problem: I upgraded my old MacBook Pro (approx. Oct 2010, 2.66GHz I think, 3