How to find which tables are filling by a transaction

hi ,
        what is the process to know which talbes are filled by a particular transaction eg, by using tcode vd03 we  create customer , which we can see in kna1 tables.

Use trace like
- SQL trace, [ST05 (doc)|http://help.sap.com/erp2005_ehp_04/helpdata/EN/43/cb632772cd0cd4e10000000a1553f7/frameset.htm] will show you the tables accessed.
- performance trace, [SE30 (doc)|http://help.sap.com/erp2005_ehp_04/helpdata/EN/00/e0a73e5b7a424de10000000a114084/frameset.htm] will show you the tables accessed, the FM used, etc.
NB: VD03 is an inquiry transaction, i suppose you meant VD01
Regards

Similar Messages

  • How to find which tables are being used by a workbook.

    I was asked by the client to generate a report which will show the Workbook name and it's corresponding tables/views.
    Any idea on how to use the EUL tables for this purpose. I know the SQL query to find the tables in case the workbook was run at least once. But I want to show the Workbook and it's table details even the report was never run.
    Advanced thanks,
    Lokesh.

    Hi Jay
    While we're on the subject of scripts, here's a couple more you might like:
    Script 1:
    =========
    This one shows you how many times an item has been used. It is useful for determining how often users make use of items in a folder. It could be used as research for a materialized view, for dropping items which are not used, or for understanding usage.
    SELECT
    OBJ.OBJ_NAME FOLDER,
    EXP.EXP_NAME ITEM,
    COUNT(QPP.QS_ID) USAGE
    FROM
    EUL5_OBJS OBJ,
    EUL5_QPP_STATS QPP,
    EUL5_EXPRESSIONS EXP
    WHERE
    OBJ.OBJ_NAME = <Folder Name>
    AND OBJ.OBJ_ID = EXP.IT_OBJ_ID
    AND INSTR(QPP.QS_OBJECT_USE_KEY,OBJ.OBJ_ID) > 0
    AND INSTR(EUL5_GET_ITEM_NAME(QPP.QS_ID),EXP.EXP_ID) > 0
    GROUP BY
    OBJ.OBJ_NAME,
    EXP.EXP_NAME;
    Script 2:
    =========
    This one examines the whole EUL and displays a count of the number of times a worksheet has been run by folder. It also shows the date and time of the last run. This one is useful to determine the most and / or least popular worksheets. Adjusting the ORDER BY clause can throw up some interesting results.
    SELECT
    OBJ.OBJ_NAME FOLDER,
    MAX(QPP.QS_CREATED_DATE) LAST_DATE,
    QPP.QS_DOC_OWNER OWNER,
    QPP.QS_DOC_NAME WORKBOOK_NAME,
    QPP.QS_DOC_DETAILS SHEET_NAME,
    COUNT(QPP.QS_ID) USAGE
    FROM
    DRAKE.EUL5_OBJS OBJ,
    DRAKE.EUL5_QPP_STATS QPP
    WHERE
    INSTR(QPP.QS_OBJECT_USE_KEY,OBJ.OBJ_ID) > 0
    GROUP BY
    OBJ.OBJ_NAME,
    QPP.QS_DOC_OWNER,
    QPP.QS_DOC_DETAILS,
    QPP.QS_DOC_NAME
    ORDER BY
    OBJ.OBJ_NAME,
    COUNT(QPP.QS_ID) DESC;
    I'm considering a blog entry of useful EUL scripts. Anyone interested? Yes - either reply here or drop me a line.
    Best wishes
    Michael

  • How to find which datasource are using  tables AFRU ,CAUFV and AUFM

    *how to find which datasource are using  tables AFRU ,CAUFV and AUFM*

    Hi,
    You can enter your table names in SE11 transaction and click "Display" and again click "Where -Used-List". Then it will show all the places where these tables are used(Datasources)
    Hope this helps.....
    Regards,
    SUman

  • HR   how to find which personal area belongs to which country

    HR
    how to find which personal area belongs to which country
    thank you,
    Regards,
    Jagrut Bharatkumar shukla

    Hi,
        You can use the table T001P for finding that  for eg.,
    <b>Select molga from t001p where werks = 'Your Personnel area code'.</b>
    Thanks
    Yogesh

  • Way to find which tables are being accessed

    Hi Guys
    I have a large database and i want to find which tables are not being accessed (even select) from a specific period of time. is there any way to find out . I am using oracke 10g release 1
    Regards
    Khurana
    Edited by: Khurana on Sep 8, 2009 4:29 PM

    select sp.object_owner,sp.object_name,
    (select sql_text from v$sqlarea sa
    where sa.address = sp.address
    and sa.hash_value =sp.hash_value) sqltext,
    (select executions from v$sqlarea sa
    where sa.address = sp.address
    and sa.hash_value =sp.hash_value) no_of_full_scans,
    (select lpad(nvl(trim(to_char(num_rows)),' '),15,' ')||' | '||lpad(nvl(trim(to_char(blocks)),' '),15,' ')||' | '||buffer_pool
    from dba_tables where table_name = sp.object_name
    and owner = sp.object_owner) "rows|blocks|pool"
    from v$sql_plan sp
    where operation='TABLE ACCESS'
    and object_owner IN ('YOUR_USER_NAME')
    order by 1,2
    It will tell you that currently "OBJECT_NAME" is being accessed; but i think it is for full table scan.
    Source:http://www.oracle.com/technology/oramag/code/tips2005/032105.html
    Regards
    Girish Sharma

  • How to get which tables are being updated by running any transaction code

    Hi experts,
    please tell me how to find which system table are being updated after running any transaction code .
    please tell me the procedure to find that.
    Thanks & Regards,
    Yogesh

    Hi yogesh patil,
    for the dbtable..
    goto technical settings and activate the log...
    it will tells u..
    transaction...Table history (SCU3)
    Log data changes
    The logging flag defines whether changes to the data records of a table
    should be logged. If logging is activated, every change (with UPDATE,
    DELETE) to an existing data record by a user or an application program
    is recorded in a log table in the database.
    Note: Activating logging slows down accesses that change the table.
    First of all, a record must be written in the log table for each change.
    Secondly, many users access this log table in parallel. This could cause
    lock situations even though the users are working with different
    application tables.
    Dependencies
    Logging only takes place if parameter rec/client in the system profile
    is set correctly. Setting the flag on its own does not cause the table
    changes to be logged.
    The existing logs can be displayed with Transaction Table history (SCU3)
    Reward points if helpful

  • How to find which table is not being used ?

    Hi,
    I am in need of releasing space from the common schema we have. i have been permitted to drop the tables which has not been used for the last three months.
    Can anyone please suggest how to find the tables that has not been used for a given amount of time.
    Thanks and Regards.
    Rajib

    i have been permitted to drop the tables which has not been used for the last three months.Can I just chip in an observation on this premise? It's not unusual for systems to have processes that run quarterly or even annually. You need to be very careful about dropping "unused" tables - you might just kill your organisations end of year reporting system.
    Is buying more disk space really not an option?
    Cheers, APC

  • How to find which devices are still using affected domain controller

    Hi Everyone,
    We have a 5 Domain controller's in a Site. And we are going to decommisson one of our affected DC in a site.
    Can you please let me know how to find  the log files to see which devices are still using this domain controller.
    Regards,
    Neel kamal
    Neel kamal

    Neel,
    From strictly an Active Directory perspective, there is nothing special you need to do to decommission a domain controller in a site.  There are many processes that automatically balance out and recreate connections as needed without any user intervention. 
    The DC Locator process will automatically direct clients to active domain controllers, there is nothing you need to do here. 
    What you need to be concerned with are things like the following:
    DNS - Are you running AD integrated DNS and is the DC you are decommissioning hosting that roll - if so, is it the ONLY DC in the
    site that is running DNS?  You'll need at least one in the site.
    DHCP server - Is the DC you are demoting a DHCP server?  You'll need to account for that.
    Global Catalog - Is the DC you are demoting a Global Catalog server?  You'll need at least one in the site.
    File Shares - Is the DC hosting any files shares?  You'll need to move those and make sure you redirect your clients.
    Was this DC a set as a Preferred Bridgehead Server?  You'll need to undo that first.
    Those are the big ones that come to mind.  Decommissioning a DC is easy if you have prepared properly.  The others that have replied have offered some great advice which you should follow.  Do your homework and you should be fine.
    Hope that helps
    Gary
    Gary G. Gray
     MCP, MCTS, MCITP, MCT Alumni
    Please remember to mark the replies as answers if they are helpful.
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

  • How to find which backups are running  - whether RMAN or EXPORT or EXPDP ?

    I need to find using SQL which backups are running at a particular time . I want to use SQL for this.

    Hi,
    Check the V$session view to get it.
    SELECT SID,PROGRAM FROM V$SESSIONThe program will give you the
    In case of export it will give you - exp.exe under the PROGRAM
    In case of expdp it will give you - expdp.exe under the PROGRAM
    In case of RMAN session it will give you -
           SID PROGRAM
           140 exp.exe
           158 expdp.exe
           138 rman.exe
           149 rman.exeRegards,
    Vijayaraghavan K

  • Find which tables are linked to this one via foreign keys

    Hi, I need to drop & recreate a table, but this table is referenced by other tables via foreign key constraints.
    1. Is there a query I can run to find those tables (the ones referencing this one) ?
    2. What is the standard way to drop & recreate this table being referenced by others?

    1) You can try the following query:
    select r.owner, r.table_name
    from user_constraints r, user_constraints o
    where r.r_owner = o.owner and r.r_constraint_name = o.constraint_name
    and o.constraint_type in ('P','U') and r.constraint_type = 'R'
    and o.table_name = 'DEPT'
    2) To drop tables with references you can also use drop table cascade constraints,
    which will also drop constraints from tables:
    [email protected]> drop table dept;
    drop table dept
    ERROR at line 1:
    ORA-02449: unique/primary keys in table referenced by foreign keys
    [email protected]> drop table dept cascade constraints;
    Table dropped.
    Another way is to prepare a script which will remove the tables in proper order.
    Best Regards
    Krystian Zieja / mob

  • How to find which drivers are missing?

    My laptop model no is Hp Pavillion dv6 1337tx. Someday ago I installed Windows 7 32 bit OS and also installed all drivers from the HP site. Still in the device manager I can see som drivers are missing. What can those be and how can I identify those missing drivers and solve this problem?
    I am attaching a screenshot of the device manager showing some drivers are missing.
    This question was solved.
    View Solution.

    Your image has not yet been approved by a moderator.
    Determining what the devices are is a one at a time process. On each unknown device or device without drivers, right click on the device and select properties. In the properties window select the Details tab and  hardware ids in the property  dropdown. Post the PCI\VEN string as seen in the following image for each device here in your post.  Once that is done we can let you know what the device is.
    This is where the drivers for your notebook are located.  Do you know  which chipset is installed?
    Best regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • How to find which files are in the library

    Hi there,
    I keep almost all of my library as referenced files on external hard-drives because of the small hard-drive that my MBP has. BUT over time I've added some pictures here and there that are stored in my Aperture library. I would like to relocate these pictures, but I don't know which ones they are.
    I can go picture by picture and find them, but I would like an easier way.
    Is there a way to find all the pictures that are stored in the aperture library?

    Bring up the entire Library, for instance by clicking on the All Photos Album.
    Open the search HUD and use the 'plus' button to add a search by File Status.
    You now have a choice of searching by online/offline and managed/referenced.
    Ian

  • How to find which displays are supported

    Is there a way that I can find out what monitors are supported in 10.5.4? Is there a file in one of the directories that shows the various drivers? I had been using my Sony KLV-S32A10 as an external monitor, and it worked fine in Leopard 10.5.2, but with the upgrade it just creates an unreadable mess on the screen. I think that there must have been a change in the drivers and for some reason the Sony is not supported. Any ideas on how to fix it? Thanks.

    Your best bet is to go to Sony's website and see if they have updated drivers for it.
    Glor

  • How to find which tables resides in a certain tablespace

    Hi experts, how can I figure it out which sap tables related to a certain tablespace?

    Hi MrWhilte,
    If you have access to database it can easily be checked by the following query on sql prompt.
    " select TABLE_NAME from DBA_TABLES where TABLESPACE_NAME = '<Name of Tablespace>';"
    Regards,
    Vinit Pagaria

  • How to find which songs are not synchronized with iPod?

    I have about 5,000 songs in iTunes and the same minus 7 in the iPod.
    How do I find the songs that were not synchronized?
    Thanks,

    Hi, the instruction are difficult to follow, I am not a programmer. Secondly I understand that it finds duplicate songs. My problem that some tongs were not transfered to iPod for some reason. I checked the duplicate songs from the menu and it showed hundreds, because some of them in the Best of or live Albums.
    I think iTunes should have an option finding non synced songs.
    Thank you,

Maybe you are looking for

  • With itunes 11 I can no longer see Genius in the Sidebar. ?

    Selecting it in General Preferences fails to display it.

  • Where can I find a keyboard map for a macbook pro

    I am new to Mac and have some problems with the names of some keys and the meaning of some of the "unusual" symbols on them. Where can I find an "idiot guide" and such information as where are the Home & Delete keys?

  • HTTP response error :Connection reset

    Hi all, I am getting following error in log while sending message to the trading partner and the main problem is that once this error comes then after that I am not able to send any more message to any of my Trading Partners. Even if I try to send me

  • Bdoc BUS_TRANS_MSG

    Hi All Have a problem with huge amounts of BUS_TRANS_MSG how can i find out in what state they are? I have manged to see that they have a flow context of M01and hence should be performing these BUS_TRANS_MSG    mBDoc Notification        MO1    0001  

  • Last input on a JTable

    Hello, I am having a "problem" with a JTable behavior about getting its data. My problem is that the las input that reeived the JTable is not efective until I select another cell. I mean i write a serie of values and press a button, the last input on