Save As From Package Editor

When I try to save a package body to a file:
- File/Save As...
- Navigat to the directory I want to save to
- Enter file name "mypackage.pkb"
- Click Save
-> Save button becomes unavailable
-> Save As.. dialog stays open
-> file is saved with name "jdev61262.pkb"
When I retry, the file gets saved again with a new name (number is increased).
It would be nice if:
- the file would be saved with the specified name :)
- the Save As dialog would remember the directory used in the last invocation
This is with Raptor 8.04 on Win2K.
Thx for this good tool! I'm quite positive now that the day will come when I can replace all my little database tools for Linux and Win by Raptor!
/Chris

We do have a bug logged on it where I thought the file was not being saved but just tested again against 804 and see that it saves but to a new name (like you described). I added those details to the bug.
We are working on recalling the directory from your last save. If you save with the name we default, it does remember. I guess it is not recalling because of the issue with the save.
-- Sharon

Similar Messages

  • My PSE 5.0 Organizer catalog now won't display any new image from the Editor

    Every attempt to Save As from the Editor gets the message, "There was a problem acessing the Organizer catalog.  It may be in use by another process, or a disc error occurred." 
    Then when I attempt to get the same image using the FIle menu and Get Photos ...From Files and Folders,  even though the newly saved file is correcly in there as shown by the thumbnail, I get this message:
    The ODBC data source reported the following error: "[Microsoft][ODBC Microsoft Acess Driver] Cannot open database 'I'.  It may not be a database that your application recognizes, or the file may be corrupt."
    I have repeatedly shut down the programs and the whole computer, and although this problem occasionally occurred in the past, now that's all I get.
    How can I get my Catalog to show these images?

    Thanks for your suggestion - Recover did it!  (That may have seemed obvious to you, but not being much of a computer expert, I didn't know enough to even ask the right question.)  I'm so glad to have my Organizer back!

  • Error : Only edit objects from package ZSD in local requests

    Hi Experts,
    We are modifying all Z-programs to unicode enabled programs in ECC6.0 Upgradation. While doing this we are not able to save it as a transportable request. It displays error as "Only edit objects from package ZSD in local requests".
    So can anyone tell me how to save it as a transportable request.
    Thanks,
    Ranjith C.

    Hi,
    two ways:
    1. change the transport type: create transport type copy in se01 and copy all mentioned objects to that transport
    2. better way: correct development class and transport layer
    case a.  target system was not definied (not known to TMS) or is empty
    case b.  source system (original system for objects) not known to TMS
    case c.  objects assigned to local package (former local development class)
    etc.
    If you don't understand this explanation, just use one of Z transport layers showed in stms, by changing the transport layer in the definition of the package (se80) to shown in STMS (link name from source to targed system)
    Kind regards,
    Mirek

  • Only edit objects from package ZPACKAGE in local requests

    Hi Experts,
    I was adding a secondary index to a Ztable present in a package ZPACKAGE. When I tried to save in a workbench request, I got the error message "You cannot use request XXXXXX". I then created a local change request where the target system is not mentioned in the transport request. I was able to save the index and later I mentioned the target system. When I tried to release the transport request, I get the message "Only edit objects from package ZPACKAGE in local requests". Kindly suggest what can I do save the changes in a transport request and release it.
    Thanks

    Check out the transport layer and target system for that transport layer. As someone suggested, talk to your basis.
    This is most common when you have the actual table in temp folder but the index stored in Zpackage.
    I would first check my objects package to make sure that they are in right package. If everything @ right place, then i will check the package transport layer and software component then check the 'use access' of the package. if the package is good then check the transport path and target systems for each transport later.

  • Save custom print package

    I recently purchased Lightroom 3 because I assemble my pictures in albums consisting of photo collages. I recently switched my photo processing from PSE 8 to Photoshop CS5, primarily because Elements is not a 64 bit program. I purchased Lightroom 3 beause I read of it’s versatile picture package capability. Amazon also made it affordable. My problem is I am on a steep learning curve with two complex systems at the same time and currently can’t make Lightroom do what I think it should do. Namely save a created custom picture package. I have 2 issues.
    After creating a custom picture package, I want to save the collage in my album folder, either as a Tiff, jpeg or PSD file. I can’t seem to find any way to do that and a search in the help file reluctantly leads me to the conclusion it can’t be done.
    Secondly, I discovered, other than a name plate, there apparently is no way to add text to a picture package. I sometimes like to add talk bubbles and descriptive text to either the pictures or the background. If I could save the picture package or export it to CS5 I would do this in CS5.
    I have to believe I am missing something because I can’t imagine Adobe would provide the ability to create a custom picture package and not the ability to save it as an image. My recollection is that Elements does, why not Lightroom?
    I know I can save templates, but I want to save the composite image. Please, someone help

    _marc_b_ wrote:
    If you scroll down to the bottom of the right-hand panel in the Print module (Print Job), you can choose "JPEG File" from the "Print to:" pull-down menu. TIFF and PSD aren't possible, AFAIK.
    That is correct, jpegs only to export from the print module. Although you could print to a PDF which may then be editable in PS.

  • Write permission error message when I try to 'save image' from elements 12 raw camera to main editing section?

    I get a 'write permission error' message when I try to 'save image' from Raw Camera sector to the main editing section of Elements 12. How can I overcome this problem?

    Well, first of all Save Image doesn't have anything to do with moving a raw file into the regular editor. That's the DNG converter. Evidently you are trying to create a dng file in a place where you don't have permission to write. Take a look at the location and change it to someplace where you can write. An example would be opening a file that's on a disc and trying to save back to that disc.
    But you should still be clicking the Open button instead of the Save Image button if you want to do anything other than make a DNG file.

  • Save an oracle package to a flat file

    Hallo,
    how can I save an oracle package to a flat file?
    Best Regards
    Werner

    Here is a script you can use. You may need to change the references to dba_source to user_source or all_source depending on your access privileges.
    set termout off
    store set sqlplus.cfg replace
    column pkg_spec new_value pkg_spec noprint
    column pkg_body new_value pkg_body noprint
    set pagesize 0
    set linesize 10000
    set trimspool on
    set echo off
    set verify off
    set feedback off
    set timing off
    set recsep off
    set termout on
    accept pkg prompt   'Package name:  '
    accept owner prompt 'Owner:         '
    set termout off
    select lower('&&pkg') || '_spec.sql' pkg_spec,
      lower('&&pkg') || '_body.sql' pkg_body from dual;
    spool &pkg_spec
    select 'create or replace' from dual;
    select text from dba_source
      where owner = upper('&&owner')
      and name = upper('&&pkg')
      and type = 'PACKAGE'
      order by line;
    select '/' || chr(10) || 'sho err' from dual;
    spool off
    spool &pkg_body
    select 'create or replace' from dual;
    select text from dba_source
      where owner = upper('&&owner')
      and name = upper('&&pkg')
      and type = 'PACKAGE BODY'
      order by line;
    select '/' || chr(10) || 'sho err' from dual;
    spool off
    @sqlplus.cfg
    set termout on

  • Printing really small from text editor

    I've got a few MS Word documents that I need to print on a regular basis. Some are printed as is, others are forms that I type a few extra lines into.
    To save rebooting into XP, I thought I'd try opening and printing them from text editor. For some reason, documents that filled a full A4 page in Word get printed really small - I have to print them at 190% to fill the page. Any reason for this, and is it normal? Is printing at more than 100% the only fix?
    The printer is a Samsung ML-1510 mono laser, using the latest drivers. I had the same "problem" printing from my Mini, running Tiger.

    Select "Wrap to Page" instead of "Wrap to Window" in the Format menu. You can set that as default in the Preferences.

  • BUG in PE 13- cannot open and save projects from PE11!!!!!!!

    For 1 month I'm requesting a TECH Support to resolve a BUG in Adobe Premiere Elements 13 that cannot load and save projects from PE11. I already provided all details several times (about my PC system & exact steps to reproduce a problem, etc) & posted in this PE forum as well.
    Adobe is the WORST company I have ever came across that shows NO SUPPORT for its clients. Not only they don't have a phone line, but lacking in providing its clients with other channels to contact Tech Support (if such exists??) via emails or a chat. It is unheard of that a company would SELL its products, collected money & then had NO responsibility to correct problems they introduced. SHAME on you! I will post this opinion in Facebook and everywhere. I will warn people they should beware on spending money on Adobe horrible products where a company refuses even support these products and where a company only relies  on common users who also already spent money and now experiencing all sort of problems. Unbelievable!
    Adobe team, if you are not helping with resolving your last bugs, you should at least send me a link for the old PE11 that I could finish my projects. I hope that someone will finally contact me

    Please see- http://barbarabrundage.com/2010/11/29/using-photoshop-elements-9-with-iphoto/
    Thanks
    Andaleeb

  • How to open and save pictures from 1 folder at the same time?

    Is there a way to open and save pictures from 1 folder at the same time?
    I'm creating a vi that resizes the picture but I want to do it with 1 folder at a time... Is this possible?
    greetings!

    Hi Kway,
    Here you are. I wrote a file a customer times ago & It did what you want!
    Just see the attachements and keep me inform.
    Regards,
    Julien Roland - District Sales Manager
    NI Belgium - Technical Support
    Don't forget to rate a good answer
    Attachments:
    Test existing Files.vi ‏23 KB
    Delete files from array of files (SubVI).vi ‏16 KB

  • Can't pdf save documents from Firefox 6.0.2

    I have windows XP sp3 + all updates, Firefox 6.0.2 and Adobe Reader X (10.1.0).
    When I download a document from the web and use the Adobe Reader options to save the document to disk I get the following error message.
    "The Disk you were saving to or the Disk used for Temporary files is  full.  Free some space on this disk and try again, or save to a  different disk."
    I have uninstalled and reinstalled but get same result. My other PC's have same setup and work okay.
    If I open a document with Adove Reader and save as it works, so it seem to be associated with the Firefox plugin.
    Regards
    Allan

    Thanks to Bernd and Allan
    "Save as" from within the browser is ok. However it is not the most convenient method.
    I've deinstalled Adobe Reader X and deleted all the remaining files from a previous version (8) which had obviously not been cleared correctly, and cleaned the hard disk including registry keys with CCleaner. Then I've reinstalled Adobe Reader X. The problem remains
    I understand that there are several problems with Acrobat Reader X in all sorts of browsers. Saving is one of them, but also opening pdf-files from within a browser may cause problems (I had this from time to time). See also the following threads in this forum:
    - thomas.croonen "can't save PDF from Internet Explorer embedded Adobe Reader", first posted on March 6, discussion still active
    - fonduekid "Adobe Reader X - Firefox integration Problem", first posted on November 23, 2010, dito
    Thus I wonder whether Acrobat has planned the fixing of these problems (even for old Windows systems like XP) or whether we have to cope with the inconveniences. And I am surprised that there is no official answer by Acrobat to this obviously quite common problem.
    Bye,
    Franziska

  • How do i save music from my iphone or my itunes account on to my computer?

    how do i save music from my iphone or my itunes account on to my computer?
    my husband and i have had the same itunes account for years and all of our music is mixed.
    well we got new iphones (upgrading from the iphone 3 to the iphone 4) now we would
    like to seperate our music. so he is going to keep the same old itunes login and i made me a new one.
    now i cant figure out how to get all my music off the old itunes account. help!!!

    i have a playlist but i am not sure if it will work? im sorry im not sure how all this stuff works? can you walk me through it?

  • How do I save photos from email to the photo library?

    How do I save photos from email to the photo library? I've seen an online demo of users that hold their finger or thumb over the image for a few seconds and a "save photo" window option appears. That doesn't work on my 6-month old iphone. It's version 1.1.4 (4a102) ???? Help! Anybody with an answer?

    Never mind. I figured out the 2.0 update. My system wasn't updating I-tunes...and the I-phone update option window was hidden behind some other system information. I figured it out. The download, install and re-synch took about an hour. Lots of horror stories out there about people trying to activate their new I-phones. Glad this worked for me!

  • How to save picture from an iPad on someone else computer

    how to save picture from an iPad on someone else computer.

    Why don't you save pictures to Dropbox?
    You don't have to save it on someone's computer
    http://i1224.photobucket.com/albums/ee374/Diavonex/b90c9d4d.jpg

  • Can I use my time capsule to back up or save files from my pc?

    My time capsule works great with my 2 Macs.   I just got a PC and would like to know if I can use the time capsule to back up or save files from my PC?

    You can.. but obviously PC is missing TM.. so you will need to use a backup software.
    Saving files to the TC is not really recommended.. but as long as you have lots of space is unlikely to cause problems.. the whole idea of TM though is to keep incremental backups on an hourly basis and will slowly fill the TC.. once space is short.. it can get messy.
    Also read Pondini who is positively against using it for other files.
    http://pondini.org/TM/TCQ3.html
    I suggest you read .. skim at least the FAQ so you actually understand what TM - TC is all about.
    A USB drive plugged into the PC makes a better backup
    1. It is formatted NTFS, ie native format and readable by any windows computer. A TC is a network device.
    2. USB drives are cheap. You can use 2 of them and store one offsite.
    3. USB traffic is not on the network.
    4. Storing files on the TC is bad as it is a backup target not itself backed up.
    5. In a pc you can add drive after drive after drive.. (assuming a desktop since you didn't say laptop). Only a Mac Pro can do that in the Mac world.. internal drives are cheaper than a. USB drives, b. network drives. And they are 10x or more faster.

Maybe you are looking for

  • Jabber for Windows 9.2.2 Client - No Meetings on Options

    We have an on prem deployment of CUPS 8.6.4 with Jabber for Windows clients. Everything is working as desired with the exception that we don't have the "Meetings" available under File > Options. Here's what my jabber-config.xml file reads. Everything

  • What is the best way to create diary in indesign CS5?

    I need to do something like this fo 2013. Has anyone had experience to create such a diary?

  • Issue while configuring Shared Services 11.1.2.1

    Hi All, I am installting and configuring hyperion-64Bit- 11.1.2.1 (Essbase, Planning, FDM, EPMA) in a distrubed environment in windows 2008 R2 Server Box1 I have sucessfully configured Shared Services, Essbase Administration Services. Box2 I am at th

  • Won't stay off

    *My iPod touch will not stay off. Everytime I turn it off and slide the red button to off the ipod goes off and then come right back on. I have reset and restored the ipod and it still doesn't want to turn off. What is up?* Message was edited by: bil

  • Unable to open new Tabs

    When I click on the plus (+) sign to the top right of the current web page, it does not open a new tab. Can anyone advise me on how to fix this problem? Thanks.