Opening a tblxmi file in table editor

Hi,
I have an existing tblxmi file and I'm viewing it in WSAD 5.1. I wish to modify it to add two more columns but when I try to open it in table editor it says the file cannot be edited and cannot be opened in the java output folder. It is located under the ejbmodule\META-INF\SCHEMA folder.
Can anyone help please?
Regards,
Aayush

Graphics card is the problem.
Trying to update drivers now.
Thanks for your help
john

Similar Messages

  • Usung a href Tag, open the linked file in associated editor

    Hi,
    I have a functionality where a file location would be fetched from the database, shown to the user as a hyperlink. On clicking the hyperlink the file should open in its associated editor i.e if it is a .doc it should open in word, if it is an xls it should open in Excel.
    I tried different ways but its opening in the IE browser itself ,Is there a way that it opens up in its associated editor.
    Infact even if it opens in browser its ok, but then if a user modifies the xls and tries to "SAve AS" the pop up does not appears to save the file.How can i get the pop up so that user can save the modified file in it local computer.

    Hi ,
    Thanks a lot. What i have done is
    File excelFile = new File("\full file name");
    ServletOutputStream out = res.getOutputStream ();
    // Set the output data's mime type
    //res.setContentType( "application/text" ); // MIME type for pdf doc
    res.setContentType( "application/vnd.ms-excel");
    // create an input stream from fileURL
    String fileURL =
    full file name";
    // Content-disposition header - don't open in browser and
    // set the "Save As..." filename.
    // *There is reportedly a bug in IE4.0 which ignores this...
    res.setHeader("Content-disposition",
    "attachment; filename=\"file name\"");
    // PROXY_HOST and PROXY_PORT should be your proxy host and port
    // that will let you go through the firewall without authentication.
    // Otherwise set the system properties and use URLConnection.getInputStream().
    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    try {
    // Use Buffered Stream for reading/writing.
    bis = new BufferedInputStream(new FileInputStream(excelFile));
    bos = new BufferedOutputStream(out);
    byte[] buff = new byte[2048];
    int bytesRead;
    // Simple read/write loop.
    while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
    bos.write(buff, 0, bytesRead);
    } catch(final Exception e) {
    System.out.println ( "Exception" );
    throw e;
    } finally {
    if (bis != null)
    bis.close();
    if (bos != null)
    bos.close();
    This is the code for excel, and its doing what i needed.
    I havent tested it for other formats hopefully it would work. :)

  • Jdev Extension: How does one open up a file in the editor?

    I would like to be able to open a file(Java file) and highlight a certain line on it. Any help would be much appreciated.

    Actually this is what I learned from poking around in the API: There is a util class, oracle.ide.editor.EditorUtil. Various functions in this class allow you to open a file in it's default editor.
    There is also a class, oracle.ide.model.Element, which represents a resource in JDeveloper. A workspace, project, and java files are all Elements.
    Ide.getWorkspaces() returns you the root of the workbench. Element defines getChildren(). By iterating through each getChildren(), you eventually can get down to an element that represents the java files in your workspaces. Thus you'll have a handle to java elements, which you can open in the editor, by using EditorUtil.openDefaultEditorInFrame(Element)

  • [Solved] Opening a txt file in different editors, format issue

    I wasn't sure where to put this, sorry if this is the wrong place.
    This is what's bothering me: I made a text file (.txt) with Vim containing some brief info about it (itself?) to print and have at hand for learning while using it. Then I opened it in Geany to print it, and all the formatting where screwed up (I used tab to format it). For example there were spaces before the tabs, or extra tabs added.
    Then I fixed the text I pasted in Geany, printed it and again the formatting where messed up, this time in the printed copy, although the text in the screen looked alright. I tried to print with Terminus, Clean, Dejavu Sans Mono and Monospace fonts. After that I did the same in Google Docs, with the very same results.
    What's going on? I mean, why what is printed is different from what I see in the screen? And why when I create a file with A program and open it with B program the formatting is messed up? What should I use to print regular text? I don't like OOs
    Thanks
    Last edited by rb (2010-07-15 03:08:22)

    rb wrote:I think I'll edit my .vimrc to, in case of matching a text file, just insert spaces (I think that should be possible).
    in .vimrc
    set expandtab
    set ts=4
    replace 4 with any number of spaces you'd like.
    Last edited by splittercode (2010-07-15 03:03:56)

  • Problems opening & resaving NEF files with CS3/CS2

    I seem to be having problems sending my NEF files to Photoshop from Aperture. This started happening just today & I'm not sure what to do.
    What happens is that when I open a NEF file in external editor, instead of just opening up as a psd file in CS3 or CS2 directly like it used to do, it now opens Adobe Raw instead which means that I am unable to resave back into my Aperture Library. Is there anyone who has experienced this as well? Any suggetions as to the cause and a solution? I tried checking preferences for both Aperture as well as Photoshop but nothing seems to work.
    The only thing I can think of is having just updated Adobe Raw to the latest version, 4.3 I think. Other than that Aperture did start up about a week ago & declared my library corrupt & proceeded to rebuild my library. Other than that it was behaving normally until today. Its really irritating & counter productive to be unable to resave my edits in Aperture.
    Any help or suggestions will be very welcome indeed. Thanks in advance.

    Thanks for the tip Eduardo, but I checked the preferences and they seem to be correct.
    It seems that only images in certain projects were affected. Could be the ones that Aperture rebuilt earlier. I guess I may have to try exporting the raw files from the affected projects, then deleting and reimporting the projects again. I did try to rebuild the thumbnails but it doesn't seem to help.
    Does anyone have any other suggestions for me to try before I do this?

  • Can't open an NEF file in PE 5

    I took some raw (nef) photos with my Nikon D-80 and saved the files to my hard drive. They have a .nef extension. When I go to PE 5.0 windows xp version, and go to File, Open, and try to open the Nef file in the Editor I get a message indicating it is the "wrong type of file" and it doesn't open.
    What am I doing wrong????

    Bruce, you are quite on track.
    Norman, PSE5 comes with Adobe Camera Raw 3.5. Support for Nikon D80 RAW
    images has been added in version 3.6. You need to download and install it.
    http://www.adobe.com/support/downloads/product.jsp?product=40&platform=Windows
    Juergen

  • Opening  a file in vi Editor from Java

    My swing application is running on Linux platform. I need to open some .properties file from the GUI for editing.
    I tried to open the file abc.properties using the following methods
    1.
    String cmd = "vi abc.properties";
    Runtime.getRuntime().exec(cmd);
    2.
    String[] cmd = {"/bin/sh", "-c", "vi", "abc.properties"};
    Runtime.getRuntime().exec(cmd);
    3.
    String[] cmd = {"vi", "abc.properties"};
    Runtime.getRuntime().exec(cmd);
    All of them are running without any Exception, but not opening the vi editor with file..
    Any idea?

    If that is the case, then I think it is better
    - read the file contents to some editor swing
    component
    - edit the file
    - save the contents back to fileYes, I think that's by far the better solution. The only reason to call vi would probably be if
    - your program was targeted at a very small target audience
    - all of them are vivid vi-lovers
    - your application only needs to run on UNIX-like OSes with vi installed
    - the property file needs some complicated editing that the users prefer to do in vi
    Unless all of the above are true, I'd also suggest you just pop a text field with the content.

  • How do I open my raw files in photoshop elements 12 editor-..my files convert to jpegs

    How do I open my raw files in photoshop elements 12 editor.  I have a MacBook. I use the iPhoto and move the files I want to work on into elements, but it converts the raw files into jpeg files.
    Thanks for your help!!!

    Are you opening the image directly from iPhoto? Right click & choose Edit in >> Photoshop Elements Editor
    This link is old but gives information on set up. It relates to PSE11 but the principle is the same. In iPhoto prefs you navigate to the editor application in the support files folder. Start from Finder by holding down the Alt (Optn key) and choosing Library.
    http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-iphoto-mac-os.html

  • An attempt to open a pdf file with Photoshop Elements (version 12) resulted in a pop generated by the Photoshop Editor stated "Impossible to execute this operation (opening file) because one of the specified colour is not managed". Is there any mean to ad

    An attempt to open a pdf file with Photoshop Elements (version 12) resulted in a pop generated by the Photoshop Editor stated "Impossible to execute this operation (opening file) because one of the specified colour is not managed". Is there any mean to adapt the file to make its reading possible?
    Did somebody get the same problem?

    It is a high order probability that your SQL's report generator is creating the PDF, not Acrobat (which by design and EULA cannot be used in as/with server).
    That the report generator outputs to an old-old version of PDF bears this out.
    Wiki articles on PDF are very nice for those high level intro summaries.
    To know / understand PDF you purchase and study the ISO Standard for PDF (ISO 32000-1:2008).
    Rather than "PDF validation" you may want to consider addressing the appearent root cause of the problem(s).
    You can change the email2fax application to one that can deal with older PDF versions.
    You can change the report generator to one that can output to the ISO Standard.
    (Perhaps the in-use application can be configured to output to the current version of PDF (i.e., the ISO Standard).
    Be well...

  • Problems opening up RAW files in the Adobe elements 12 editor

    I just installed Elements12 on my Windows Desktop.
    Operating System Windows XP SP3, Quad Core Processor 2.4GhZ, 3Gb RAM (based on these spec, I should be meeting minimum system requirements)
    My camera's RAW format (Rebel 4Ti, CR2) is supported by the installed Camera RAW version (8.0.0.xx).
    I had no problems opening up the RAW file into Camera Raw. I performed the basic adjustments and save the image as a .DNG file. No problems so far.
    (1) I then tried to open the RAW file into the Elements Editor by clicking on "OPEN Image" in Camera RAW. I goes the error message that this action could not be completed due to a program error.
    (2) I also tried to open the .DNG file directly. I got an error message telling me I had not enough RAM to complete this action (see above, I have 3Gb installed)
    Can anybody advise me what to do, or what the problem is>
    Thanks.

    You might start looking for a new computer with windows 7 or 8 64 bit.
    Not because windows xp is a bad operating system, but it's not supported by microsoft any longer and more and more software companies are dropping support for xp.
    (even one of my favorite open source programs; Krita, dropped support for windows xp)
    Plus, new programs seem to be more and more ram hungry and a 64 bit version of windows can make a world of difference.

  • PSE 9: Cannot open certain raw files in editor from Organizer.  Can directly tho.

    I can open my CR2 (Canon raw for 50D) files from the Elements 9 Editor.   But when I try to save, the "Save as Version Set" is grayed out even tho the photo is in the Organizer.  Conversely, when I try to open a CR2 file from the Organizer, I cannot.  If I drag it to the Editor window, I get message that the file is the wrong type of file - the message one would expect for an unsupported raw file format.
    I've been using Elements 9 successfully since October.  This is new behavior in the last week (since I returned from 3 week vacation with 3000 new photos).   I cannot pin this to any newly loaded software (don't have any) nor correlate it to any other event.  Occasionally, the file will open in Camera Raw from the Organizer, but not usually, and then not again for awhile.  I've repaired and compacted.  I uninstalled and reinstalled to no effect.  I applied the 9.0.3 update - again to no effect.  I've rebooted a few times, again with no effect.  I did have PSE7 installed (and have had so for 2 years), but uninstalled that, hoping (vainly) for an effect.
    In the process of proofing this post, I did a bit more experimenting.  I find that ALL my 20D Canon Raw files work as they should (open in Camera Raw, etc.).  And, I find that all my 50D Canon Raw files taken before the trip work as they should.  However, the files from ONE DAY ONLY on the trip exhibit this behavior. The only difference is the trip files all were off-loaded to a laptop, then transferred to my desktop (via ethernet, not wireless), the same as all other day's photos.   Subsequent loading directly from compact flash card to my desktop results in being able to edit the files from the Organizer just fine.  I've checked permissions and all users have full permissions.
    The laptop and desktop are both Windows 7 (completely current).
    I don't really have any ideas.  Any suggestions will be appreciated.  Thanks in advance.

    I think PSE6 will not be able to import/open files from Nikon D7000 as support has been added in recent ACR updates which are not available for PSE8 and below.
    Please have a look at http://photoshopelementsbyadobe.blogspot.com/2011/05/how-to-use-raw-files-from-latest-dslr s.html as workaround

  • Open XML file in XML editor with certain XPath highlighted

    Hi,
    I have wrtten an XML compraison tool which produces an HTML report of all differences and shows the xpaths where there is a mismatch. I want the user to be able to click the xpath (like hyperlink) and open the XML file using IE or any opensource XML editor (xerlin?) such that the xpath node is the current highlighted node on the screen. That way the user can right away seee where the mismatch is. As a next step I wanted to open both the control and the test files side by side with both xpaths highlighted.
    Any idea how I can approach the problem? Is there any open osurce software I can leverage and integrate my application,
    Thanks,
    Abhijit

    This code of yours should work.
    <% if display_url is not initial. %>
    <script language="Javascript">
    url = "<%=display_url%>";
    window.open(url, "Zusatz", "width=400, height=400");
    </script>
    <% endif. %>
    what happens, it doesnt open new window at all or new window is opened but xml doesnt show up?
    Regards
    Raja

  • Open file with system editor..

    Hello,
    I have a File (any kind of file) inside a java desktop application (swing) , and I want to open it with the appropriate system editor just like Eclipse does (right click on file | open with system editor).
    Could you provide sample java code doing that ? (I know it's not easy and haven't found much googling).
    Would that code be portable ?
    thanks a lot !

    Hai,
    Yeah, that true Desktop is available on Java 1.6. These Desktop class is derived from jdic.jar, which u can find by googling. It contains APIs and examples for opening a file with the system editor. Dowload the jar file add to classpath use it, thats all. Refer to the examples.

  • "File" tab in external table editor replaced by "Access Parameters"?

    Hi,
    I have a few external tables where the "File" tab in the external table editor is replaced by an "Access Parameters" tab.
    Does anybody know what may have caused this or how to repair it?
    Thanks,
    Ed

    Hi Ed
    I have had that happen many times but have not figured out the root cause. The fix I used was pretty basic. Delete the external table and redefine it.
    This has happened to me mostly when I move an external table definition from our TEST repository to PROD. It seems to lose the file definition it was originally attached to.
    Since my external tables look exactly like my flat file sources it takes only a few seconds to recreate the external table.
    I didn't spend any more time trying to figure out the 'why'.
    Good luck.
    -gary

  • I have Elements 10 and every time I go to open a file in the editor it shows its thinking and then it just shuts down the entire program. I have a big wedding I am working on and lots of other sessions. Please PLEASE help!!!!

    I have Elements 10 and every time I go to open a file in the editor it shows its thinking and then it just shuts down the entire program. I have a big wedding I am working on and lots of other sessions. Please PLEASE help!!!!

    And you are quite persistent, Menu Boy, in offering pernickety and pointless prattle, in response to a "support page" on iPad's buggy Pages App.
    Let's summarise, for those reviewing this threadless thread for app support..
    Mobile pages works reliably for simple docs, especially creating letters and Menus for Microsoft's Kindy canteen (even on special days with nice big pictures).
    When importing more complex docs and/or working with larger creations, it is prone to randomly corrupting files upon re-opening, along similar lines as Word (running on a PC).
    So, Menu Boy, do they let you sneak into classes every now and then? What is the secret to their training? "Say after me, if any I.T. product works just some of the time, that's a job well done, and if something randomly stops working, we call that the user's fault... And if they complain, we call them names."

