Discussion Event aren't caught

1. Scenario
We would like to catch some events on specific "discussion documents",
which are saved in folders of own cm repository (Pls pay attention: we won't discuss on a resource or folder). For this reason we
created own repository service and assigend them to our repository.
This service should catch discussion events wich are fired during work
with it. Therefore we registrated our service as IResourceEventReceiver
and assigned them to Events "NEW_DISCUSSION" and "NEW_DISCUSSION_ITEM".
2. Problem
This EventReceiver aren't never be executed as long as new discussion
are created or modified.
3. Question
Are there any workaround to assign own repository service as discussion
event handler.
Thanks & Regards
Thomas Börner

The reason behind this is: When applet is run on web browser, the applet window does not get focus. If you can grab the focus somehow, mouse wheel events will work fine. However, this works fine in applet viewer and in older versions of JDK. This is broken in JDK 1.6 and already fixed in JDK 1.7. Please have a look into this bug:
[http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6516675|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6516675]
If you run following applet in your browser you will see mouse wheel events in action with JDK1.6:
[In case it does not work, click on 'Click Me' button and try]
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
* @author mrityunjoy_saha
public class TestApplet extends JApplet {
    public void init() {
         setLayout(new BorderLayout());
        XPane xPane = new XPane();
        //xPane.requestFocus();
        JScrollPane pane = new JScrollPane(xPane);
        //add(new JButton("Click Me"), BorderLayout.NORTH);
        add(pane, BorderLayout.CENTER);
    class XPane extends JPanel {
     private JLabel jLabel1;
        public XPane() {
            jLabel1 = new javax.swing.JLabel();
            addMouseWheelListener(new java.awt.event.MouseWheelListener() {
                public void mouseWheelMoved(java.awt.event.MouseWheelEvent evt) {
                    formMouseWheelMoved(evt);
            jLabel1.setText("Mouse Wheel Info...");
               add(jLabel1);
        private void formMouseWheelMoved(java.awt.event.MouseWheelEvent evt) {
            jLabel1.setText(String.valueOf(evt.paramString()));
}Thanks,
Mrityunjoy

Similar Messages

  • Mouse wheel events aren't caught in browser

    Hello.
    I developed an applet with NetBeans 6.5 with mouse wheel zooming. In applet viewer everything works fine, but when I start applet in page in browser (I tried Firefox 3.0.6, MS IE 6.0, MS IE 7.0), no mouse wheel events (neither scrolling) are caught by applet.
    Any ideas?
    Thanks.

    The reason behind this is: When applet is run on web browser, the applet window does not get focus. If you can grab the focus somehow, mouse wheel events will work fine. However, this works fine in applet viewer and in older versions of JDK. This is broken in JDK 1.6 and already fixed in JDK 1.7. Please have a look into this bug:
    [http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6516675|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6516675]
    If you run following applet in your browser you will see mouse wheel events in action with JDK1.6:
    [In case it does not work, click on 'Click Me' button and try]
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    * @author mrityunjoy_saha
    public class TestApplet extends JApplet {
        public void init() {
             setLayout(new BorderLayout());
            XPane xPane = new XPane();
            //xPane.requestFocus();
            JScrollPane pane = new JScrollPane(xPane);
            //add(new JButton("Click Me"), BorderLayout.NORTH);
            add(pane, BorderLayout.CENTER);
        class XPane extends JPanel {
         private JLabel jLabel1;
            public XPane() {
                jLabel1 = new javax.swing.JLabel();
                addMouseWheelListener(new java.awt.event.MouseWheelListener() {
                    public void mouseWheelMoved(java.awt.event.MouseWheelEvent evt) {
                        formMouseWheelMoved(evt);
                jLabel1.setText("Mouse Wheel Info...");
                   add(jLabel1);
            private void formMouseWheelMoved(java.awt.event.MouseWheelEvent evt) {
                jLabel1.setText(String.valueOf(evt.paramString()));
    }Thanks,
    Mrityunjoy

  • Mouse wheel events are being caught by Photoshop document

    I'm using CSXSWindowedApplication.
    If you create any document in Photoshop, then zoom into it, so it takes more space than visible screen area and then open a CS Extension panel - the mouse wheel event is being caught by Photoshop and when you're rolling it, Photoshop moves document up and down, instead. mouseWheel events don't reach neither WindowedApplication nor any control inside of it.
    This only happens in Photoshop.
    Are there any workarounds?
    Thank you!

    Interesting. I've' not played with mouse wheel events. I'll have a look at it.
    Thanks
    Bob

  • Acpi events aren't recognized at startup

    Hi forum!
    Since 3 weeks my acpi events aren't recognized anymore after startup, no apci_listen and no event-handler-output. I've got to manually type "systemctl restart acpid" to get them working again. What could be the problem? Journallog: http://pastebin.com/5f03T2wh
    Regards,
    thurse93
    Last edited by thurse93 (2014-03-21 12:50:39)

    We might have the same issue, though restarting acpid doesn't change anything for me. I've tried different kernels and tried to find out if any package was updated when it started happening, but couldn't find anything. I've opened a bug report for the kernel here:
    https://bugzilla.kernel.org/show_bug.cgi?id=71221
    That bug has the following effects on my computer:
    - Backlight keys not working
    - Wireless key not working
    - Doesn't detect the change when plugging out the battery cord, KDE/upower can't see that the computer is on battery
    - CPU frequency isn't lowered automatically anymore when my PC gets too hot, and it just shuts down due to overheating

  • Dispatched Event not being caught

    I have the following custom event:
    package
    import flash.events.Event;
    public class TestCustomEvent extends Event
    public static const EVENT_NAME:String = "TestCustom";
    public var _message:String;
    public function TestCustomEvent(message:String)
    super(EVENT_NAME,true,false);
    this._message = message;
    public override function clone():Event
    return new TestCustomEvent(_message);
    public override function toString():String
    return formatToString("TestCustomEvent", "type", "bubbles",
    "cancelable", "eventPhase", "_message");
    which I am trying to dispatch from the following class:
    package
    import flash.events.EventDispatcher;
    import flash.events.IEventDispatcher;
    import flash.events.Event;
    public class TestDispatch implements IEventDispatcher
    private var dispatcher:EventDispatcher;
    public function TestDispatch()
    dispatcher = new EventDispatcher(this);
    public function RaiseEvent():void
    var ev:TestCustomEvent = new TestCustomEvent("catch this");
    this.dispatchEvent(ev);
    public function addEventListener(type:String,
    listener:Function, useCapture:Boolean = false, priority:int = 0,
    useWeakReference:Boolean = false):void{
    dispatcher.addEventListener(type, listener, useCapture,
    priority);
    public function dispatchEvent(evt:Event):Boolean{
    return dispatcher.dispatchEvent(evt);
    public function hasEventListener(type:String):Boolean{
    return dispatcher.hasEventListener(type);
    public function removeEventListener(type:String,
    listener:Function, useCapture:Boolean = false):void{
    dispatcher.removeEventListener(type, listener, useCapture);
    public function willTrigger(type:String):Boolean {
    return dispatcher.willTrigger(type);
    but in my application the event doesn't get caught:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()" initialize="addListeners()">
    <mx:Script>
    <![CDATA[
    private function addListeners():void
    this.addEventListener( TestCustomEvent.EVENT_NAME,
    onEventCaught );
    private function init():void
    var t:TestDispatch = new TestDispatch();
    t.RaiseEvent();
    public function onEventCaught(event:TestCustomEvent):void
    trace("caught");
    ]]>
    </mx:Script>
    </mx:Application>
    Not sure why event is not being caught.
    Thanks,
    EE

    I updated my code a little:
    //Using a sprite so it should be part of the diplay list now.
    package
    import flash.display.Sprite;
    public class TestClass2 extends Sprite
    public function TestClass2()
    super();
    public function RaiseEvent():void
    var ev:TestCustomEvent = new TestCustomEvent("catch this");
    this.dispatchEvent(ev);
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()" initialize="addListeners()"
    xmlns:local="*">
    <mx:Script>
    <![CDATA[
    private function addListeners():void
    this.addEventListener( TestCustomEvent.EVENT_NAME,
    onEventCaught );
    private function init():void
    tc2.RaiseEvent();
    public function onEventCaught(event:TestCustomEvent):void
    trace("caught");
    ]]>
    </mx:Script>
    <local:TestClass2 id="tc2" width="100" height="50" />
    </mx:Application>
    But event still not being caught.

  • Some iPhoto events aren't displayed in finder windows

    When trying to upload or attach iPhoto pictures, the finder item labeled iPhoto is missing events from my recently uploaded events and photos. I can see older events and upload files easily. I'm hoping this is a simple fix but does anyone have ideas on how to update this file listing in finder?
    I have an iMac with snowleopard, iPhoto 11 and all of the latest software updates for both. I have also rebuilt the data base, repaired permissions etc from the iPhoto repair menu.
    Any ideas?  Thanks!

    The newer iPhoto version is not setup for accessing the photos via the Finder. the following is from a post by Terence Devlin on accessing photos for use outside of iPhoto.  It's the definitive treatise on the subject.
    There are many, many ways to access your files in iPhoto:
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running: 
    For users of 10.6 and later:
    You can download a free Services component from MacOSXAutomation   which will give you access to the iPhoto Library from your Services Menu. Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3.Show File:
    a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected. 
    b. On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected. 
    The above is how one should access photos for use outside of iPhoto.
    OT

  • How SAP Event can be caught from Adapter

    Hi All,
    How can I catch the event on -
    1. Pressing the Start and Stop button in Runtime Workbench after selecting Adapter Communication Channel.
        OR
    2. Adapter Status flag (Active/Inactive) in Communication Channel of Adapter in Integration Directory
    from my own (third party custom) code ?
    I have my custom adapter writen in Java and I want to catch the event on as above from my Adapter to activate or deactivate my adapter. Please help !
    What should I need to do (to import certain SAP jar OR ...) in my code to achieve this.
    Thanks In Advance
    Shalindra Singh

    Hi,
    Thanks for the reply-
    The blog is to get the access of channnel externally, by this I will not be able to stop and start the channel from RWB.
    But what I need is, I want to start or Stop the Channel from RWB only, but i want to catch this event externally so as I may triggered some other functionality written in my custom Adapter code as soon as Start or Stop event button is pressed in RWB.

  • Exceptions for repeating Events aren't handled correctly on iPod!?

    I have a few repeating all day events set up in my calendar in iCal. If I sync them to my iPod they are transfered correctly.
    However, if I move one of them in iCal from say wednesday to tuesday as an exception for this event (for just one week), the event isn't moved on the ipod as well. Instead, after syncing, it shows up on tuesday *as well as* wednesday. In iCal everything is displayed correctly...but on the ipod it is doubled.
    Does anyone know how to fix this?
    Best regards,
    Markus.

    Scott,
    thanks for your hint. unfortunately this didn't change anything at all.
    I still got my repeating events correct on the mac but doubled on the ipod.
    Any other ideas?
    Best regards,
    Markus.

  • Days containing events aren't highlighted in Outlook 2010 Calendar

    Hi, I've tried searching for the solution to this issue for sometime however I've had no luck. Let me try explain it correctly....
    All of you that use Outlook Calendar will know that when you create an event, then that particular day always remains highlighted. However if I create an event in my iPhone calendar and then sync to outlook, the event is synced but the date isn't highlighted in Outlook.
    This may seem unimportant but it is extremely useful considering I use outlook calendar everyday.
    I would really appreciate a little help on this one.
    Evo

    I guess the event is not tagged as "busy" but "free"?

  • My calendar events aren't showing up in Notification centre

    My calendars are synced and everything shows up fine on my iPhone, but none of my events will show up in the calendar section of the notification centre on my MacBook. I've tried changing my settings in notification centre (togling them on and off, restarting my computer...) as well as changing my settings in my calendar preferences...

    I have the same problem with the calendars in the notification center.
    The list view is gone so I cannot see what is coming next. It just lists the new calendar invitations, which are not that helpful. It should, like iOS 6 list all the events in the day.
    In 'today', I can see the calendar but whenever I have an all day appointment/event, I cannot see any other appointments. The all day event just covers the calendar screen until 6AM and it stays there all day. I guess the use of this screen was supposed to be such that the calendar times will scroll and show the upcoming appointments/meetings as the day progresses. It aint doing that.
    I hope Apple fix this asap because this is really annoying.

  • How come my events aren't syncing to my pc?

    Does anyone know why when I enter an event in my phone it doesn't sync to my google calendar? and vice versa? It used to!

    On your Mac open System Preferences > iCloud
    Deselect the box next to Calendars & Reminders then reselect it.
    Do the same for Notes
    On your iPhone and iPod. Tap Settings > ICloud
    Switch Calendars off then back on. Same for Notes.
    Give iCloud a few minutes to sync data.

  • Another JTable/buttons in cells query - event forwarding

    Hi Everyone.
    Apologies in advance for yet another thread on this subject. I realise this has been discussed a number of times but I can't find what seems like a definitive solution.
    I understand what the fundamental issue is with putting JComponents in table cells - i.e. that the cells are rendered essentially as static visual entities, that they're not "components" as such and will not receive events.
    I'd like to implement JButtons in table cells so that they behave as "normally" as possible - i.e. handle their own roll-over appearance, handle their own pressed appearance, and fire action events when pressed, with as little manual intervention in these mechanisms (e.g. in mouse listener code) as possible. I'm trying to do this by forwarding mouse events from the table to the button, but this doesn't seem to work as I'd hoped and I have various questions...
    (Background: I have implemented JButton objects in the data model, and the getTableCellRendererComponent() method returns *(JButton)value*.)
    My first question concerns the interception of mouse events. The usual technique would be to add a mouse listener and/or mouse motion listener to the table, and implement mouseClicked(), mousePressed() etc. However, can I override the table's processMouseEvent() and processMouseMotionEvent() methods instead, and from here forward events to buttons where appropriate, or process normally with super.processMouseEvent()? My motivation for doing this would be specifically not to invoke the super methods where events were forwarded to buttons - effectively consuming the event. Is this correct technique?
    My second question concerns attempts to reproduce button roll-over appearances. The JTable is of course considered a single entity as far as mouse events are concerned, and MOUSE_ENTERED and MOUSE_EXITED events aren't generated as the pointer moves from cell to cell. Merely forwarding mouse events to buttons - which will mostly be MOUSE_MOVED events - seems to be insufficient and presumably the roll-over appearance change relies upon ENTERED and EXITED events occurring at the proper times.
    I mimicked this behaviour in my override of processMouseMotionEvent() by calculating the value (i.e. JButton reference) of the cell under the mouse pointer, and if it wasn't the same as for the previous event, manually creating a MOUSE_ENTERED event and forwarding it to the new button. This seemed to work - the rollovers were happening (provided a table repaint() was performed), but it seemed to work without needing to explicitly sending a MOUSE_EXITED to the previous button before sending MOUSE_ENTERED to the new. I'm unclear why this is so - I was half-expecting both buttons to acquire the roll-over state, and they didn't.
    Also, I had assumed that having taken care of this, I should forward MOUSE_MOVED events occurring within the confines of a cell's area to the button verbatim, but this seems to instantly cancel out any roll-over (visually the button would briefly flash a roll-over appearance as the pointer moved into its cell bounds). Why might this be so?
    My last question is about the actual pressing of the button. I had hoped that forwarding MOUSE_CLICKED, MOUSE_PRESSED and MOUSE_RELEASED would cause the button to (a) acquire the button-pressed state, and (b) fire an action event to its action listeners. Neither of these things occur, and I don't understand why not.
    In summary, is interception and forwarding of events like this a viable technique for implementing table cell buttons? The various solutions that a Google trawl throws up all reproduce button-pressing mechanics in varying degrees, some just detecting a click and calling some user function, others manually manipulating the button model in the mouse handler etc. If possible I'd like to avoid this, and leave as much processing as possible to the button's native code.
    Thanks in advance for any suggestions received.
    Regards,
    A.

    try to look on this
    http://java.sun.com/docs/books/tutorial/uiswing/components/table.html#editrender

  • Can't add event on iCal via iCloud anymore

    Since i update my mac in 10.7.5, it's impossible for me to add an event into iCal it said "Le serveur a répondu « 500 » à l’opération CalDAVWriteEntityQueueableOperation."(yes, it's in french). When i try it on iCloud directly by using safari, it said that the server encounter an error.
    So, my event aren't synch anymore on my mac and phone, but my contact still are...
    anyone with a clue?
    Thanks by advence.

    You may have un-selected the default calendar in iCal.  Click on "Calendars" in the upper left, and see if any of your calendars are un-selected.  (Also, go into iCal preferences and under the General tab see what is your Default Calendar.  That's where new events are created.)

  • "New Event" constantly showing up

    So a bit of background.
    After my wife upgraded her macbook to Lion we have had a whole slew of issues. Apple has been awesome in fixing them for us or getting us the "next best" solution to a problem.
    However, there is one that has been persistent since she upgraded to Lion and this issue seems to be something that was apparently "supposed" to have been fixed in the 10.7.3 update. I am talking about "new event" showing up in iCal.
    Now my wife uses her Macbook Pro for her business and schedules clients months in advance only to have this issue rear its ugly head a few times a month (this month seems to have been the worst for some reason). I believe I have the issue narrowed down but I wanted to see what you guys thought.
    Here is her normal scenario:
    - My wife works in a salon with wireless internet (patrons use it and there are a few other stylists that do like she does)
    - She schedules all of her clients with notes on what will be done months in advance (normal clients come in every 4-6wks and will schedule 3 and 4 appointments out)
    - While she is not using the Macbook it sits on a shelf at her station, in sleep mode, which she will then promptly wake it up and start looking fo a new date for the next appointment (I would get this takes about a minute with back and forth with the customer)
    - She schedules the customer one, if not two or three, appointments out and then proceed to go ring the customer up at the main desk
    - Many times the laptop just sits there and stays on while she does this and then moves on to her next waiting client (believe me, two degrees in business management and IT and my wife still makes more money than I do, DO NOT make fun of these people that are passionate about their work )
    - Just about every night she connects her laptop to her WD Passport (for Mac) to do the incremental backup
    This is her normal scenario however as she reviews her upcoming day that evening (gives me a better idea of when she will be home so I can clean house, play with dogs, work on my Cruiser, play video games, etc) she will see the fabled "New Event" sitting in her days work.
    Now this "New Event" is default set for 1hr of time and does not have any notes (my wife emails confirmations to her clients so the email feature from the calendar is sent out) and she has no idea whether she has someone coming in for a full weave (a 2 to 3hr job) or just a trim (30 minutes). We have tried to replicate this issue at home on our wireless network (Airport Extreme) and we get nothing.
    What I am thinking is that the internet, at least once a week, goes down at her salon and what is happening is when she is connecting to the network after a wake-up that the system is then attempting to connect to the internet and the iCal servers (she uses iCloud to back up all this information and see across the internet and our iPhones). When this happens there may be a "hiccup" in the connect and so when she types the information it has yet to syc with iCloud (her computer is set to primary house for main copy). When this happens and the system finally DOES connect it is some time later and it is then trying to sync everything and these "new items" that she has just entered become "new events."
    Am I logical in my thinking of this?
    Our main concern is that she does not know what these "new events" are so she cannot plan her next client accordingly, let alone send them their week-of confirmation email.
    - Do you guys think that not putting her computer to sleep (buying a secondary wall adapter for the salon) so that it is always connected to the internet a remedy?
    - Could this be an issue with the salon's internet having "hiccups" and should we look at investing in our own personal hotspot?
    - Is there a chance that we could possibly set the "iCloud" sync to only happen at a predetermined time (i.e. 11pm at night when we know she will be home and connected to our home network)?
    Not quite sure how to proceed here.

    Still have not been able to find a resolution to this issue. My wife is down to one remaining "new event" item in her calendar so we are hoping that the last fix that came through had taken care of whatever the issue was.
    However, she did say the other day while scheduling a client she did notice that they system began to sync with iClound while she was entering information and the event suddenly changed to the dreaded "new event". She caught it this time so she was able to adjust the information but I believe this may be solidification to the fact that if you are entering something WHILE your system is attempting to sync with iCloud that it will be overwritten and come up as a new event. I have yet to fully test this but it seems to be a very situational type of issue.
    She has not taken to heart that this may just be something she will have to live with and will need to be more aware of what is going on. Unfortunately, I have not had a chance to see if there is a way to "schedule" when you want iCloud to sync with your devices so that it is more of a "manual push" vs. an automated one.

  • Creating a book: view all photos by events

    When building a movie, you click on the camera icon and access all your photos in iPhoto, by event, album, whatever.
    Why can't you see them that way when building a book in iPhoto?
    The dropdown for photos in your build window not only doesn't show ALL your photos, it is really buggy about what it shows.
    It offers All Photos in Project, Placed Photos in Project, Unplaced Photos in Project, Last Import, Last 12 Months, Flagged, and THEN randomly lists ONE event... and even when you click on that event, it doesn't always pull THOSE pix. So, then I started trying to TRICK it to show what I needed. VERY annoying.
    And, since the iMovie program already has that set up, WHY can't it be that way in iPhoto.
    The presumption seems to be that, if you are building a book in iPhoto that you've already identified all the pix you want and have created a separate folder or something. But, sometimes the book might be a representation of say, 20 years of marriage, or something like that, and you want to be able to peruse all your event folders...
    PLEASE can this be considered?
    I am going to post this directly to Apple too, but thought I'd vent here.

    I may not have been clear in my description.
    When building a book, the bottom right corner of the screen shows icons for Add Page, Layout, Options, and Photos. When you click on photos, the ones that are available are as listed in my previous post (All Photos in Project, Placed Photos in Project, Unplaced Photos in Project, Last Import, Last 12 Months, Flagged, and one randomly selected event), but it's not a list of events, albums, etc, like it is in iMovie.
    In addition, as noted previously, the actual images that appear when I select that randomly selected event aren't always the ones from that event. That appears to be a bug.
    So, the question I posed isn't about how to view photos in the main iPhoto module, but in the BOOK module.
    Does that make sense?

Maybe you are looking for

  • Excel 2010 "Open" dialog box slow over DFS share

    Hi everyone, We're having some issues with clients using Windows XP and Office 2010. We have recently migrated from some Novell OES file server to a Win 2008R2 file server with DFS. When the users try to open any file from this new FS directly from E

  • Unable to install adobe flashplayer on mac 10.9.2

    Hi I recently upgraded to 10.9.2 and I am unable to install Adobe Flashplayer on Safari.  I've done an uninstall and downloaded and tried to reinstall but it hangs a little more than halfway.  All I get is an error message saying there's an error - n

  • Older versions of Ipod for Windows

    IN looking at my add/remove menu in windows, I have eight versions of "Ipod for Windows" with various dates. Is it safe to uninstall the older versions?

  • Want to personalize a page using OA framework

    How to personalize a page using OA framework? How can I do the following? 1. How to add one more criteria in a drop down in a page and to run the query when we select that in the drop down? 2. How to change the oracle bill management logo in the top

  • 30EA1--Database Diff not working even after changing Tools Preferences

    Trying to use Database Diff but even after changing Tools > Preferences > Database > Licensing, I still get the error message saying I have to make changes to the Licensing check box. Anyone have a workaround or experience the same problem?