Want to know the tables of a particualr transaction code

Hi,
whatz the technique of knowing the tables of a particular transaction code.
I have got a tcode - va01.
Want to know the tables of this transaction code.
How...?

Hi,
If you want know about transaction code table details
1. Enter Tcode 'ST05' (SQL Trace on), You can find how many tables are involved in the tcode
2. Goto SE93, enter VA01 and find the program name, Go to object browse (se80) and enter program name and find out how many tables are invloved (Another way go to search- Give search term 'Tables' -> there u can find the tables involved.
Regards
Bhupal Reddy

Similar Messages

  • I want to know the table name and field name of this description

    i want to know the table name and field names of this description
    supplieriddomain

    Hi SV,
    Try this:
    1) Go to SE15 (Repository info system)
    2) Expand ABAP Dictionary
    3) Expand Fields
    4) Click on Table Fields
    5) Enter the field name you want to search in field name or use wild cards with keywords in short decription field (like supplier ) and Execute.
    OR
    If it's a screen field, do a F1 on the field and click on Technical information on the help window popped up from Menu..this will tell you the field name along with structure or table name.
    Hope this helps you.
    Regards,
    Vivek

  • I want to know the table name and field names of this descriptions

    i want to know the table name and field names of this descriptions
    FPAApprover.UniqueName,FPAApprover.PasswordAdapter

    Hi Ramana,
    Go to the system table DD03T , use the table contents..
    In the field ' DDTEXT ' , give your keywords...
    for ex : say Unique name... as  UniqueName* in field DDTEXT
    Execute.. u will find the entries....
    May be ur problem will be solved...
    Thank u...
    Reward if useful and close the thread..
    Rajiv

  • Want to know the table names as well as number of rows

    hi...every one.....i want to explain more in detail to previous thread i have posted.
    actually i need to display all the table names and number of rows for each, in a schema(like AP,HR,....)
    it's must that i should do it by using a stored procedure.
    so the best way for this would be by using cursor and loop.
    so please help me in solving this question.

    i need to display all the table names and number of rows for each, in a schema(like AP,HR,....)
    it's must that i should do it by using a stored procedure.Homework ?
    Anyway, try this
    SQL> create or replace procedure count_rows
      2  is
      3     nrows   number;
      4     str     varchar2(100);
      5  begin
      6     for T in (select table_name from user_tables
      7                     order by table_name)
      8     loop
      9             str := 'select count(*) from '||T.table_name;
    10             execute immediate str into nrows;
    11             dbms_output.put_line(T.table_name||'  '||nrows);
    12     end loop;
    13* end;
    SQL> /Don't forget to "set serveroutput on" when you execute it.

  • I have a value 'JPM'.wants to know the table containing this value.

    My application is throwing error becouse of one of the value (JPM) .
    Can i know which table has this value.
    I cannot use USER_TABB_COLUMNS since i dont know the COLUMN_TYPE.
    i dont know wat kind of field is this.
    the schema is not big and it contains approx. 500 objects.
    Kindly suggest.

    Mysterious. This is why I dislike dynamic SQL: you can't tell whether it's really going to work until you run it. All I can suggest is some debugging. I don't really like to encourgae the use of the Devil's Debugger, but you can change the inner loop to show which column it's about to execute and hence try to figure out what goes wrong when it fails....
    SQL> DECLARE
      2     n NUMBER;
      3  BEGIN
      4      FOR r IN ( SELECT owner, table_name, column_name
      5                 FROM all_tab_columns
      6                 WHERE  data_type IN ('CHAR', 'VARCHAR2')
      7                 AND   owner = 'A'
      8                 AND    data_length >=3 )
      9      LOOP
    10          dbms_output.put_line(r.owner||'.'||r.table_name||'.'||r.column_name);
    11          EXECUTE IMMEDIATE
    12              'select count(*) from '||r.owner||'.'||r.table_name||
    13              ' where '||r.column_name||' = ''JPM''' INTO n;
    14          IF n != 0 THEN
    15              dbms_output.put_line('FOUND='||r.owner||'.'||r.table_name||'.'||r.column_name);
    16          END IF;
    17      END LOOP;
    18  END;
    19  /
    A.DEPTREE.TYPE
    A.DEPTREE.SCHEMA
    A.DEPTREE.NAME
    A.IDEPTREE.DEPENDENCIES
    A.T1.COL2
    A.TEO.WHATEVER
    A.TT1.COL1
    PL/SQL procedure successfully completed.
    SQL> Cheers, APC

  • I want to know the tables in FI for my report requirement

    I have a requirement to develop a report which contains selection-screen as
    Company code ---
    G/L Account     o 305400
                           o 305500
    Period              --- to ---
    305400 is stock-excess
    305500 is stock-shortage
    if user enters company code,selects first radiobutton and enters period as 11 to 12 it should display all the Reference documents with date,reference document(4900066123), material, plant, qty, value(6999.33)
    please go through FS10N
    my requirement is same like this tcode
    but my report should display all the reference documents((4900066123)) with amounts in single screen not the total amount for G/L account(305400)
    can any one tell me from which tables i have to pull the data
    the tables which have relation between g/l account and reference document and period
    thanks & regards
    Pradeep Reddy.M

    Hi,
    U can find all d details regarding FI tables & their relations here....
    http://www.sapgenie.com/abap/tables_fi.htm
    You can find the details about the FI module here
    http://www.sap-img.com/sap-fi.htm
    Thanks,
    Sankar M

  • Want To Know The Name OF Company Table

    In Administration -> Choose Company, It gives me the list of all Company Name,Database Name,Version etc .
    I Want to know the Table Name which has all information about company name and all.
    Regards

    The db version is stored in table CINF (Version). Others information gave you members already. If you want have list of all dbs on the server like in login screen, you should use select from information schemas as
    select * from information_schema.tables where table_name = 'CINF'
    and youll receive all databases, where the CINF table is, then create tmp table (dbname, company, version fields) and in cursor go through all results from select * from information_schema.tables where table_name = 'CINF'
    make insert into this tmp table. At the end make select from this tmp table.

  • Want to know the number of lines executed in my code

    Hi,
        I want to know the total number of lines of code executed by Flex in my application which includes the code generated while converting mxml to .as .Like for example with help of Trace class.

    Hi,
    Please go through following links which i am providing :
    1) http://www.adobe.com/devnet/flash-builder/articles/ascode-coverage.html
    2) http://opensource.adobe.com/wiki/display/flexpmd/FlexPMD
    3) http://opensource.adobe.com/wiki/display/flexpmd/FlexMetrics
    Thanks and Regards,
    Vibhuti Gosavi | [email protected] | www.infocepts.com

  • How to find out all the tables associated with particular T-code or Program

    Hi All,
    In 4.6B we have a transaction code SE49, where we can see all the tables associated with particular Transaction code or Program.
    But in ECC 5.0 or in ECC 6.0 this transaction code is not available.So is there any alternative where i can find out all the tables associated with particular T-code or Program.
    Thanks
    Shubham

    Hi,
    you are right, Transaction SE49 as well as SE48 do not exist anymore I'm afraid, they        
    are discontinued.                                                              
    You might try to create a transaction variant:                                        
    1) Start SE93 to create a transaction variant                                         
    2) Specify a name, eg. ZSE49, and choose the first option:                            
       "program and screen (dialog transaction)                                           
    3) Here specify SAPMSEUZ as program, and 200 as screen number                         
    4) Choose a suitable development class (package) if you want it to be                 
       transportable or Local (=$TMP) if non-transportable                                
    5) press Save                                                                         
    Same applies for SE48, same program but dynpro 100.                                   
    Sorry for not being able the reasons behind the decision to discontinue            
    these transactions. I suppose at least part of the functionality was               
    integrated in SE38.           
    Best regards
    Erika

  • I want to know the top 10-20 Store procedures used in the table.

    Hello All, 
    There are total 3500+ Store procedures created in the server. So,  I want to know the top 10-20 Store procedures used in the table. Like which store procedures are important and what are they, is there any code to find them? 
    I think the question might be very silly, but i don't know which store procedure to look at it. 
    Please help me on this issue.
    Thanks.
    Thanks, Shyam.

    By what? CPU? Memory? Execution count?
    Glenn Berry wrote this
    -- HIGH CPU ************
          -- Get Top 100 executed SP's ordered by execution count
          SELECT TOP 100 qt.text AS 'SP Name', qs.execution_count AS 'Execution Count',  
          qs.execution_count/DATEDIFF(Second, qs.creation_time, GetDate()) AS 'Calls/Second',
          qs.total_worker_time/qs.execution_count AS 'AvgWorkerTime',
          qs.total_worker_time AS 'TotalWorkerTime',
          qs.total_elapsed_time/qs.execution_count AS 'AvgElapsedTime',
          qs.max_logical_reads, qs.max_logical_writes, qs.total_physical_reads, 
          DATEDIFF(Minute, qs.creation_time, GetDate()) AS 'Age in Cache'
          FROM sys.dm_exec_query_stats AS qs
          CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt
          WHERE qt.dbid = db_id() -- Filter by current database
          ORDER BY qs.execution_count DESC
          -- HIGH CPU *************
          -- Get Top 20 executed SP's ordered by total worker time (CPU pressure)
          SELECT TOP 20 qt.text AS 'SP Name', qs.total_worker_time AS 'TotalWorkerTime', 
          qs.total_worker_time/qs.execution_count AS 'AvgWorkerTime',
          qs.execution_count AS 'Execution Count', 
          ISNULL(qs.execution_count/DATEDIFF(Second, qs.creation_time, GetDate()), 0) AS 'Calls/Second',
          ISNULL(qs.total_elapsed_time/qs.execution_count, 0) AS 'AvgElapsedTime', 
          qs.max_logical_reads, qs.max_logical_writes, 
          DATEDIFF(Minute, qs.creation_time, GetDate()) AS 'Age in Cache'
          FROM sys.dm_exec_query_stats AS qs
          CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt
          WHERE qt.dbid = db_id() -- Filter by current database
          ORDER BY qs.total_worker_time DESC
    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

  • Tables r occupying around 12GB.i want to know the space occupied by indexes

    Tables r occupying around 12GB.i want to know the space occupied by indexes.
    Is there any relation between data tablespace and index tablespace.??

    well, in _segments you have all the segments, just filter on the type (index) and SUM that. That's what I would do anyway.                                                                                                                                                                                                                                                       

  • I want to know the algorithm of interpolation of 2-D array in LabVIEW.

    I want to know the algorithm of interpolation of 2-D array in LabVIEW.Is there any formation about it?

    Hi ,
    For all delta and full DTP loads you can get  information in table  RSICCONT .Check table  RSMONICDP  this will give you detail information .Here you will get all the information with timestamp and request id .
    Hope these tables will serve your purpose .
    Regards,
    Jaya

  • Is there a way to know the table linkages in SAP?

    Hello Experts,
    Suppose I want to know a particular table that can be linked to lets say, VBAK.
    For example, I want to know the material description based from the sales document.
    Is there a way to do this?Please don't give me links or files.
    Thanks a lot guys and take care!

    Well, there are some documents that I've seen which illistrates the links between tables, it was only for the sales document tables.  But really it is a matter of experience and dealing with the transactions.  Finding the pieces of data as your go.  You can also do an SQL trace on a transaction, this will show you all the tables hit during the runtime. 
    But to answer your question,  the material description on the sales order is copied form the material master.  The field on the sales document is ARKTX in table VBAP, the material master field is MAKTX in table MAKT,  you can link to this table using the MATNR from VBAP.
    Regards,
    RIch Heilman

  • I want to find the table name

    Hi experts,
    I want to find information which is stored in the particular transaction (find the table name)
    tcode is COR3 in that enter process order and enter after that go to adminstrative data in that created user.
    I want find user information will be stored in which table . pls help me in this

    Hi,
    There are both technical and functional ways of knowing the Table Names:
    1. You can ask your functional consultant to give you the basic or the main table name. From there you can use a where used list to get the list of all the tables that are connected to this table by the foreign key relationship.
    2. You can get to know the name of the package from the package hierarchy. You can also use se84 to find the objects from the repository information browser.
    3. You can use the ST05 transaction to run and SQL trace to find all the tables that where accessed during the TCODE execution. But here you need to be precise as it will show you all the names of all the database tables accessed.
    Hope this will help you.
    Thanks,
    Samantak.

  • I want to know the size of of database

    hi, iam using HP-UX with oracle10G so that, i want to know the size of of database in my system, for that i can use the follwing queries is this is correct or not?
    1. select sum(bytes) as total_size from dba_data_files;
    ANS is:
    TOTAL_SIZE
    29718740992
    2.select sum(bytes) as free_size from dba_free_space;
    ANS is:
    FREE_SIZE
    6940393472
    3. select sum(bytes) as used_size from dba_segments;
    ANS is:
    USED_SIZE
    25215827968
    i GOT like this iam not getting is this TOTAL size is 28 GB?????????????
    4.select * from DBA_FREE_SPACE_COALESCED;
    ANS for this ????????????????
    please help me anyone......

    i want to know the size of of database in my systemDefine "size":
    - The total size of the dbf files?
    - The total data space used?
    - The total tablespace size?
    For example, this show the size of a single table, in meg:
    select
    segment_name table_name,
    sum(bytes)/(1024*1024) table_size_meg
    from
    user_extents
    where
    segment_type='TABLE'
    and
    segment_name = 'MYTAB' ;
    Mike Ault has a script collection that measures all possible ways to measure database size:
    http://www.oracle-script.com
    Hope this helps. . .
    Don Burleson
    Oracle Press author
    Author of “Oracle Tuning: The Definitive Reference”
    http://www.dba-oracle.com/bp/s_oracle_tuning_book.htm

Maybe you are looking for

  • Excise invoice for price difference required with material code

    Hi In my scenario, we have charged less amount to customer at the time of sales. For ex: Sales order was prepared for Rs.10000 and relevant excise duty was (@ 10% was charged). We did delivery and billing. We issued excise invoice as per Rs.10000 and

  • Preference are not saved when leaving Photoshop elements 10

    Hi, Each time I leave photoshop elements 10 (bought on Apple Store), A windows says that I don't have the required rights and my preference are not saved. Each time I restart the program it is re-installing the effect as if it's a new install. Any ch

  • Field name

    Hi, Can anyone tell the field name for vendor code and inwhich table it is present? Regards, Hema

  • Missing Advanced Dialog button

    Somehow the "Advanced Dialog" button is missing from the Photo Downloader box of my Elements 8. Does anyone have the same problem and know how to fix it?  Thanks.

  • Favicon is not showing

    I want to change my fabicon of the sites.  1) I changed the favicon logo in this path C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\IMAGES. 2) in the master page the path is IconUrl="/_layouts/images/favicon.ico" So