10.1.2, EZ way to check method calls before I change and break them.

Is there a way in JDeveloper to see what methods call a certain method (incase I make changes, I don't break several pages)?

Well if you would have upgraded to JDeveloper 10.1.3 or 11g you would have had the find usages menu option to help you with this.
Why are you still using 10.1.2?

Similar Messages

  • Is there a way to import images that have been edited and assign them to the original?

    I am transitioning to mac and aperture. Is there a way to import images that have been edited and assign them to the original? I have 10,000 originals and about 2,000 edited images. The originals are named img_XXXX and anything modified img_XXXX_modified. I would like to be able to import the originals and then import the edited versions and assign them to the original masters. Instead of starting from here and going forward with 12,000 masters, some of which are actual originals and others not. Thanks for the help.

    Ah, the vestiges of a destructive workflow! Once you "get" Aperture, (specifically Masters and Versions) you are going to love it, as all of this work goes away - the relationship that you seek to retain is automatic in Aperture; it is simply done differently.
    The short answer to your question is EVERY image file that is Imported into Aperture will create a new Master and one Version. Assuming that your images are PSD/TIFF/JPEG that you created in something like Photoshop, then each one that your import will be a new Master. You have many options:
    -- Stick the originals in one Project(s) and the edited versions in another Project(s).
    -- Stick them all in the same Project(s) and "Stack" them.
    But here is the real question: Why are you doing all of this work and what are you trying to accomplish? Seems you are trying to preserve old things that don't need preserving in a non-destructive workflow.
    So, what is most valuable to you?
    -- The original, out of camera files? (That is, the fear/need to revert.)
    -- The edited versions? (That is the hours of work that it took you to get there.)
    If the former, import the originals and ignore the edited versions. (Either simply leave them out on disk or import them into their own Projects which you ignore.) Use Aperture to recreate the work you had done previously. This will always give you the ability to revert to the original Master and create as many Versions as you want. This is the best idea if your edits are relatively simple crops and exposure adjustments,
    If the latter, then import the edited versions and do as above with the originals. This makes more sense if your work uses lots of layers and, perhaps lots of clone tool type corrections.
    Of course, you can do a bit of both.
    Others may have better suggestions, but you will find it easy to answer your own question when you understand an image based, as opposed to a file based, non-destructive workflow.
    Good luck!

  • Is there a way to check FF as BOTH webroot security and now my bank sent a security notification that my Firefox is not secure and may be redirecting elsewhere.

    "ACTIVE PROCESS HAS A POSSIBLE MEMORY LEAK firefox.exe"
    When I run a system analyzer for WEBROOT the results state that there is a security breach for my Firefox browser.
    When I went to access my bank info I receive a message that Firefox is redirecting to a site with a bad certificate.
    Is there a way to CHECK to see if I have a secure copy of Firefox? (Yes, I did install through the main site.
    I TEACH technology for the public school system and have top security which updates regularly and my pc itself runs regular maintenance as well.

    Are there any unknown addons, and do a malware check with some different programs, unless Webroot is bashing firefox over a memory leak it had 2 years ago.
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]

  • Method call before visual web jsf page loads

    Hi All.....
    I have written a method in a java class that accesses the mysql backend db to check if a process is still running. If the process is still running, a JOptionPane is produced informing the user of this and offers an <ok> option(to check the process status again) and a <cancel> option(to redirect the user to the homepage). If the process is completed, I want the page to just load as normal. I want this method to be called before the visual web jsf page loads. I have the method call in the super_init() method of the page and everything seemed to be working fine, the problem I have run into is that if I set the value in the db to show the process is running, the JOptionPane is produced(like it should be), and then if I set the value to show the process has completed and choose <ok> from the pane, the page loads.....this is what I want. Now, after the page loads, if I set the value in the db to show the process is running again, the JOptionPane is produced again right after I apply the changes to the db edit!!!!. I don't know why this is happening. Should I be calling the method from somewhere other the super_init()????? I have tried the method call in the prerender(), preprocess(), and destroy() methods all with the same results.
    Anyone have any ideas on what the problem could be??
    Thanks in advance.
    Silgd

    The Java part of a JSP/Servlet based webapplication runs physically at the server machine.
    Only the HTML/CSS/JS part which is generated by the webapplication and sent to the client physically runs at the client machine.
    JOptionPane is a Java Swing component which thus runs at the server machine. So you as client would only see it when both the server and the client runs at physically the same machine. Which is often only the case in development environment and doesn´t occur in real life! There is normally means of two physically different machines connected through the network/internet.
    To solve your actual problem, look for Ajax poll techniques. To display an alert or confirm dialogue in the client side, you use Javascript for this.

  • Action method called before the listener

    hi all;
    i have a command_link as follows:
    <h:command_link action="#{someBean.someMethod}" >
         <f:parameter name="param" value="0"/>
         <h:output_text value="#{someBean.someProperty}"/>
         <f:action_listener type="com.myListener" />
    </h:command_link>
    my problem is that the listener is called AFTER the bean method is called. i need my bean to use data that is set by the listener so i need the listener to be called BEFORE that method.
    on EA4 i used the getPhaseID but now its gone and i cant seem to find the proper replacement.
    i tried the immediate="true" attribute on the command_link with no success, the results were the same.
    any help is appreciated.

    I believe that what's really going on here is that
    "action" should always be processed after all action
    listeners, when, in fact, it's always processed first.
    I'll raise this on the EG.
    AIUI it's even more confusing than your description implies. There seem to be three things
    that can be triggered from a <command_button> or <command_link>:
    1. ActionListeners registered using a nested <action_listener> tag.
    2. An action listener method declared using the actionlistener attribute.
    3. An action method declared using the action attribute.
    I don't think the spec defines a relative ordering for all of these possible event handlers, but I
    think it works like this:
    A. All the action listeners are called in an undefined order. This takes care of all those in
    category (1) above. Since one of the listeners is the system-defined default listener,
    at some point during this processing, the action method (which is REALLY the application code)
    is also called. However, since the spec is vague, you don't really know where this happens relative to
    the other listeners.
    B. The method referred by the actionlistener attribute in category 2 above is called.
    I would have thought that the most intuitive order would be:
    1. All of the action listeners, whether added using <action_listener> or declared using the
    actionlistener attribute.
    2. The method referred to by the action attribute (i.e. the real application code).
    I think the current implementation, where (2) is done by a system-defined actionlistener, gets in the
    way of achieving this, and that would have to change in order to produce a well-defined result.

  • Method called more than once - and dies with EXC_BAD_ACCESS error

    Hi,
    In my app, I have 4 views with their respective viewControllers. In the appDelegate.m, I provide methods that allows to switch to any of these views. Following is code for switching to the editView:
    -(void) flipToEditView {
    [self populateTheList]; // populate an array
    EditViewController *anEditVC = [[EditViewController alloc] initWithNibName:@"EditView" bundle:nil];
    [self setEditVC:anEditVC];
    [viewController.view removeFromSuperview];
    [self.window addSubview:[editVC view]];
    [anEditVC release]; }
    The view is not switched - and moreover, this method is called more than once; and the app dies with EXCBADACCESS!
    2009-08-23 14:54:40.648 iNotate[2128:20b] Album (before): x= 0 y=20 width=320 height=460
    2009-08-23 14:54:40.653 iNotate[2128:20b] Album (after): x= 0 y= 0 width=320 height=480
    warning: Couldn't find minimal bounds for "_sigtramp" - backtraces may be unreliable
    (gdb) bt
    #0 -[iNotateAppDelegate flipToEditView] (self=0x523690, _cmd=0x9563) at /Users/sam/MY_FILES/iPhone Apps/app/Classes/iNotateAppDelegate.m:116
    #1 0x00008661 in -[FirstView editAction] (self=0x546a30, _cmd=0xac94) at /Users/sam/MY_FILES/iPhone Apps/app/FirstView.m:25
    #2 0x30a4eee6 in -[UIApplication sendAction:to:from:forEvent:] ()
    #3 0x30ab0d36 in -[UIControl sendAction:to:forEvent:] ()
    #4 0x30ab11fe in -[UIControl(Internal) _sendActionsForEvents:withEvent:] ()
    #5 0x30ab0544 in -[UIControl touchesEnded:withEvent:] ()
    #6 0x30a67917 in -[UIWindow sendEvent:] ()
    #7 0x30a56fff in -[UIApplication sendEvent:] ()
    #8 0x30a561e0 in _UIApplicationHandleEvent ()
    #9 0x31565dea in SendEvent ()
    #10 0x3156840c in PurpleEventTimerCallBack ()
    #11 0x94a713c5 in CFRunLoopRunSpecific ()
    #12 0x94a71aa8 in CFRunLoopRunInMode ()
    #13 0x31566600 in GSEventRunModal ()
    #14 0x315666c5 in GSEventRun ()
    #15 0x30a4eca0 in -[UIApplication _run] ()
    #16 0x30a5a09c in UIApplicationMain ()
    #17 0x000027e8 in main (argc=1, argv=0xbffff068) at /Users/sam/MY_FILES/iPhone Apps/app/main.m:14
    Current language: auto; currently objective-c
    (gdb) continue
    2009-08-23 14:54:55.885 iNotate[2128:20b] >>>>>>>>>>>>>>>>>> populateTheList
    (gdb) bt
    #0 -[iNotateAppDelegate flipToEditView] (self=0x523690, _cmd=0x9563) at /Users/sam/MY_FILES/iPhone Apps/app/Classes/iNotateAppDelegate.m:116
    #1 0x00008661 in -[FirstView editAction] (self=0x5457b0, _cmd=0xac94) at /Users/sam/MY_FILES/iPhone Apps/app/FirstView.m:25
    #2 0x30a4eee6 in -[UIApplication sendAction:to:from:forEvent:] ()
    #3 0x30ab0d36 in -[UIControl sendAction:to:forEvent:] ()
    #4 0x30ab11fe in -[UIControl(Internal) _sendActionsForEvents:withEvent:] ()
    #5 0x30ab0544 in -[UIControl touchesEnded:withEvent:] ()
    #6 0x30a67917 in -[UIWindow sendEvent:] ()
    #7 0x30a56fff in -[UIApplication sendEvent:] ()
    #8 0x30a561e0 in _UIApplicationHandleEvent ()
    #9 0x31565dea in SendEvent ()
    #10 0x3156840c in PurpleEventTimerCallBack ()
    #11 0x94a713c5 in CFRunLoopRunSpecific ()
    #12 0x94a71aa8 in CFRunLoopRunInMode ()
    #13 0x31566600 in GSEventRunModal ()
    #14 0x315666c5 in GSEventRun ()
    #15 0x30a4eca0 in -[UIApplication _run] ()
    #16 0x30a5a09c in UIApplicationMain ()
    #17 0x000027e8 in main (argc=1, argv=0xbffff068) at /Users/sam/MY_FILES/iPhone Apps/app/main.m:14
    (gdb) continue
    2009-08-23 14:55:22.493 iNotate[2128:20b] >>>>>>>>>>>>>>>>>> populateTheList
    Program received signal: “EXCBADACCESS”.
    (gdb) continue
    What's happening here?
    Sam!

    -(void) flipToEditView {
    [self populateTheList]; // populate an array
    EditViewController *anEditVC = [[EditViewController alloc] initWithNibName:@"EditView" bundle:nil];
    [self setEditVC:anEditVC];
    [viewController.view removeFromSuperview];
    [self.window addSubview:[editVC view]];
    [anEditVC release]; }
    }<---- is this } matched elsewhere?

  • How can I check for references to previous server and remove them?

    I recently migrated several Win7 PC's off an old sbs2003 box to a new 2012 essentials server.
    All client data is stored on the server in a shared folder and that is mapped to the local PC's.
    Everything has been great, except we have noticed a delay of 10-15 seconds the first time on one PC, the user opens up Word or Excel and clicks on File (to check recent documents) - it goes to "not responding" for 10-15 seconds and then is perfectly
    normal.
    Once the program responds again (and the recent documents appear), there is no longer any delay in opening any of the documents at all.
    If the user goes off and browses the internet for a while and comes back, re-opens Word or Excel again, the same thing happens.
    I've checked what I hope is most stuff, and think I've come down to references on the PC to the old server still.
    Is there a list of registry entries/groups that I should be checking, and are there other places aside of the registry that I should be checking also, so I can be sure that only the new server is referenced?
    Appreciate any guidance please.

    Hi,
    Where is these recent office document located? On your Server?
    Generally speaking, application hungs means its process isn't waiting for Windowsing input. Is other application have similar problem?
    To troubleshoot this problem, firstly, I would like to suggest you using Process Explorer to check Word or Excel's stack. Then check what does its thread waiting for.
    Downlaod Process Explorer:
    http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
    If no use, you can use Process Monitor to monitor the starting process of Word or Excel, then we should be able to find which resource cause hung.
    Download Process Monitor:
    http://technet.microsoft.com/en-us/sysinternals/bb896645
    Note: When using Process Monitor to caputer app's trace. Firstly, please set its filter Process Name is Word.exe.
    After that, start work to start monitoring.
    If there is any difficute using these tools, please feel free let us know.
    Roger Lu
    TechNet Community Support

  • Is there a way to prevent iTunes from deleting TV shows and leaving them in the cloud.

    I understand the benefits of the cloud. I'm fully on board. I however have to travel often for work and I am often far away from the luxury of wifi. I understand why it does what it does (removing tv shows and movies I haven't seen a while). Is there a way to turn it off though?
    Thank you so much!

    Unless there is a new feature I'm not aware of iTunes does not arbitrarily delete any content from your computer without your explicit action.

  • Checking parked documents before month change in OB52

    Hi
    I have following requirement:
    I park FI document in Novemeber. It was not posted to books of account. But i closed my november month in OB52 without checking parked document list. It gave little problem to me.
    Now i want to know is there any settings where system will pop out (at the time of OB52) that the month is not complete. It means there are some documents pending to be posted or depreciation run is not done, etc.
    Please help.

    Hi Expert,
    You can open the November month, which is not suggested.
    But, you post the parked documents in special periods(i.e., 13,14, 15 and 16)
    We use special periods for adjustment postings...
    Regards,
    GK
    SAP

  • Is there any way to download music videos from You Tube and play them on a 2nd generation Nano?

    I want to play you tube music videos on my IPod. I can download them as MP4 but it will not accept them. Does anyone know what file format I could use to get music and video? I know I can convert them to MP3 and play them on IPod. I want to play the music videos too.
    Does any one know? JEKjoy

    Have you been able to successfully import these videos into iTunes?  If so, use iTunes built in converter to convert it to a more iTunes friendly format. To do this, highligh the video and choose "Create iPhone or iPod version" from the Advanced drop down menu in iTunes.
    When it has finished converting, try syncing the new version to your Nano.
    B-rock

  • Is there way to find my photos in the cloud and download them

    Is there anyway to find my photos in the cloud and down them

    In the source pane on the left click on "faces"
    You may want to watch the iphoto tutorials - https://ssl.apple.com/findouthow/photos/
    LN

  • HT4859 How can I verify that my App data is actually stored in iCloud. With Dropbox, I can actually see my stored files. With iCloud, itseems I'm supposed 2 just trust that Appl has the data. Short of doing a restore is there no way to check the data?

    How can I verify that my App data is actually stored in the iCloud. I can see and access my notebook, contacts etc. on the iCloud website, and I can see my photos in a folder on my Windows-based desktop compter (iCloud/Photostream). But no app data.
    With Dropbox, I can actually see all of my stored files. With iCloud, it seems, I'm supposed to just trust that Apple has my back. Short of deliberately trashing my app data and then attempting a restore, is there no way to check the data?

    You can't access them on Windows (unless you have iCloud enabled Windows programs) and I don't think any are, yet.
    iCloud data is accessed via Apps/Programs, the Windows programs vendors will have to step up (just to make it worse Microsoft have not yet enabled their Mac programs, such as Office yet) I doubt that iCloud access is much of a priority for them, complain to MS, when enough Windows users complain maybe they'll do something.

  • Save BADI Check Method

    ME_PROCESS_PO_CUST
    All,
    I'm able to change Purchase order at the item level using the check method
    CALL METHOD LO_ITEM->SET_DATAX
              EXPORTING
                IM_DATA = LS_ITEMX.
    I can see the changes before I hit the save button
    But once I hit save button and create the Purchase order the fields are not changed.
    Am I missing something?
    Meghna

    Thanks Vijay.
    I'm using ME_PROCESS_PO_CUST and the transaction is ME21n.
    Any Ideas.
    Meghna

  • Checking book quality before ordering

    Does anyone know how to verify that the PDF file transmitted when ordering a book accurately represents what you see when designing a book?
    Why I want a preview of the PDF...
    My order this year consisted of 3 large books and 3 extra-large books. Both were identical projects in iPhoto with the only difference being the size of the book. The large books arrived looking great and the extra-large books had 21 out of 30 pages that looked terrible. These were not issues related to the image resolution. I'm familiar with the little warning icon when images are too low of a resolution.
    Customer service offered my wife a partial refund because they said that the PDF's on their end looked horrible as well and therefore we were somehow to blame. They suggested not using WiFi and closing all other applications before ordering.
    I was livid because this is our 10th year in ordering books and we've never had this problem. I called to complain since our iMac isn't using WiFi and there's no way to check the quality before ordering. I can accept that the printing company isn't to blame due to the rule of garbage-in-garbage-out but I can't see what I could have done differently to avoid this.
    I was given a full refund and advised to place the order again. I should then wait 30 minutes and then call with the order number and ask them to preview the PDF for me to make sure it looks ok. I'm sure this will catch any glaring problems but it doesn't seem very efficient. Seems like there should be an online preview capability.

    Answering my own question:
    The "More Like This" sidebar after I posted suggested the following thread which looks interesting:
    https://discussions.apple.com/message/15636680#15636680

  • Check current calls via edge server

    Is there a way to check what calls are currently happening via a Lync 2013 edge server.  What I mean here is we need to take down the director pool for some maintenance and this is the next hop from the edge hence before we do this would be good to
    see if there is active communications going on of any kind of modality (video, voice etc)
    Thanks
    DE

    Hi, 
    You can use Get-CsWindowsService.
    It will list you all services and activity level/sessions as below:
    Status     Name            ActivityLevel
    Running  REPLICA
    Running  RTCSRV                Incoming Requests per Second=0,Messages In Server=0,Incoming ..
    Running  RTCDATAPROXY    Server Connections Currently Active=40
    Running  RTCMRAUTH         Current Requests=0
    Running  RTCMEDIARELAY   Active Sessions=45
    You can put edge server on drain as:
    Stop-CsWindowsService -Graceful
    It will not drop active session and also will not accept any new user on your edge server. Once all active sessions are completed, you can start your maintenance.

Maybe you are looking for