JDev hangs after click on event-tab in MW

Hi all,
I have problem with definition an descriptor-event in MW in JDev 10.1.2:
When I define "tab" event on descriptor (none method selected yet), save and close JDev, after opening JDev and click on this "tab" event JDev hangs.
Only Ctrl+Alt+Del works.
Any idea?
Thanks.
Jara

I am having a similar problem using the mapping workbench inside JDev 10.1.2.18.38
In one of my pojo classes I extend DescriptorEventAdapter and implement the following method.
public void postUpdate(DescriptorEvent event) {
Rebuild, refresh, click on the event tab in the mapping workbench and it hangs. Have to Ctrl+Alt+Del.

Similar Messages

  • 2.1.1 through 3.0EA - SQLDeveloper hangs after clicking on SQL tab of view

    Hi,
    the following happens consistently both on SQL Developer 2.1.1.64 and 3.0.2.83 on Mac OS X and Java 1.6.0_22-b04-307 (64bit).
    1. I open a connection to an XE database
    2. I navigate to the Views node
    3. I select a view
    4. I click on the SQL sub-tab to display the DDL statement for the view
    5. As soon as i click on the tab to return to the SQL scratchpad for the open connection, the color wheel appears and SQL developer hangs and one must "force quit" the application.
    As i said, this happens on both versions of SQL Developer
    Flavio
    http://oraclequirks.blogspot.com

    Then it is clearly an issue with the TabSet component...
    A couple of related postings (but not for creator) i ran into seemed to have been solved by setting jdk to 1.4.2 (and sometimes it is the ant version that seems to have been the problem):
    http://swforum.sun.com/jive/thread.jspa?threadID=103854&messageID=354068
    Can u try setting the server's jdk to 1.4.2 and see if the problem goes away? (btw, the error happens at server and not in the ide, right?)

  • DBCA hangs after clicking finish

    Hi can anyone help me please.
    dbca hange after clicking finish.oracle 10.2.0.1
    dbca log below
    [TaskScheduler timer] [18:3:23:529] [SQLEngine.initialize:-3] Starting Reader Thread...
    [TaskScheduler timer] [18:3:23:550] [SQLEngine.initialize:-3] Waiting for m_bReaderStarted to be true
    [TaskScheduler timer] [18:3:23:579] [SQLEngine.reInitialize:-3] Reinitializing SQLEngine...
    [TaskScheduler timer] [18:3:23:591] [SQLEngine.initialize:-3] Execing SQLPLUS/SVRMGR process...
    [AWT-EventQueue-0] [18:18:33:179] [StoragePage.validate:925] StoragePage: In validate function
    [AWT-EventQueue-0] [18:18:33:186] [Verifier.validateTemplate:1629] StorageType == 0
    [AWT-EventQueue-0] [18:18:34:760] [DBCAWizard.onFinish:1139] m_bFinishClicked: true
    [AWT-EventQueue-0] [18:18:36:271] [DBCAWizard.onFinish:1139] m_bFinishClicked: true
    [AWT-EventQueue-0] [18:19:40:238] [DBCAWizard.onFinish:1139] m_bFinishClicked: true
    [AWT-EventQueue-0] [18:21:55:717] [DBCAWizard.onFinish:1139] m_bFinishClicked: true
    please help

    Hi;
    Please check thread
    Re: dbua - finish button hangs
    Regard
    Helios

  • SAP BW 640-----SAINT HANGS AFTER CLICKING START

    Hi Everybody,
    We are on stack 9 on the source BW 640.  I am trying  to take the stack to 22 as a prerequirement for unicode conversion, and the upgrade to BI 7.0.
    In this regard there is a dependency on PI_BASIS to be on 2005, and BI_CONT to be on 353.  Currently we are on PI_BASIS 2004, and BI_CONT 352 on the source.
    We have extracted the appropriate installation packages for the above components.  When we run SAINT to install these components, and click START it just hangs.  It does not take me to the  next window.
    At least SAINT used to take me to the next window after clicking start, but one change I did was to update the kernel to 221, saint was still hanging after clicking start, again updated the kernel to 274 which is the latest release for NW 2004.  I also have the latest version of R3Trans, and tp.  SAINT still hangs after clicking start button.  No  logs are getting generated in \usr\sap\trans\log.  No files are getting generated in \usr\sap\trans\tmp. 
    I restored the database to what it was before we initiated the SAINT process.  Still SAINT hangs after clicking start button.
    In STMS-overviewu2014system-sap system-all the checks work fine(connection, transport directory, transport tool).  Likewise in SAINT-utilities-check-transport tool----every thing looks good.
    Why is SAINT hanging after clicking start button, can we downgrade the kernel to what it was before (level 155). 
    Any input is greatly appreciated.
    Thank you.
    Ramesh Srinivasan.

    Thank you so very,very much.  We are currently using a 640 gui.  We tested with 710 gui and saint after clicking start does not hang.
    So we are assuming that 710 gui will solve the problem.
    Thanks once again.  A very timely help.  You bet I'll touch base with you if I run into issues.
    RS

  • Open a new window after clicking on a tab(workset)

    hi,
    i am creating 1 application in EP using PDK. m using jspdynpage for tht.
    what i want is when user clicks on a certain workset tab, a new window shud get open without taskbar,statusbar and without any toolbar (just like the window which gets opened when u click on preview button to see an iview)..... i know this is possible only thru javascript ..... but i didnt get any success....
    right now it is opening in the same page .... plz help me out ....
    Message was edited by: Nilesh Patil - Gayakwad

    hi Christian
    For this you need to do .......
    in the table tag populate this event
    <b>onRowSelection = "<OnSelect>"</b> this event.
    Now use a flag, let it be SHOW_POPUP.
    Now in the event handling capture the selection event of the table.
    IF EVENT->EVENT_NAME = 'tableView' AND
    EVENT->EVENT_SERVER_NAME = 'onSelect'.
    TV ?= CL_HTMLB_MANAGER=>GET_DATA( REQUEST = REQUEST
    NAME = 'tableView'
    ID = '<tableID' ).
    IF TV IS NOT INITIAL.
    TABLE_EVENT = TV->DATA.
    ROWINDEX = TABLE_EVENT->ROW_INDEX.
    READ TABLE <Table Name> INDEX ROWINDEX into WA.
    Key = WA-<VALUE>.
    clear SHOW_POPUP.
    IF Key IS NOT INITIAL.
    SHOW_POPUP = 'X'.
    ENDIF.
    ENDIF.
    ENDIF.
    Now in the LayOut Page Write This Script In Between Form Tag in the begning only.
    <%
    if SHOW_POPUP EQ 'X'.
    %>
    <script>
    function call_help(name)
    var result = window.open(name,"helpWindow", "status=no, menubar=no width=730,height=550");
    result.moveTo(100,40);
    </script>
    <%
    endif.
    %>
    And in between <FORM> Tag Call This Function Like
    <script>
    call_help("<page Name.htm>?Key=<%= Key %>");
    </script>
    Do not use these code as u were using earlier
    onCellClick = "onCellClick"
    <htmlb:link id = "link"
    onClientClick = "return popitup('mat_move.do?key=11')">
    </htmlb:link>
    Do Remember to clear the SHOW_POPUP Flag on request of the page at each time.
    <b>What I am trying to do is , On click of the table control i will trigger a server event.
    i the server event i will set the flag SHOW_POPUP and navigate the data that is required on the popup window through navigate->setparameter().
    now when the layout will be refreshed it will check the SHOW_popup Flag. If it is set, it will define the javascript fuction, otherwise skip that code.</b>
    I think This will definitely help you , If you find any problem do revert back....

  • FireFox Hangs after I close multiple tabs

    When ever I close more than 7 tabs Firefox will hang for a good 20-30 seconds if I close 10+ it will hang till I end task.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check for problems with the sessionstore.js and sessionstore.bak files in the Firefox Profile Folder that store session data.
    Delete the sessionstore.js file and possible sessionstore-##.js files with a number and sessionstore.bak in the Firefox Profile Folder.
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    *http://kb.mozillazine.org/Multiple_profile_files_created

  • Z87-G45 hangs after clicking on OC Genie

    For starters, I'm not IT techie guru, just a noob.
    What happens is that after I click on the OC Genie button, the comp will hang as it boots up at the "STARTING WINDOWS" just before the 4 balls appear.
    I hv set my comp to "OPTIMAL MODE" F6.
    I used to have the Z77A-G43 & I just click on the OC Genie button & all was smooth.
    Wonder why am I facing this issue now.
    My setup
    Intel i7-4770k 3.5ghz 8mb LGA1150
    Z87-G45 Gaming mainboard
    Windows7 Home Premium 64k
    Corsair Vengeance 1600 16GB kit CL9 (2 x 8GB)
    MSI GTX760 Twin Frozr Gaming 2GB GDDR5 PCI-E OC
    Seasonic X-Series 750W Modular Gold PSU
    Samsung  840 PRO SSD series
    Appreciate if the experts here can help to guide me.
    Tks & much appreciated

    Quote from: Froggy Gremlin on 14-February-14, 13:45:50
    Did you uncheck Auto Restart so as to get the BSOD error code? That will tell what was needed to correct it.
    Yes sifu I did before I started the movie
    Quote from: Froggy Gremlin on 14-February-14, 13:45:50
    If the BIOS has the settting VDroop, set it to 100%. Also, enter the OC Section of the BIOS Sub Section 'CPU Features' and set all the power limits (w) to 255, Power Duration (s) to 60 or 128. Overspeed Protection set to disabled. Make sure EuP 2013 is disabled.
    Ah~~~so~~~~~~ ok I will do this
    Quote from: Bernhard on 14-February-14, 14:15:29
    If ever you want to inspect any crashes, then do the following:3. Click on the Technical detail link and you will see something that is similar to this:
    This will provide you with a host of information, including any error and BSOD codes which are needed to ascertain the cause of the crash.
    Trust this can assist you in finding the data of the crashes that you have experienced.
    Tks Bernhad for ur tips, now I go the reason for the crash
    Description
    The computer has rebooted from a bugcheck.  The bugcheck was: 0x00000124 (0x0000000000000000, 0xfffffa8010e32028, 0x00000000ba000000, 0x0000000052000402). A dump was saved in: C:\Windows\MEMORY.DMP. Report Id: 021414-4009-01.
    As I've mentioned in my initial post, I'm so noob at this I hv no idea wat the desc is talkin abt

  • System hang after clicking "Run" to launch "SBO_Welcome.hta"

    Hi,
    My client encounters a pop up window "Open File - Security Warning" upon logging into SAP.
    It is a message to run "SBO_Welcome.hta" which is located on "
    SERVER\B1_SHR\Help\EN".
    When the "Run" button is clicked to launch the above mentioned file, the system will hang.
    Also, the error below will be displayed when we force shut down the above pop up window from Task Manager.
    Error:[NCM Main].[Main] The RPC server is unavailable. (Exception from HRESULT:  0x8007068A)
    The above issue is encountered on a specific workstation only.
    Kindly suggest if anyone knows how to resolve this.
    Thank you.
    Yadana

    Hi,
    Bala is correct. this installation is corrupt. Uninstall and install with Full administrator rights and doesr the use profile have acess to the shared folders like B1_SHR, check for the firewall setting .
    Regards,
    Rakesh N

  • ESS MSS UWL Approval Step Hanging After Clicking Approve

    Working on ESS MSS implementation using UWL to approve work items.
    Approval task (TS17900101) is sending workitem to UWL, but when I click Approve it just hanging and gives me the processing circle forever.
    Binding from the workflow looks like this:
    'X' @0E\QAssign Value@ @9T\QGets data for...@ &BACK_BUTTON_VISIBLE&
    &FORM_STANDARD& @0E\QAssign Value@ @9T\QGets data for...@ &FORM&
    'APPROVEREQUEST' @0E\QAssign Value@ @9T\QGets data for...@ &FORM_SCENARIO_STAGE&
    'X' @0E\QAssign Value@ @9T\QGets data for...@ &SAVE_DRAFT_BUTTON_VISIBLE&
    'HRASRB' @0E\QAssign Value@ @9T\QGets data for...@ &PROCESSOR_ROLE&
    &NOTIFY_VIA_MAIL& @0E\QAssign Value@ @9T\QGets data for...@ &NOTIFY_VIA_MAIL&
    &BUSINESS_STATUS& @0E\QAssign Value@ @9T\QGets data for...@ &BUSINESS_STATUS&
    'X' @0E\QAssign Value@ @9T\QGets data for...@ &FORM.SUPPRESS_SAVE&
    '00000' @0E\QAssign Value@ @9T\QGets data for...@ &FORM.FORM_SCENARIO_VERSION&
    Binding to to the workflow as follows:
    &PROCSTATE& @9S\QReceives data from...@ @0D\QAssign Value@ &PROCSTATE&
    &WORKITEM_ID& @9S\QReceives data from...@ @0D\QAssign Value@ &STEP_OBJECT.GUID&
    Program exit: CL_HRASR00_POBJ_WF_EXIT is in place.
    Can I please have assistance getting the Approval button to process the Approval?

    Resolved - There was a role issue - testing the process with another used account worked. 
    Looks like it was set up correctly.

  • After clicking for new tab, the tab does not open like it used to open. Pls guide on this.

    Dear sir / Madam,
    I am new to Mozilla Firefox. Have been using it since over a month. It was running fantastic and I am very much satisfied. But a problem started recently.
    Problem Faced: New TAB has stopped opening in the window. Please guide on this.

    Try uninstalling the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and the current version of Firefox.

  • After clicking on firefox tab..i am not getting the option 'TOOLS'...my operating system is Window7

    I am not able to locate the TOOLS option in through the firefox tab of top right hand corner....I have some settings to change...
    I am using Window7 as my operating system and FIREFOX4

    To call up the Tools menu, press F10 or the Alt key to display the menu bar temporarily. (If there's a way to do it though the orange button, I haven't found it.)

  • After clicking on an open tab, how to make the focus automatically go to the body of page?

    After clicking on an open tab, how to make the focus automatically go to the body of page?
    Right now, clicking in an open tab and using arrow keys now moves through the open tabs. I liked the old versions where right after clicking in a tab you could directly go to navigate the page with the arrow keys.
    Is there a something I can change in about:config to change this behavior?
    Thanks in advanced.

    Firefox should still set the focus the the browser area if you click a tab.<br />
    Only with very old browser versions you could set the focus to a tab by clicking a tab.
    This behavior is likely caused by an extension.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Need help troubleshooting problem: Flash hangs after using Firefox (on mac) back button - works fine on all other browsers

    to reproduce:
    1. click on a flash button that takes you to a new html page
    2. hit the back button on browser
    3. flash button hangs
    I've included a test page as an example below.
    the bug is specific to having used the flash button and is specific to the Mac version of firefox. The PC version seems to work fine.

    What is the address of the first page? The only thing that link you posted in your information was the page that says, "now hit the back button and see if flash hangs after clicking on the flash button".

  • Opening iPhoto 11- Event Tab defaults to "middle" of range.

    This is a rather esoteric question about the Events tab that I hope I am capable of explaining.
    When first starting iPhoto '11, then clicking the Events tab, the window opens with you somewhere in the middle of the entire events timeline instead of towards the bottom where your most recent events are. It was a UI preference I liked in earlier versions of iPhoto. You start iPhoto, click Events, and you're automatically at the "bottom" of the scroll; i.e. at your most recent events. I've not found a way for iPhoto '11 to default the Event opening window to the most recent events, its always somewhere in the "middle", which requires me to manually scroll down to the bottom.
    Does anyone know how to fix this so my Events tab always opens near the most recent events?

    If the Apple iPhoto development team are listening
    They aren't. This forum is a space for Users to talk to other Users about technical issues. Apple don't promise to read anything here. It's all explained in the Terms of Use.
    iPhoto menu -> Provide iPhoto Feedback is the route to the Developers.
    Regards
    TD

  • How to restrict closing the tab in tabpane after clicking the close button.

    Hi all,
    Greetings.
    I am implementing a TabPane with different 'user form's in each Tab. And all the tabs are *'closable'*.
    If the user enters some data in the form, and tries to close the tab without saving the form , i need to show a confirm dialogue box that the user should go ahead or not.
    If he clicks cancel, the tab should not close.
    But currently i am searching for a method something like 'setOnClosing' method for tab.
    There is only tab.setOnClosed() method, which will call the event after closing the tab.
    Some thing the code is like below.
    tab.setOnClosed(new EventHandler<javafx.event.Event>() {
         @Override
         public void handle(javafx.event.Event e) {
            // TODO: Actions to be taken on close of tab.
               // Logic to show the confirm dialouge box.
               //  if YES - close the tab
               //  if NO - don't close the tab.
    });But my logic is executing after closing the tab. (ofcourse, as it is on setOnClosed() ;) ). Can anyone tell me how to get control before closing the tab ?
    Thanks in Advance.
    Sai Pradeep Dandem.

    Hi All,
    Finally I managed to get the handler before closing the tab pane. :)
    Though this is a bit weird work around, my requirement is fulfilled at-least.
    Let me explain the workaround I did.
    Tab tab = new Tab(title);
    tab.setClosable(false); // This line of code  makes sure that the “default” close button of the tab is not appeared.
    setClosableButton(tab);Then I am setting the custom close button as a graphic to the label ( Title of the tab), and aligning that graphic position to make an effect, that it is rendered exactly at the position of “Close” button.
    From this Custom Close Button, I am handling the events and if confirmed I am closing the tab manually, by calling the closeTab() method in the TabPaneBehavior class.
    Below is the code that is implemented as per the above logic.
          * Method to set the custom Closable Button to the given tab.
          * @param tab - Tab
         private void setClosableButton(final Tab tab,final boolean closeCheck){
              final StackPane closeBtn = new StackPane(){
                   @Override
                   protected void layoutChildren() {
                        super.layoutChildren();
                        // Setting the orientation of graphic(button) to the right side.
                        ((Label)((LabelSkin)getParent()).getSkinnable()).setStyle("-fx-content-display:right;");
              closeBtn.getStyleClass().setAll(new String[] { "tab-close-button" });
              closeBtn.setStyle("-fx-cursor:hand;");
              closeBtn.setPadding(new Insets(0,7,0,7));
              closeBtn.visibleProperty().bind(tab.selectedProperty());
              final EventHandler<ActionEvent> closeEvent = new EventHandler<ActionEvent>() {
                   @Override
                   public void handle(ActionEvent paramT) {
                        ((TabPaneSkin)TabPaneComponent.this.getSkin()).getBehavior().closeTab(tab);
              // Handler for the close button.
              closeBtn.setOnMouseReleased(new EventHandler<MouseEvent>() {
                   @Override
                   public void handle(MouseEvent paramT) {
                        // My logic to handle the close event or not.
                                    if( logic satisfied){
                             closeEvent.handle(null);
                                    }else{
                                           // Dont close the tab.
              // Showing the close button if the tab is selected.
              tab.selectedProperty().addListener(new ChangeListener<Boolean>() {
                   @Override
                   public void changed(ObservableValue<? extends Boolean> paramObservableValue,Boolean paramT1, Boolean isSelected) {
                        if(isSelected){
                             tab.setGraphic(closeBtn);
                        }else{
                             tab.setGraphic(null);
         }There are some drawbacks in the above code. In practice, it is suggested not to use the classes (*LabelSkin* & TabPaneSkin) that are in com.sun.javafx package. But I couldn’t get a better solution other than using those classes. And another one is I could'nt set the actual graphic for tab, as i am already using that graphic property to show the close button.
    I would like to thank Narayan, for giving some inputs which has helped me to think and get the above solution. :)

Maybe you are looking for