What's the quickest way to find all calls to some PL/SQL package?

Here's my situation:
I have a large application (>100 pages) which has multiple calls to a PL/SQL package procedure X.Y occurring in various processes, conditions, etc on an unknown set of pages. The procedure is being moved to package Z, so I want to replace all instances of X.Y with Z.Y. What is the best way to do this?
I'm thinking of exporting the application, and doing a manual find and replace of all X.Y with Z.Y, then importing the modified export file. Will this work?
Alternatively, is there a report available which can be run to show something like this, given an input of X.Y, which shows all pages where X.Y is referenced :
Page Object
1 After-submit process abc
5 item P display condition
13 validation xyz
etc
If not, how easy is it to write such a report from the available apex views?

Have you looked at the Database Object Dependency report?
In the Application Builder, select your application.
In the Tasks list on the right, click on View Application Reports.
Under the Application menu, click on Database Object Dependencies.
It will make a list of all database objects used by your application and where they are used.

Similar Messages

  • What is the quickest way to find reports that run a particular DB?

    Hi,
    I have numerous reports running on multiple database. What is the quickest way to find all reports running on a particular Database?
    I am new to this and do not have much idea.
    Any information is appreciated!
    thanks
    shankar

    Hello Shanka,
    If you are talking about Crystal Reports
    I recommend to post this query to the [Crystal Reports Design|SAP Crystal Reports; forum.
    This forum is dedicated to topics related to the creation and design of Crystal Report documents. This includes topics such as database connectivity, parameters and parameter prompting, report formulas, record selection formulas, charting, sorting, grouping, totaling, printing, and exporting but also installation and registering.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all Crystal Reports Design queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • HT1349 what is the quickest way to move all my iTunes music, video, etc. to a new computer? any help would be appreciated.  thanks.  p.s. i purchased a belkin transfer cable - will that work?

    hi - i'm a newbie - what is the quickest way to move all my iTunes music, video, etc. to a new computer? any help would be appreciated.  thanks.
    p.s. i purchased a belkin transfer cable - will that work?  i have an iPod Touch.

    You copy it from one computer to the other.
    Type "move itunes library" into the google search bar.
    You have posted in the iphone forum.

  • WHAT IS THE QUICKEST WAY to find where my media cache files for PrPro are stored on my computer?

    I'd like to delete them.
    Do I run any risks by deleting everything in that folder, WHEREVER it may be, now?
    Thanks!
    Matt

    Thanks Jim,
    When I go there and try to empty the cache, the application freezes.
    So I wanted to delete them manually, by hand, but cannot readily find them anywhere on my computer.
    Hence the question?
    Matt

  • HT1417 What's the quickest way to delete duplicates without going song by song?

    What is the quickest way to delete duplicates from i tunes library without going song by song?  I just transferred my music from my ipod classic to my computer and now I have a lot of duplicate music.  Most is from CD's I reburned or music I was able to get back on my new computer through I tunes.  It is from my personal i pod (one of 4).  I finally figured out how to get it off the ipod and back onto my newer computer. I made sure to go to advanced setting and check "keep i tunes folder organized" but it still saved all duplicates.

    Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • What's the quickest way to put edit points around a selection?

    In the timeline (TL) I have made a selection inside a clip (using the Range Selection tool):
    What is the quickest way to make this selection a separate clip (as below)?:
    PS Saying 'put edit points around' and 'make separate clip', I guess are always the same thing, so I have mixed my terms!?
    PS I have currently been using: CMD + X, CMD + V, but this is a hack, not a method, so there has to be a way, right?

    Thanks to you all for quick replies, especially Andy for quickly understanding me.
    Yup, I used the Range Selection tool. It's a great tool, when for e.g. you want to lift ambient room tone from a portion of an audio clip to paste elsewhere.
    Anyway, I am just experimenting thoroughly with all the tools and workflows, to find quickest ways of doing things. To answer your question(s): an example in which you would want to do what I mention above is if you wanted to quickly apply particular Effects/Parameters/Settings to a portion of a clip, like a sepia tint, and wanted to be able to easily click back to that portion later,  see e.g. below:
    Thanks again

  • What is the proper way to close all open sessions of a NI PXI-4110 for a given Device alias?

    I've found that, when programming the NI PXI-4110 that, if a the VI "niDCPower Initialize With Channels VI" (NI-DCPower pallette) is called with a device
    alias that all ready has one or more sessions open (due to an abort or other programming error) a device reference results from the reference out that has a (*) where "*" is post-fixed to the device reference where and is an integer starting that increments with each initialize call. In my clean up, I would like to close all open sessions. For example, let's said the device alias is "NIPower_1" in NI Max, and there are 5 open sessions; NIPower_1, NIPower_1 (1), NIPower_1 (2), NIPower_1 (3), and NIPower_1 (4). A simple initialize or reset (using niDCPower Initialize With Channels VI, or, niDCPower Initialize With Channels VI, etc.) What is the proper way to close all open sessions?
    Thanks in advance. Been struggleing with this for days!

    When you Initialize a session to a device that already has a session open, NI-DCPower closes the previous session and returns a new one. You can verify this very easily: try to use the first session after the second session was opened.
    Unfortunately, there is a small leak and that is what you encountered: the previous session remains registered with LabVIEW, since we unregister inside the Close VI and this was never called. So the name of the session still shows in the control like you noted: NIPower_1, NIPower_1 (1), NIPower_1 (2), NIPower_1 (3), and NIPower_1 (4), etc.
    There may be a way to iterate over the registered sessions, but I couldn't find it. However, you can unregister them by calling "IVI Delete Session". Look for it inside "niDCPower Close.vi". If you don't have the list of open sessions, but you have the device name, then you can just append (1), (2) and so forth and call "IVI Delete Session" in a loop. There's no problem calling it on sessions that were never added.
    However - I consider all this a hack. What you should do is write code that does not leak sessions. Anything you open, you should close. If you find yourself in a situation where there are a lot of leaked sessions during development, relaunching LabVIEW will clear it out. If relaunching LabVIEW is too much of an annoyance, then write a VI that does what I described above and run it when needed. You can even make it "smarter" by getting the names of all the NI-DCPower devices in your system using the System Configuration or niModInst APIs.
    Hope this helps.
    Marcos Kirsch
    Principal Software Engineer
    Core Modular Instruments Software
    National Instruments

  • What is the quickest way to access the Settings on an iPad?

    What is the quickest way to access the Settings on an iPad? (I mean, the usual cogwheel "app" called Settings)
    In particular, I'm looking for a quicker way (or a more convenient one) to access it from an open application, than hitting the "home" button, possibly swiping the home pages, and tapping on it.
    (I know, I know, I already placed it in the bottom bar, so I have it available from all pages...)
    It would be great if I could cut another step or two. I mean, there are situations where I need to use the Settings app repeatedly. I wonder why it was not included in the iOS 7 swipe-from-bottom menu, while the "Camera" or "Countdown Timer / Clock" made the cut.
    I know everybody will have a different opinion on what should be included in that menu, and choices have to be made, but still...
    for example, on my Android smartphone the newer OS updates placed a shortcut to the settings app in the upper-right corner of the swipe-down menu, which is like the most prominent place you could place it in.
    Anyway, do you know of one or more alternative ways to access the Settings app?
    (Oh, and yeah, it just occurred to me that I can four-finger swipe it, if I have accessed it recently, but again if I access another app or two in between it will become at least as cumbersome as going through the home page).

    Anyway, do you know of one or more alternative ways to access the Settings app?
    Short answer, no. If you have a suggestion for future iOS functionality, use the feedback functionality found elsewhere on this site.
    Barry

  • What is the quickest way to incorporate a new template's styles into an existing template?

    Recently my company have developed a new template. I am creating a document using much content which already exists in an older template with different paragraph styles, table formats and page formats. What is the quickest way to incorporate the new styles so I don't have to individually update the table contents. The paragraph catelog and tables have different titles in the two documents.
    Thanks,
    Niall.

    Do you know where I can find a copy of Template Mapper? I went to http://ig5authoringtools.com/plugin-directory/single-sourcing/templatemapper/ and it is not there.
    Thanks in advance

  • What's the quickest way to slice up this image...

    I found this image and would like to slice it up into separate images. What's the quickest way to do this without having to manally select each one or manually draw slice lines?
    My idea was to get them all surrounded by a marquee or path, and then somehow export that marquee or path area into a file.
    The first part of creating the marquee and path was easy...
    I first surround the entire image with a black border so that it intersects the horizontal black divider lines
    I then used the magic want tool to select the black border which also selected the black divider lines
    I next inverted the selection... so now all the sections are selected perfectly
    Finally I right-clicked on the selection and picked "Make Work Path"
    But now how do I export all the work path sections into individual files?
    I would appreciate any help or advice... thanks.
    -Pete

    I was able to do it with a selection I saved named selection for a single frame. Then recording an action that I played moved the selection and played again repeated this till all frames were created. I then deleted the background layer aligned all layer to the top and created a frame animation.
    The script export layer to files will create files for each frame.

  • What is the quickest way to delete thousands of emails?

    What is the quickest way to delete thousands of emails?

    If you are using Apple Mail, you should be able to select a whole bunch of them at once and delete them (there are two commands for this under the Edit menu, Select All and Delete), then empty the Mail trash.
    If you are reading an email account through a web browser, they should provide a way to select multiple files. Usually it is a checkbox at the top of a column that selects the entire column when checked. If they let you increase the number of messages visible at once, you can select more at a time.

  • I had to reset my iphone 5 today because of software issues. what is the best way to restore all my apps?

    I had to reset my iphone 5 because of corrupt software issues. now I am trying to restore my apps. So are returning. Some are not. Some are making me pay for them again! What is the best way to restor all the apps?

    Sync them from your computer back to the iphone

  • What is the easiest way to export all tables data from Oracle to MS SQL Server?

    Hello MS,
    I would like to export all tables from Oracle 11.2 to MS SQL Server 2012 R1.
    Using the tool "Microsoft SQL Server Migration Assistant v6.0 for Oracle" did not work for me because there are too many warnings and errors regarding the schema creation (MS cannot know it because they are not the schema designer). My idea is
    to leave/skip the schema creation to the application designer/supplier and instead concentrate on the Oracle data export and MS SQL data import.
    What is the easiest way to export all tables data from Oracle to MS SQL Server quickly?
    Is it:
    - the „MS SQL Import and Export Data“ Tool
    - the “MS SQL Integration Services” Tool
    - not Oracle dump *.dmp format because it is a propritery binary format
    - flat file *.csv (delimited format)
    Thanks!

    Hi lingodingo,
    If you want to directly export all tables from Oracle database to SQL Server, I suggest you use SQL Server Import and Export Wizard. Because you just need to follow the wizard with GUI, this is the easiest way.
    If you want to make some modification for the tables‘ data before loading to SQL Server, I suggest you use SQL Server Integration Services package. For more details, please refer to the following similar thread:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/38b2bed2-9d4e-48d4-a33f-1d9eed1c062d/flat-file-to-sql-server?forum=sqldatamining
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • What is the quickest way of moving a itunes music library from a windows 7 machine to an apple Macbook pro?

    What is the quickest way of moving an itunes music library from a windows 7 machine to an apple Macbook pro?

    If you wany Everything from your PC itunes on your MBP... Then... See Here...
    Move iTunes Library from PC to MAC
    http://www.macworld.com/article/146958/2010/03/move_itunes_windows_mac.html

  • What is the best way to find a file on the servers disk without using web.xml?

              What is the best way to find a file on the servers disk without using web.xml?
              I want to find a configuration file not contained within the war file I have
              created. Is there a way to pass information into the ServletContext with out
              rebuilding the ear or war files? Tomcat 4.0 can do this in its server configuration
              files. Does BEA have the equivalent?
              Regards,
              Eric
              

    You can specify the path to the file as a system property
              eg
              java -Dconfig.file.location=./mydirecotry/myfile.txt com.test.MyApp
              "Eric White" <[email protected]> wrote in message
              news:[email protected]..
              >
              > What is the best way to find a file on the servers disk without using
              web.xml?
              > I want to find a configuration file not contained within the war file I
              have
              > created. Is there a way to pass information into the ServletContext with
              out
              > rebuilding the ear or war files? Tomcat 4.0 can do this in its server
              configuration
              > files. Does BEA have the equivalent?
              >
              > Regards,
              > Eric
              

Maybe you are looking for

  • Unable to get the values from PAYLOAD

    Hi, i'm unable to get the values of payload. When i use currentTask = client.getTaskQueryService().getTaskDetailsById(workflowContext, taskID); Element payload = (Element)currentTask.getPayloadAsElement(); node = (Element)payload.getFirstChild(); Sys

  • Business Catalyst - Can I show different versions of  my site pages to different types of visitors?

    My organization's site is known to have three distinct type of a visitor - patient, parent, scientist. Is it possible in Business Catalyst-  and what is the best workflow - to create pages that allow to display a variation of content, based on who is

  • Working with HD video in FC Studio 2?

    Presently only have FC Studio 2 to edit with. I know some HD video is coming my way. 2 questions - Will I be able to edit HD in FCS2 and are there particular settings or steps I need to do in order to work with it. Thanks all.

  • Captivate 2 differences from Captivate 1

    Hey everyone, Our company has recently purchased 9 licenses of Captivate 1, for a massive product upgrade that we will be writing a lot of online learning for. I'm trying to find out the differences between captivate 1 and 2, to evaluate if it'll be

  • InDesign CS3 and Unicode

    From BabelMap (character map application for Windows), I have pasted in InDesign CS3 the 818 characters of OT Adobe Garamond Pro. Something is strange : for exemple the digit nine have the Unicode number U+E097 in the Info Panel but U+0039, in the Gl