How can I print, save or export from Data Modeler

From Oracle SQL Developer I select Tools > Data Modeler, then drag a few tables on the surface. Both Print and Save options in the File menu are disabled. Also, there's no export option. What is the purpose of Data Modeler. I', using SQL Developer 2.1.0.63.

It's Data Modeler Viewer included in SQL Developer 2.1. You need SQL Developer 3.0 or 3.1 EA1.
Philip

Similar Messages

  • Hi, how can I print a weekly view from my iCloud calendar?

    Hi, how can I print a weekly view from my icloud calendar?

    There is no way except to take a screenshot of the calendar and print it. Send a feature request to Apple via http://www.apple.com/feedback/ical.html and  http://www.apple.com/feedback/macosx.html
    OT

  • How can I print only Selected pages from a Multipage document?

    HP Envy 114 e-All-in One Printer
    How can I print only pages 2 and 4 from a 10 page document using my Envy 114 Printer?
    This question was solved.
    View Solution.

    Hi,
    Where do you print from ? Under Word or PDF you can select page(s) you want to print.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How can I print out all texts from one person

    How can I printall of my texts from my very bad lawyer?

    It's not a file, so you can't "open" one file. Every message (and note) is a single file on the computer.
    This Applescript will grab all the notes in the selected mailbox (i.e. the selected Notes item in Mail) and put them in a textEdit document.
    Note that Mail doesn't differentiate between a note and an email message, so if you run this while a normal email mailbox is selected, it will gather all of your email messages.
    tell application "Mail"
    set theMailboxes to the selected mailboxes of message viewer 0
    repeat with aMailbox in theMailboxes
    set theNotes to the messages of aMailbox
    set theText to ""
    repeat with aNote in theNotes
    set theText to theText & content of aNote & return
    end repeat
    end repeat
    end tell
    tell application "TextEdit"
    set myDocument to make new document at end of documents with properties {text:theText}
    end tell
    Copy and paste this into a new AppleScript Editor Document, select the Notes mailboxes you want to print the notes from, and click the Run button (Green button with arrow).
    This may take a while.

  • How can I print out my contacts from my ipad

    HHow can I print out my contacts from my iPad or iPhone?

    Hi Ken, there is an app, Contact Sheet (http://itunes.com/apps/appiota/contactsheet) that will not only print your contacts, it can also print the pictures!  This app can be used to back up, share, or extract information from your contacts.  You can select which contacts to use by creating a group and you can choose which fields to include.  So, for example, if you were creating a phone list to distribute to your bowling group, you could just include names and phone numbers and not include address or other information that people may not want shared.  It can even be used to send group emails and group text messages.  Please check it out!

  • How can I remove dropdown calendar menu from date/time field.

    I set up a javascript calculation based on the input of a date field. As long as the user enters the date manually the script works fine. If user attempts to select date by drop down menu then script will not work. How can I remove the calendar feature from the Date field?

    You may have to wire custom script to get you what you need. That would probably work on 'exit' event.
    Just you give you better Idea here is some thing I have on a date field. If user types his own date instead of picking from calendar this code checks whether it is valid date or not and returns to the same field either they enter valid date or clear the field.
    This is FormCalc script. You may get the idea how this works and make it work for you using the same logic either in FormCalc or JavaScript.
    ----- form1.SOF.Head.Table1.Row1.ReqDate.Date_ReqDate::exit: - (FormCalc, client) ------------------
    if (HasValue($)) then
    if (Len($.rawValue) == 10) then
    var S1
    var MM
    var DD
    var YYYY
    var Derror
    var D1
    var D2
    var S2
    Derror = 0
    D1 = 0
    D2 = 0
    S1 = $.rawValue
    D1 = At(S1, "-")
    S2 = Right(S1, 5)
    D2 = At(S2, "-")
    if (D1 > 0 and D2 > 0) then
    if (D1 == 3 and D2 == 1) then
    MM = Substr(S1, 1, 2)
    DD = Substr(S1, 4, 2)
    YYYY = Substr(S1, 7, 4)
    elseif (D1 == 5 and D2 == 3) then
    MM = Substr(S1, 6, 2)
    DD = Substr(S1, 9, 2)
    YYYY = Substr(S1, 1, 4)
    else
    Derror = Derror + 1
    endif
    else
    Derror = Derror + 1
    endif
    if (Oneof(MM, "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12")) then
    Derror = Derror
    else
    Derror = Derror +1
    endif
    //xfa.host.messageBox("MM"+ Derror, "Incorrect Date", 1, 0)
    if ((Oneof(DD, "01", "02", "03", "04", "05", "06", "07", "08", "09")) or ((DD >=10) and (DD <= 31))) then
    Derror = Derror
    else
    Derror = Derror + 1
    endif
    //xfa.host.messageBox("DD"+ Derror, "Incorrect Date", 1, 0)
    if ((YYYY >= 1975) and (YYYY <= 2050)) then
    Derror = Derror
    else
    Derror = Derror + 1
    endif
    //xfa.host.messageBox("YYYY"+ Derror, "Incorrect Date", 1, 0)
    if (Derror > 0) then
    xfa.host.messageBox("Preferred valied date between Jan 01, 1975 and Dec 31, 2050. ", "Incorrect Date", 1, 0)
    xfa.host.setFocus($.somExpression)
    else
    //good
    $.formattedValue = Format("MMM DD, YYYY", Concat(YYYY, MM, DD))
    if ($event.shift) then
    //xfa.host.messageBox("Shift")
    var sh
    sh = 1
    //xfa.host.setFocus("xfa.form.form1.SOF.Head.RadioAttachTo.RadioAttachTo3")
    else
    if (xfa.event.commitKey == 1) then
    var A
    A = 1
    else
    xfa.host.setFocus("xfa.form.form1.SOF.Head.Table1.Row2.CustName")
    endif
    endif
    endif
    else
    xfa.host.messageBox("Preferred valied date in format MMM DD, YYYY.", "Incorrect Format", 1, 0)
    xfa.host.setFocus($.somExpression)
    endif
    endif
    Good luck,
    SekharN

  • How can I print grocery store receipts from an iPad?

    I run a natural food grocery store and am considering using iPads as our checkout device. (We currently use iMacs, which are nearly 5 years old now.) I think I could set up a nice system using FileMaker Go. I have done quite a bit of searching, and I don't see a clear answer as to how and whether I could print receipts on an industrial-quality receipt printer, wireless or otherwise, from the iPad. I'm not interested in anything that has a slow response time or requires printing through a separate computer (otherwise, I'll stick with using iMacs!). The receipts must be printed quickly and on the spot.
    Apple's Camera Connection Kit appears to be a straightforward way to get a USB port onto the iPad, and I assume (correct me if I'm wrong) I could get multiple USB ports by attaching a self-powered hub to that port. So that should take care of the input devices, namely the barcode scanners and credit card swipes.
    But it sounds like printing requires an additional application or a driver. I don't even have an iPad to test yet. Can anyone clue me in?

    You cannot connect a USB hub to an iPad and you cannot connect just any USB device to an iPad via the Camera Connection Kit. The only supported printing from an iPad is using AirPrint which is supported by only a few printers, which won't meet your printing requirements.
    I suggest sticking with iMacs, although I don't know why you don't use a standard cash register system.

  • Can't Print PDF files exported from Pages

    I spent all weekend creating a 25 page document - exported it to PDF and it won't print at all. Sent it to 50 customers before I discovered the problem
    I used the same fonts and template last year in a document in Version 1 of Pages and had no problems.
    I can print directly from Pages and also no problems printing if I export to Word but not PDF which is of course the format I require!
    I checked the security setting in Acrobat and none are set so it sould be fine!
    Help!?!

    Can you open and print the the file in Preview? I found Acrobat Reader a little flakey with X and deleted it from my system. I use Preview for everything.
    Instead of the export feature have you tried printing to pdf? See if it makes any difference.
    Kurt

  • Please how can I print out my book from the laptop I have adobe digital edition and the print is faded

    Sorry but I can not print from Adobe Digital edition. I bought and down loaded a book and now can not seem to print as the print request is faded out. Can someone help me thanks

    Hi Cherin,
    Printing a phone book (or an 'Address Book" as ontacts Help refers to it) is done directly from Contacts, and does not involve Pages. Details are available in Contacts' Help files. Try searching 'print phone book' (without the quotes).
    Your question will be better served in the Mail & Contactssection of the Mac OS & System Software community.When reposting there, be sure to describe the snags you've run into so that people responding can oncentrate on those without having to repeat what you already know.
    Regards,
    Barry

  • How can we do save and export operation in single step using Plugin?

    Hi all,
         I want to save and export a design in Adobe illustrator  to a specific folder using a plugin. For example i created a design called test , i want to save the test.ai and its converted jpeg form (test.jpeg) in to a specific folder using a plugin instead of using normal save and export operation (File ->Save, File->Export). I want to do the save and export operations in single step.
    Is it possible to do using the plugin?
    Thanks in advance
    Sreejesh K V.

    I have tried both option and still the file is not being saved
    This is what i tried:
    const char *fileFormatName="TIFF";AIDocumentSuite *sAIDocument;
    std::string abc =
    "D:\\Sreejesh\\test.tiff";ai::UnicodeString myString(abc);
    ai::FilePath aiFile1(myString);
    AIErr err = sAIDocument->WriteDocumentWithOptions(aiFile1, fileFormatName,
    kFileFormatExport | kFileFormatWriteAs | kFileFormatWrite ,
    false);
    SPBasicSuite *aBasic = message->d.basic;
    AIDocumentSuite *fSave;
    aBasic->AcquireSuite (kAIDocumentSuite,kAIDocumentVersion, (const void**)&fSave); 
    const char *fileFormatName="Photoshop PSD Export";std::string abc =
    "D:\\Sreejesh\\test.psd";ai::UnicodeString myString(abc);
    ai::FilePath aiFile1(myString);
    AIErr serror=fSave->WriteDocument(aiFile1,fileFormatName,
    false);

  • How Can I print directly the report from the printer without showing it ?

    I know how to run the report from Form as it illustrate on this site:
    http://www.lv2000.com/articles/runreport.htm
    but the question here how could i to generate the report directly to the printer without showing it on the screen???
    I search on the net and I find that I should change this line :-
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE, cache);
    to this
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE, printer);
    but it is not working with me :-(
    is there any suggest ?!

    Check if any of these helps
    Re: Direct Printing in Forms10g
    Web.Show_Document() print report directly
    Direct Printing from client PC

  • HT4356 I have just updated my Epson printer to one which supports air print but consider it to be a waste of money as my printer has two paper trays and there is option to choose which try...just "print"  How can I print photos via AirPrint from photo  tr

    Hi,
    First-timer on this...Just updated my printer which was less than one year old, to one which had Air Print capabilities. This one is the Epson XP605 which has two trays, one being for photos. Each time I tried to Air Print a photo, it printed from the A4 plain paper tray instead of the Photo Tray.Twice...then I came into my study and changed the printer settings to Tray 1 (photo tray) Photo paper, size 5x7 and  Photo Best, but still it printed on plain A 4 paper. Would be most grateful for any help, although I did read on one Apple site that AirPrint may not be able to choose trays!!!! "may not"??  Thanks

    I just figured out the print quality issue for my wife with her new iMac and new printer.
    She replaced both at once and she couldn't understand why her Artisan 730 was lower quality then her Epson R280 when they had the same specs.
    Turns out the newer printer had the option to connect via wifi which we used during setup.
    The driver options are completely different depending on how you connect.
    Once I connected via USB the correct options were available and the print quality was better.
    Looking at the R2400 it dies not have wifi, but while researching the problem for my wife someone esle was having an issue updating to the latest printer driver.
    If you go into the print utility from the Printer and Scanner system preference and under the general tab you should have driver 5.5.
    One user had to delete the old printer driver before Software Update loaded the newer printer driver.
    https://discussions.apple.com/message/15947486#15947486
    On my MacBook Pro (w Snow Leopard) I always had to reconnect my wifi at home when it woke up. I upgraded my router from an old Netgear to a newer N D-Link and stopped having to do that.
    I would be surprised you would have that problem with an Airport Extreme, you might check to see if there is a firmware update for it.

  • How can I print an address book from Contacts.

    I have my contacts all listed in Contacts, but I want to print them as an Phone Book, is there a way to do this without having to retype everyone.
    I have been trying to do this with the help from one to one at the apple store but it seems we keep running into snags which i can not get around, now I am at a stand still again now trying to do for the last 3 months.  Help Please

    Hi Cherin,
    Printing a phone book (or an 'Address Book" as ontacts Help refers to it) is done directly from Contacts, and does not involve Pages. Details are available in Contacts' Help files. Try searching 'print phone book' (without the quotes).
    Your question will be better served in the Mail & Contactssection of the Mac OS & System Software community.When reposting there, be sure to describe the snags you've run into so that people responding can oncentrate on those without having to repeat what you already know.
    Regards,
    Barry

  • How can i print out text messages from my iPhone 5

    How to print text messages from iPhone 5

    SMS text messages are backed up with the iPhone - whether it's locally or to iCloud. If you've already written over the backup that had them (as in, backed up after the delete) then they're gone.
    If you still have a backup available from a time where you had the messages on your iPhone, all you have to do is erase the iPhone and restore from that backup.
    "Retrieve deleted messages from iPhone" is simple as pie.

  • How can I print to Officejet 6700 from Win XP x64 computer?

    Purchased the 6700 and conencted to network and prints from Win 7 laptops fine.
    My desktop workstation in HP Z600 running Win XP X64, but cannot seem to get a driver to suit to print over the network.
    I would prefer not to have to trash and replace the OS on the workstation!
    Is there a work-around or some sort of interface that I could use?
    My home network does have a little HP server, but it runs Win Server 2003, which is also incapable to connecting to the printer.
    This question was solved.
    View Solution.

    Hello GeorgeCurran,
    Please follow the below steps that should atleast get you printing ..
    Click START > Control Panel > Printers and Faxes  , then
    Add a Printer > Add a local printer > Select "Create a New Port" > type in the Printer's IP address Click NEXT,
    in the Manufacturing list , select HP / Hewlett packard, and from the right pane , select Deskjet 990c and complete the wizard .
    Now try printing, it should work. 
    Regards,
    Jabzi
    Help the community by marking this post .
    Was your question answered? Mark it as an Accepted Solution!
    See a great post? Give it a Kudos!
    I work for HP
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

Maybe you are looking for