Associations and Links does not load when creating Business Components

Hi guys,
I am having a problem when I create my business components from table. Let's say that I start a new fusion web application. I then create my business components, enter the proper database connection settings. After everything is done, I am only getting my entities and my views, without any associations and links.
The thing is that it worked the first time. Everything loaded as it should. I then asked a collegue of mine to try on his computer. Surprise, everything loads perfectly just like it did the first time I did it.
I then tried on one of my linux virtual machine, via the same PC that I am having the problem. Again, the same problem, even if this is another JDeveloper instance (vm).
I have read the thread 2187263 that mentions to re-create the DB connection. Again, it is not working.
Associations and View Links missing in JDeveloper 11.1.1.3 and 11.1.1.4
I saw this under the "Messages - Log" tab in JDeveloper :
Aug 7, 2012 11:09:06 AM oracle.jdbc.driver
SEVERE: 3F794B56 Throwing SQLException: 3
Aug 7, 2012 11:09:06 AM oracle.jdbc.driver
SEVERE: 6C9DD8BE Throwing SQLException: ORA-00936: missing expression
I am using JDeveloper 11.1.1.6.
Any help would do, since I do not want to uninstall JDeveloper and reinstall it again and again...

Yes. In SQL Developer, when I click "Modify" on one of my tables, and then on "Foreign Keys", I can see them all.
Like I said, it worked on a different workstation, and it worked before on my computer.