Maybe you are looking for

  • Hard drives not mounting properly

    Lately my MacBook Pro Core Duo 2.4 GHz, OS X 10.5.8 is having trouble mounting hard drives. If I start from my external drive the internal drive may not mount on the desktop or mounting may take a minute or two. Disk Utility will see it but the Mount

  • Imported iPhoto library, can I delete the iPhoto events?

    Hi, I'm very new to Aperture, so far I'm impressed. I have imported my iPhoto library and now I see a folder called 'iPhoto Lirary' that contains 'Events' and then events (that look like Aperture projects). The question is, can I delete the 'iPhoto L

  • InDesign 5.5 for pc repeatedly crashes on launch.

    Hi, This morning I launched InDesign as usual, but moments after the home screen appeared, I got an error message which said 'Adobe InDesign CS5.5 has stopped working.' The application then closed. This has happened repeatedly despite numerous attemp

  • Problem in iPhone SDK Sample: [CrashLanding ]

    iPhone SDK build : build 9M2199a Sample: CrashLanding Version: 1.7 OpenGL swap buffer method seems to fails sometimes resulting in a crappy blink display. The display seems split into two images. The screen goes messy, I can view the backbuffer blink

  • New w520 has erratic download speeds

    I bought a w520 last week.  It's a lovely machine, but unfortunately it's frequently had terrible wireless download speeds straight out of the box.  Wired, it was 11+ Mbps.  Wireless, I've hit a high of 6+ and a low of .2.  It is extremely common for