Find all Package and their related Procedure Names using a specifc Table

I have 25 Packages
Each Package holds 30-35 Procedures
I need to find out all Packages and Procedures
Each Procedure handles 5 - 20 Tables as Per The Need of Business Rule.
I need All Package and Related Procedure Names Where a Specific Table Name Appears(DBA_SOURCE doesn't serve purpose.)
Early Reply Appreciated.
Thanks and Regards,

I tried the solution provided to me, but unfortunately the issue remains the same.
I was Advised to Execute the SQL utldtree.Sql, and then Execute deptree_fill.
The output is given by a Table DEPTREE (Columns are: .'NESTED_LEVEL', 'TYPE', 'SCHEMA', 'NAME' and 'SEQ#')
The output I am getting From the Table DEPTREE is as follows -
Column TYPE value is PACKAGE; Column NAME Value is ACTUAL PACKAGE NAME
Column TYPE value is PACKAGE BODY; Column NAME Value is ACTUAL PACKAGE NAME
This repeats till the count the TABLE Name is found in the same PACKAGE
Desired Output should be -
Column TYPE value PACKAGE; Column NAME Value ACTUAL PACKAGE NAME
Column TYPE value PACKAGE BODY; Column NAME Value ACTUAL PACKAGE BODY NAME
This should repeat till the count the TABLE Name appears in different PACKAGE BODY of the same PACKAGE
Warm Regards,

Similar Messages

  • All Icons and their function codes

    Hi all!
    How can we find all the available icons and their related function codes? I have watched PRINT icon having different function codes in different ALV reports.
    Edited by: Jayasri P. on Jan 7, 2008 12:44 PM

    Hello.
    In order to use them in the GUI status of your ALV do the following:
    go copy the status "STANDARD_FULLSCREEN" of the program "SPLKKBL" to your program and change it.
    If you go to your own status now, under "Application Toolbar", you can define there your own function codes and use them in your code. As far as the icon is concerned, when you will first set the function code, the system will pop-up a screen in which you can define the icon you want to assign to that function code. You just have to do an F4 on the respective field of the pop-up and a new pop-up will show you all the available standard icons of the system that are available for use in your own GUI status. There, the name of each icon (for example, ICON_OKAY, or ICON_CANCEL etc) can be used to display icons in standard ABAP lists. In this case you have to add in your report the following line
    TYPE-POOLS: ICON.
    and then write something like this:
    write:/ icon_okay as icon.
    Reward please if it help.
    Regards,
    George

  • Report to list all computers and their collection membership

    Hi
    I am currently working on a site where direct membership is used for collections but a need has arisen to move to AD Queries.
    I have created a simple powershell script that creates groups based on the contents of a csv file and another script which populates this with the members listed in another csv file.
    To help speed up the process is there a way to generate a report that lists ALL Computers and their Collection membership?
    The only reports I seem to find that are built in require an inputted value of either computer name of collection ID. I simply need a report that lists Computer Name is column 1 and Collection Name in column 2 for all computers and all collections.
    Many Thanks,
    Matt Thorley

    select 
    FCM.Name,
    C.Name
    from 
    dbo.v_Collection C
    join dbo.v_FullCollectionMembership FCM on C.CollectionID = FCM.CollectionID
    Thanks to Garth for original query. I just modified it :)
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

  • Need to find all Bugs and QF created for 8.0.0.13

    Hi all,
    I kneed to know how to find all bugs and possibly patches/QF created on top of 8.0.0.13 for bugs found in 8.0.0.13 after its release on Jan 2012. This is for my Customer that needs to know if they have to plan some QF in proactive way.
    I can access to Internal Support Portal, so if there is any place where Support people can go I can access.
    Thank you in advance
    Chiara Scarafiotti
    ACS TAM

    Hi radhika,,
    This the the way to go..just modify the col according to your table col names...
    You can do a CONNECT BY query without a START WITH clause to link every node with each of its ancestors.
    Getting the total is just a matter of GROUP BY.
    SELECT emp_id, employee_name, manager_id
    , CASE
              WHEN COUNT (*) = 1
              THEN 0
              ELSE COUNT (*)
         END               AS cnt0
    ,     COUNT (*)      AS cnt1
    FROM employee
    CONNECT BY emp_id     = PRIOR          manager_id
    GROUP BY emp_id, employee_name, manager_id
    ORDER BY emp_id;
    output:
    Output:
    . EMP_ID EMPLOYEE_N MANAGER_ID CNT0 CNT1
    1 Mark 0 5 5
    2 John 1 3 3
    3 Stella 1 0 1
    4 Karen 2 0 1
    5 Andrea 2 0 1
    I made this a bottom-up query (going from each node to its ancestors) rather that a top_down query (node to descendants) because you can't GROUP BY CONNECT_BY_ROOT.
    In your description you implied that each node would be counted among its own descendants, but in the sample output you had 0, not 1, as the count for all the leaves, that is, managers counted as their own descendants, but non-managers did not. The column called count0 in the query above does that; the column count1 counts each node as its own descendant, leaves included.
    Regards
    Onenessboy

  • FI Reports using ABAP and their Related Tables

    Hi can anyone tell me some of the commonly developed reports from FI using ABAP and their related Tables.
    Thank You

    You can find the details about the FI module here
    http://www.sap-img.com/sap-fi.htm
    Regards,
    Ravi
    Note : Please mark all the helpful answers

  • How can I list all users and their DEFAULT tablespace?

    How can I list all users and their DEFAULT tablespace?
    Peter

    Peter, the following short article that lists the most heavily used Oracle rdbms dictionay views might be of interest based on your question:
    How do I find information about a database object: table, index, constraint, view, etc… in Oracle ? http://www.jlcomp.demon.co.uk/faq/object_info.html
    HTH -- Mark D Powell --

  • BI Report - List all users and their assigned roles

    Hello,
    i need a report, which lists me all users and their roles.
    Which table stores this membership information about the users?
    USR or UGP does not have any values

    Hi Reynaldo,
    You can go to SE16 -> table name "AGR_USERS" and see the records for all users. Arrange them in ascending order by name and you will get the report what you have mention above.
    Download it and put it in EXCEL.
    Best Wishes.
    Kumar

  • Command to  provide list of all objects and their scripts from database

    Hi,
    How do i get the list of all objects and their scripts/source from database?
    I guess using dbms_metadata package or Toad tool we can achieve the above task
    But i do not know the steps to get the objects and their scripts.
    Im using oracle database 11g R2 11.2.0.2
    Kindly ge me the advice
    Thanks in Advance

    How do i get the list of all objects and their scripts/source from database?
    I guess using dbms_metadata package or Toad tool we can achieve the above task
    But i do not know the steps to get the objects and their scripts.
    Im using oracle database 11g R2 11.2.0.2If you want the all the metadata of whole database, then it is quiet difficult to get from DBMS_METADATA, as it is very complex because you need to gather for each object of each schema in whole database and to spool.
    http://www.orafaq.com/node/57
    I want to know, what is the use of entire database metadata, Certainly need of objects of metadata.
    or if you want to whole database, then i suggest you go for export full backup and import as impdp sqlfile option,

  • Is there any table in data dictionary has all clients and their email ids?

    Is there any table in data dictionary has all clients and their email ids?

    Hello,
    KNVK-ADRNP_2
    use this to pass to the bapi BAPI_BUPA_ADDRESS_GETDETAIL. this is function module & will return the address details in diff itabs..
    You can also try the Table ADR6 field SMTP_ADDR where ADDRNUMBER = KNVK-ADRNP_2.
    *************Reward points,if found useful

  • Using iPhone 3G ,Version 4.2.1,Modem Firmware 06.15.00, In this phone i was using Facebook upgraded app and Smart Sync App. Suddenly my sisiter reset all setings and now I can't use the upgraded facebook app, for smart sync is asking for IOS 4.3,Need help

    Using iPhone 3G ,Version 4.2.1,Modem Firmware 06.15.00, In this phone i was using Facebook upgraded app and Smart Sync App. Suddenly my sisiter reset all setings and now I can't use the upgraded facebook app, for smart sync is asking for IOS 4.3,Need help.

    Thank you for the answers so far, but I'll make one correction: I said earlier that the Boston Globe website, boston.com, does not have a mobile site, and I would need to visit their regular website on my iPhone. Actually, I just found out that boston.com has a mobile site, so I'd obviously use that instead of the regular site. By doing that, I'd save a ton of data (I think). Does that change your answers?

  • How to add ship-to and sold-to party name in a view table.

    Hi Expert,
    May i know how to add in the field names for ship-to and sold-to party name in a view table? I know that the name should be retrieve from KNA1 but how to map the name to the respective fields? Please help urgently. Thanks.
    Regards,
    Shawn
    Message was edited by: Manish Kumar : Do not use urgent word.

    Hi,
         Use Table KNVP for Codes and Join with KNA1 for names using Alias LIKE
         select a~kunnr a~name1 b~kunnr b~name1 from
           kna1 as a
         INNER JOIN
           kna1 as b on a~kunnr eq b~kunnr
           INNER JOIN knvp as c
         on a~kunnr eq c~kunnr
         INTO TABLE IT_SHIP
         where c~parwe in ('AG','WE')
         AND KUNNR IN .....

  • I recently clicked on erase all data and now i can't use my phone even after restoring

    i recently clicked on erase all data and now i can't use my phone even after restoring

    Try here...   iPhone and iPod touch: Unable to update or restore

  • Find All INSERTs and UPDATEs

    Hi All;
    I want to find out all inserts and updates of a spesific table. For instance a package l,ke that
    CREATE OR REPLACE PACKAGE BODY param_test IS
      PROCEDURE ins_test IS
      BEGIN
    insert INTO parameter_value VALUES (2);
        INSERT INTO parameter_value VALUES (9);
        INSERT  INTO
        parameter_value VALUES (4);   
        insert INTO parameter_value VALUES (54);
      END ins_test;
    END param_test;I am querying user_source view. My query is below.
    Connected to Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    Connected as SYS
    SQL> SELECT us1.NAME, us1.line, us1.text
      2    FROM user_source us1,
      3         (SELECT us2.line, us2.NAME, us2.text
      4            FROM user_source us2
      5           WHERE regexp_like(upper(us2.text), '[[:space:]]*PARAMETER_VALUE[[:space:]]*')) us3
      6   WHERE us3.line - 1 = us1.line
      7     AND us1.NAME = us3.NAME
      8     AND regexp_like(upper(us1.text), '[[:space:]]*(INSERT[[:space:]]*INTO|UPDATE)[[:space:]]*')
      9  /
    NAME                                 LINE TEXT
    PARAM_TEST                              9 insert INTO parameter_value VALUES (2);
    PARAM_TEST                             12     INSERT  INTO
    SQL> My question is "Are tehre any solutions to overcome this situation?"
    Kindly Regards...

    You might be better off combining into your attack the use of user_dependencies. This will tell you what objects e.g., code is dependent on your table and then you can search the source of those modules for inserts and updates into the table. Even then you'll never be sure, especially if dynamic SQL is used as the statement may be pieced together from various bits if strings, as then user_dependencies won't contain the reference.

  • [SQL QUERY] Select TCP Port Monitors and their related Watcher Node

    Hi everybody,
    I'm working on a SSRS report and SQL Query, I have no problem to find all my TCP Port Monitor (SCOM 2012 R2) based on the DisplayName, but I can't figure out how to get their related watcher nodes (in my case only 1 computer is a watcher node).
    I can't find which table, which field, contains this information..?
    Here is the query i started to write (i select * since i still searching for the right column):
    SELECT
    FROM StateView s
    INNER JOIN BaseManagedEntity me on me.BaseManagedEntityId=s.BaseManagedEntityId
    INNER JOIN MonitorView mv on mv.Id=s.MonitorId
    INNER JOIN ManagedTypeView mtv on mtv.Id=s.TargetManagedEntityType
    --where mv.DisplayName like 'Ping Target Status Check%'
    AND me.IsDeleted = '0'
    where mv.DisplayName like '%tcpmon%'
    and mv.LanguageCode = 'ENU'
    --and s.HealthState in (@state)
    ORDER BY s.Lastmodified DESC
    It would be great if someone can help me !
    Thanks,
    Julien

    Hi,
    After creating a TCP port monitor, we can find a table for this monitor under operationsmanager database :
    SELECT *
    FROM [OperationsManager].[dbo].[MT_TCPPortCheck_******WatcherComputersGroup]
    You will find the warcher computer group.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Sql query to find backgorund jobs and their associated reports

    Hi Guys
    is there any possibility to find job (jobname) their scheduling and the corresponding reports with their variant via sql queries?
    Looking up the tables tbt-something only show %NEWSTEP for the INTREPORT value, so this isn´t clearifying at all.
    Maybe you could tell me the tables where the reports and their variants are saved.
    Cheers
    Fabi

    hi check this...
    go to the table TIBCO
    there you will find
    jobname
    jobgroup
    report name
    job status
    but there is no varient specification and
    %NEWSTEP is the report name

Maybe you are looking for

  • Connecting Gamecube to Macbook to access private server

    I hope someone out there has managed this and can help. I am trying to connect my old Gamecube to the internet via my Macbook's wireless connection in order to play Phantasy Star Online (I know, I know, I was just feeling nostalgic). The game is now

  • Object deserialization and specific classloaders

    Hi, I must load jars during the runtime in a specific classloaders, it's works, but how could i use this class loader to deserialize object i receive from wire ? is it possible to include my specific classloader in the search tree of the main classlo

  • Create batch for existing GR materials

    Hi, how can we create the batches for the materials whose GR is already done w/o Batch management active? imean i want to put  a new batch no for the existing GR materials?

  • Authentication using database accounts (EJB)

    Hi. I'm developing a web app(struts, jsp). Users should log-in using their Oracle database accounts (created with CREATE USER ...). Is it possible to accomplish that using EJB? How? I've read that i can somehow map application server's users with dat

  • Why isn't facetime installed?

    Why can't I find facetime on one of my iMacs?  It's about 1.5 years old.  (Snow Leopard) It looks like it costs .99 for downloading it, but on one of my SL iMacs (new) it's already installed for free.... I remember reading something about this, (free