Similar Messages

  • Embedded m4v, avi and mov did not load, when published to server

    Hi there,
    today I created a new webpage, for the first time with iWeb. It work perfect on my mac including embedded movies. When I published it to my server, all pages loaded fine, but the movies did not. They started a bit and then everything ended in endless loading sessions. With ongoing "reloading" with the browser, it did improve, but did not work in one go.
    So I had to upload it to youtube, and embedded it via the youtube widget. This is not the way I wanted it, but I found now solution, why it did not load?
    Any idea what the reason is? Possibly wrong css lines?
    Thanks for your help guys.
    Karl

    What's the URL of your site? Visit your site in Safari, use the Window->Activity option and see what files for your site are not getting uploaded.
    There are ways to embed a movie other than dragging it onto the iWeb page. This method, Opening Item in New Specially Sized Window, has you uploading the file just once manually to your server and linking to it there. It does not load with the page but only after the Play button is selected.
    There is another way, Adding QT Movies via the Export for Web Option from QT Player, which is more difficult but gives a different appearance.
    What ftp client do you use?
    OT

  • Ecore diagram editor does not load when I click the (aird) file

    When I click on an aird file , which I created for the first time to graphically edit an ecore diagram, the diagram editor does not load, but instead, Eclipse opens the aird file as xml in a text editor! Why this is happening? and how can I solve this? any thoughts?
    I am using Eclipse 4.4.2. in mac.
    I updated the content, with the hope to get a reply.

    Hi, sorry for the lag.
    This might happen depending on the perspective you are using, please try with the "Modeling" perspective.
    You should be able to load the .aird using right-click=>open and then see the corresponding diagrams as childs of the .aird file.

  • ADF Tabe's Pagination link does not work when embedded in iframe

    Hi experts,
    When I embedded ADF table(with JSF) in iframe like below code, the pagination link does not work. Is it a known bug?
    <iframe width=100% height=500 src="http://rst-act3ct2.us.oracle.com:8888/test/faces/modify.jspx" frameborder="0" scrolling="no"></iframe>
    When I use <object> instead of <iframe>, the pagination works again. However, <object> could not be used in my project.
    Any idea on it?
    Thank you in advance.
    Regards,
    Tony

    Hi,
    if you are on JDeveloper 10.1.3 then chances are that the problem can be pointed back to the mismatch of HTML and JavaServer Faces. At least you should make sure you work with a recent JDeveloper 10.1.3 release
    Frank

  • ITunes does not load when connecting iPod Nano (4th Gen)

    I have my iTunes settings 'disable automatic syncing for iphones and ipods' unchecked, and in my iPod settings i have 'open iTunes when connected' option checked, and iTunes still does not load. How do I solve this?

    If you have itunes open and then connect the nano, what happens?

  • I am not able to access my Ipad as it says that icloud has not been backed up and it does not accept when i click ok

    i am not able access my ipad as it says that the icloud has not been backed up. it also does not accept when i click ok.

    Try a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider if it appears), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    When it's rebooted you can force a backup via Settings > iCloud

  • The last tab, furthest to the right, does not load when restarting FireFox.

    Whenever I restart firefox, the last tab I had opened does not load. The matter of restarting can be any kind: new add on installed, new firefox update, restarting the browser manually, or restarting my computer so that firefox is automatically closed. It's always the same problem. The last tab will be displayed as my New Tab page, which is blank. I can have 3 tabs open, and the first 2 will load just fine, but the last doesn't. This means that if I restart for an add-on or something, I need to go back into my history to pull up this last tab, which is inconvenient. And it may not have been my most recent tab. I may open this last tab, go back to an earlier tab and surf the web on that, building my history, and then restart firefox for whatever reason. In those instances, I need to open up the history window and dig for that last tab from memory.

    Alright. It appears to be an addon called Load Tabs Progressively. I'll just leave that disabled.

  • Forms applet does not load when request forwarded from custom servlet

    I have an existing forms app that I wish to call from a newly-developed servlet. The servlet determines which form to call and then forwards the request to the forms servlet using RequestDispatcher.forward().
    The request is forwarded correctly but when it is done all I see is a blank browser (IE7) window. When I View Source I see all the correct HTML code (from basejpi.htm) but it seems my browser does not attempt to load the forms applet. No messages are displayed in the Java Console. This is the same HTML that comes back if I run the forms app directly, e.g. click a link that goes straight to the forms servlet URL, only in that case the forms app starts up fine.
    Anyone know why this does not work?

    Figured out what is going on:
    In basejpi.htm there is "<SCRIPT LANGUAGE=JavaScript SRC=java/forms_ie.js>" that creates an OBJECT tag to load the forms applet. I believe since the context of my custom servlet is different than that of the forms servlet, forms_ie.js is not found when the request is forwarded from my servlet.
    One question answered raises another. There is also an OBJECT tag inside a NOSCRIPT tag for machines where scripting has been disabled:
    <!-- Forms applet definition (start) -->
    <NOSCRIPT>
    <OBJECT name=FormsApplet
    type="application/x-java-applet"
    ...>
    </NOSCRIPT>
    <SCRIPT LANGUAGE="JavaScript" SRC="java/forms_ie.js"></SCRIPT>
    My thinking is to remove the NOSCRIPT tag, and also the SCRIPT tag mentioned above, so all machines will simply see the OBJECT tag, like so:
    <!-- Forms applet definition (start) -->
    <OBJECT name=FormsApplet
    type="application/x-java-applet"
    ...>
    This makes me wonder why the SCRIPT option is there to begin with. Anyone see a downside to this approach?
    Kevin

  • What to do if wifi keeps disconnecting and safari does not load?

    My wifi on my Mac desktop keeps disconnecting. When the internet is connected, Safari often "cannot connect to server" or "safari cannot load page" or page "failed to load". The wifi works on my iPhone and iPad, so I'm not sure why it doesn't work on the desktop. Is there anything simple I can do to fix this? Thank you.

    Please test after taking each of the following steps that you haven't already tried. Stop when the problem is resolved. Back up all data before making any changes.
    Step 1
    Take the applicable steps in this support article. The Wireless Diagnostics program generates a large file of information about your system, which would be used by Apple Engineering in case of a support incident. Don't post the contents here.
    Be sure to test on more than one Wi-Fi network, if at all possible. A desktop computer can be tested with a mobile hotspot, such as the hotspot created by a cell phone. If the problem only exists on one network, then the access point of that network should be the focus of your attention, not the computer.
    Step 2
    Disconnect all USB 3 devices. If you don't know which are USB 3, disconnect all USB devices except keyboard and mouse.
    Step 3
    If you're not using a wireless keyboard or trackpad, disable Bluetooth by selecting Turn Bluetooth Off from the menu with the Bluetooth icon. If you don't have that menu, open the Bluetooth preference pane in System Preferences and check the box marked Show Bluetooth in menu bar. Test. If you find that Wi-Fi works better with Bluetooth disabled, you should use the 5 GHz Wi-Fi band. Your router may not support it; in that case, you need a new router.
    Step 4
    Open the Energy Saver pane in System Preferences and unlock the settings, if necessary. Select the Power Adapter  tab, if there is one. Uncheck the box marked
              Wake for Wi-Fi network access
    if it's checked.
    Step 5
    Open the Network pane in System Preferences and make a note of your settings in the Wi-Fi service. It may be helpful to take screenshots of the various tabs in the preference pane. If the preference pane is locked, unlock it by clicking the padlock icon and entering your administrator password. Delete Wi-Fi from the service list on the left by selecting it and clicking the minus-sign button at the bottom. Then recreate the service by clicking the plus-sign button and following the prompts.
    Step 6
    In the Wi-Fi settings, select
              Advanced... ▹ TCP/IP ▹ Configure IPv6: Link-local only
    Click OK and then Apply.
    Step 7
    Reset the System Management Controller.
    Step 8
    Reset the PRAM.
    Step 9
    Launch the Keychain Access application. Search for and delete all AirPort network password items that refer to the network. Make a note of the password first. Turn Wi-Fi off and then back on. You'll be prompted for the password when you reconnect. Save it in the keychain.
    Step 10
    Make a "Genius" appointment at an Apple Store, or go to another authorized service center.

  • Table does not exist when creating FK Constraint across schemas

    Hi all,
    This will probably boil down to a permissions issue since I'm sketchy on the various levels....
    I'm testing a conversion to Oracle from our legacy system. There are 4 schemas which I've created and each of those schema users have been granted DBA roles.
    After creating a number of tables I wrote the SQL to create the FK Constraints. Most of them went in, but the ones crossing schemas don't. Logged in as SYS, I can do a select from each table, I can even JOIN the two in the SELECT. However when I try creating the constraint it give me a: ORA-00942: table or view does not exist
    ALTER TABLE USERA.TABLEA ADD FOREIGN KEY (COLA) REFERENCES USERB.TABLEB (COLA) ON DELETE CASCADE
    Again, I have scads of commands that went in correctly so this must be a permissions type thing. I'm the only one logged into the database since it's my own test system. This is 10g BTW.
    If you have any suggestions as what to look into, please explain how to actually perform the checks since I'm still learning how to get around.
    Thanks very much!

    To bulk grant, you can use dynamic SQL; somthing like this:
    <BR><BR>
    SQL> declare
      2    l_grantor VARCHAR2(30) := 'USERA';
      3    l_grantee VARCHAR2(30) := 'USERB';
      4  begin
      5    for table_rec in (select owner,table_name from all_tables where OWNER=l_grantor) loop
      6      execute immediate 'GRANT REFERENCES ON '||table_rec.OWNER||'.'||table_rec.TABLE_NAME||' TO '||l_grantee;
      7    end loop;
      8  end;
      9  /

  • The first tab will not close, and often does not load all of a page.

    When I open firefox, the first tab always has 'search bookmarks and history' in the address bar, instead of the url of my homepage, and it will not close.

    While trying to figure out a solution, I removed my themes and I closed the tabs I could, then clicked on the new tab button, doing so changed my original tab into an (Untitled) tab and created a new (Untitled) tab. I then found I couldn't close either tab, I clicked on new tab again, got a third (Untitled) tab, which again I couldn't close. I then closed Firefox choosing not to save. This appears to have fixed the problem; however I do not know which of the above action(s) resolved it.

  • 'table does not exist' when creating generic datasource

    I went to SBIW->Business Content DataSources->Transfer Business Content DataSources-chose "content delta". it said 'comparison bct <-> cust version ' then it counted thru several objects for a few minutes and finished with no warnings.
    then I selected each datasource under co-om-cca and activated those with no problems.
    problem: now when i try to create came generic datasource using co-om-cca application component i get mssg when saving 'the specified table does not exist'...so now it isn't even letting me create a datasource at all using a standard application component either.
    I have been having many problems with creating datasources and using application components and this is why I did the first paragraph because I don't know what else to try.
    Please help, thanks.

    I have answered my own question.  I wasn't entering the view/table and it was my own complete oversight.

  • QuickTime Content Does Not Load When Using Safari

    For the past week or so, I've noticed that when using Safari, any QuickTime content fails to display, but instead, the QuickTime logo is displayed with a question mark in the center. That would indicate to me that Safari is not seeing that QuickTime is installed, but of course, it is. I tried actually reinstalling QuickTime, but that did not resolve the issue.
    Again, this has only started in the last week or so. I'm new to the MAC world, so my troubleshooting skills are more limited with OSX. I also have Firefox installed, and QuickTime content opens as normal when using Firefox.
    Any help would be appreciated. Thanks.
    iMac (Intel)   Mac OS X (10.4.7)  

    I have had the same problem for some time now. As well as this problem, some QT movies load into QT but the sound does not play.
    This all started when I loaded various other players such as VLC to run Windows Media Player stuff before Flip 4 Mac became universal. I have tried dumping prefs, turning off plug ins and a dozen other things between QT and Safari, including resetting Safarai and losing all my log ins etc.
    Nothing runs on say www.youtube.com We just get the big Q with a question mark over it. The keynote address released yesterday does not play with sound.
    I suggest we all look back and list what we did/installed just before the problem started and then we can compare and look for a common element.
    As to checking "block pop ups" I never had that on to begin with.
    We need to see if the problem is in Safari or Quicktime - or both. There are too many variables at the moment to narrow down the problem.
    Our other iMac which is identical does NOT have the problem - because I didn't try to load any other software on to it.

  • "Buy" button does not appear when creating a ringtone

    When I create a ringtone, the only buttons I have are to change the looping time, the button to preview and I can see the first two letters of the cancel button. The Buy button does not show up. It is like it is off my screen but I don't have a slider to get over there.
    Anybody else have this problem?

    Open Displays in the Control Panel and try increasing the number of pixels displayed on the monitor.
    (27345)

  • Installed Microsoft updates yesterday & today I click on Firefox and it does not load. If I go to download a new Firefox, it tells me to close existing Firefox before the download. I can't see Firefox open anywhere.

    Firefox will not load and I cannot download a new Firefox because it says I have to close the existing one. I cannot find the existing one open anywhere. Also, when I went to download I got a warning that the new Firefox might damage my computer.

    The procedures in the [[Firefox will not start]] article may help, in particular it sounds like this error [[Firefox is already running but is not responding]]

Maybe you are looking for

  • Cannot view Master Data Services Models with Excel Add-In, using MSSQServer 2014 Trial and Excel 2010 (non-trial)

    I'm using using MSSQServer 2014 Trial with Master Data Services installed. I have connected to the MDS server with the Excel 2010 MDS Add-In.  Models are not listed in the Add-In's Explorer browser. When I open the MDS server with IE, no models are l

  • IPod serial number

    How do I find the serial number of the last iPod connected to my computer?In iTunes 6,I could do it from the iPod tab in the Preference windows.In iTunes 7,there is no iPod tab.I lost my iPod and I need that serial number.

  • Trouble opening PSD in CS5

    Hi, I've recently made some frame by frame animations in Photoshop CS5, and having saved and quit, I'm no longer able to open the files. I created them on my friend's computer, and cannot open them on his computer or mine. We both have CS5. I've trie

  • Cube CD-RW drive can't read CD-Rs

    I have a Cube that has an Apple-shipped CD-RW drive, but it can't read the discs it burns. It creates discs fine and those discs can be read in other computers fine. But it won't read CD-Rs, either burnt from Cube or other computers. Is my drive dyin

  • When i try to open itunes in my macbook pro say error13001

    I have a macbook pro version os x 10.9.1 and when y try to open i tunes say error 13001 please help me