Any way to edit stored procedures by default instead of viewing?

When I click on a stored procedure, 99% of the time I want to edit it rather than see the default "view" screen. I know you can right click to go straight to edit, but is there a way to just go to edit by default when you click on a stored procedure?
Thanks!

Ivan ,
I think you misunderstood my reply. I was confirming that K was correct in his response. Often we have said features are scheduled for a new release, but they don't always make it. So some features are then pushed out to a future release. In this case, the feature request has been frequent on this forum and I'm confirming that this is indeed now part of the release that is due to come out next.
Sue Harper
Product Manager

Similar Messages

  • Is there any way to edit the standard Firefox context menu for displayed Web pages?

    Is there any way to edit the standard Firefox context menu for displayed Web pages? I frequently want to save a picture appearing on a page. Sometimes I "slip" and hit "Send Image" when I want "Save Image As", and have to sit and wait for a default send-mail page to come up, then close it, fiddling with its "are you sure" dialogs. This is a painful way to handle a slip-up. I basically NEVER want to e-mail an element directly from a page. Is there any way I can just delete "Send Image" from the context menu?

    You can remove entries in the context menu with code in the userChrome.css file
    *http://kb.mozillazine.org/userChrome.css
    Some IDs are listed in this MozillaZine Knowledge Base article:
    *http://kb.mozillazine.org/Chrome_element_names_and_IDs
    To find the ID of others you will have to use the DOM Inspector.
    * https://support.mozilla.org/kb/DOM+Inspector
    * https://developer.mozilla.org/En/DOM_Inspector
    * https://developer.mozilla.org/en/Introduction_to_DOM_Inspector
    * DOM Inspector: https://addons.mozilla.org/firefox/addon/dom-inspector-6622/

  • Is there any way to edit the autocorrect dictionary?

    Autocorrect is potentially very useful, but it keeps throwing up mistakes and pointless alternatives. Is there any way to edit this list?
    FOR EXAMPLE: Whenever I type the word "word", iphone throws up "'Word" - complete with unwanted single-quote and capital W - and if I don't spot it in time, it inserts it. Another mistake is when it 'corrects' 'me' to 'mr', despite the fact that I don't normally use 'mr'.
    Is there any way to remove unwanted words in the autocorrect dictionary? Tapping the unwanted word - with its little 'x' at the end - doesn't delete the word from its use the next time. Furthermore, is there a way of ADDING a word that I know I'm going to need in the future? (Such as a friend's name)

    You can reset the dictionary back to default from the keyboard settings (or was it Reset area), either way, can reset the dictionary. No way to edit it. me should be more popular than mr and now sure why it is doing the Word thing.

  • Is there any way to edit and save an existing spreadsheet file that was not created from my iPad? I get excel spreadsheets emailed to me and would love to edit them on my iPad and not ever use my PC.

    Is there any way to edit and save an existing spreadsheet file that was not created from my iPad? I get excel spreadsheets emailed to me and would love to edit them on my iPad and not ever use my PC.

    Thanks. I tried an app called Office2HD and it does exactly what I need. I can even email my edited file from this app.

  • How to edit stored procedure from sqlplus ?

    Hi,
    Can anyone advise how to edit stored procedure from sqlplus ?
    Many thanks.

    You can get the source for an object from SQL*Plus by querying the user_source table, i.e.
    SQL> create procedure foo
      2  as
      3  begin
      4    dbms_output.put_line( 'foo' );
      5  end;
      6  /
    Procedure created.
    SQL> select text
      2    from user_source
      3   where name = 'FOO'
      4   order by line;
    TEXT
    procedure foo
    as
    begin
      dbms_output.put_line( 'foo' );
    end;Most commonly, though, if you are using SQL*Plus and a text editor to develop stored procedures, you will have all your stored procedures in .sql files that you edit and just use SQL*Plus to create (or recreate) the stored procedures.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Any way to edit words in spell checker?

    Since updating to ios5, my spell checker no longer recognizes my name when I type it in a message and tries to change it.  Any way to edit the words in the spell checker list so that it will again recognize my name?

    You can't edit the spell checked but you can press the little red x when it offers a suggestion.  Do this a few times and it won't offer that any more.  See p. 25 of the User Guide.

  • In Logic 9, is there any way of editing the take folders of, say, 7 different drum tracks at the same time, so that each track has the same changes applied to its takes?

    In Logic 9, is there any way of editing the take folders of, say, 7 different drum tracks at the same time, so that each track has the same changes applied to its takes?

    scottiewade wrote:
    Thanks. I know how to select multiple tracks in the mixer, did that and put on group clutch,
    Hi
    Wrong..
    To assign tracks to a group, click in the dark gray box just above the automation (Read/Write/Off etc) on a channel strip, and select the group number you wish to use. The first tim eyou assign a group, the Group Setting swindow will appear automatically, thereafter you need to click on the group area and choose 'Open Group Settings'.
    Make sure that you have turned off Group Clutch (this disables all Groups)
    Maybe this will help
    http://support.apple.com/kb/VI248
    CCT

  • Is there any way to edit Importing Parameters in BADI?

    Hi guys,
    Is there any way to edit the values of Importing Parameters in BADI? To be more specific, I need to edit plant in PR structure in IF_EX_IWO1_PREQ_BADI.
    Thanks.

    Hi sam,
    No it is not possible.
    Regards,
    Atish

  • Calling a stored procedure with default parameters

    Dear all,
    I am trying to call a stored procedure that has not all the parameters compulsory, and indeed, there are some I am not interested in. Therefore, I would like to call the stored procedure initializing only some of the parameters but if I miss some of them, I have an SQLException thrown. Is there any way to do that?
    Thanks
    Marie

    Hi
    One way to do it is ---
    By using Default Parameters you can miss few parameters while calling a procedure.
    =================================================================
    As the example below shows, you can initialize IN parameters to default values. That way, you can pass different numbers of actual parameters to a subprogram, accepting or overriding the default values as you please.
    Moreover, you can add new formal parameters without having to change every call to the subprogram.
    PROCEDURE create_dept (
    new_dname VARCHAR2 DEFAULT 'TEMP',
    new_loc VARCHAR2 DEFAULT 'TEMP') IS
    BEGIN
    INSERT INTO dept
    VALUES (deptno_seq.NEXTVAL, new_dname, new_loc);
    END;
    If an actual parameter is not passed, the default value of its corresponding formal parameter is used.
    Consider the following calls to create_dept:
    create_dept;
    create_dept('MARKETING');
    create_dept('MARKETING', 'NEW YORK');
    The first call passes no actual parameters, so both default values are used.
    The second call passes one actual parameter, so the default value for new_loc is used.
    The third call passes two actual parameters, so neither default value is used.
    Usually, you can use positional notation to override the default values of formal parameters.
    However, you cannot skip a formal parameter by leaving out its actual parameter.
    For example, the following call incorrectly associates the actual parameter 'NEW YORK' with the formal parameter new_dname:
    create_dept('NEW YORK'); -- incorrect
    You cannot solve the problem by leaving a placeholder for the actual parameter.
    For example, the following call is illegal:
    create_dept(, 'NEW YORK'); -- illegal
    In such cases, you must use named notation, as follows:
    create_dept(new_loc => 'NEW YORK');
    ===============================================================
    For more details refer URL http://technet.oracle.com/doc/server.804/a58236/07_subs.htm#3651
    Hope this helps
    Regards
    Ashwini

  • Is there any way to edit all the transitions in a project at the same time?

    I chose "insert with transition" when adding clips to my timeline, but the default is set for one second, which is longer than I'd like. I know how to change the duration of each transition one at a time, but is there any way to select all the transitions (there's about 90 of them) and adjust the duration for all of them at the same time?
    That's my main question, but I also would like to change the default cross-dissolve transition to be 15 frames instead of 30 for future projects. Anybody know if I can do that? I know I can create a 15 frame cross-dissolve and make it a "favorite", but it seems it would just be easier to change the default one instead.
    Thanks,
    Stephanie

    I know I can create a 15 frame cross-dissolve and make it a "favorite", but it >seems it would just be easier to change the default one instead.
    That's your only choice using FCE.
    Al

  • Is there any way to edit something in Premiere Pro if the (original) file is Windows Moviemaker?

    Hi!
    I always work with Premiere Pro CS6. A friend just asked to do a final edit (and export) of her video.
    But... she worked with Windows Moviemaker. Is there any way I can change or convert this file so that I can do the final edit in Premiere?

    I doubt there's a conversion that will enable you to import/convert a native Moviemaker project file into PP.
    You probably know this already, but the only way might be for your friend to export the timeline in a compatible format (AVI or MOV) and import to PP and pick up the edit from that point.
    I don't know Moviemaker, but you may be able to export individual video/ audio layers (as AVI or MOV), and reassemble them in PP.
    A PITB, but sometimes it's the only way.

  • Is there any way to edit phone number hyperlinks received in SMS messages prior to calling them?

    Just got a new iPhone 4s for work.  I receive text messages from an answering service containing phone numbers to return calls.  On my Windows smartphone, when I clicked the hyperlink for the phone number, it gave me the option to edit the number (for example, to add an area code prefix or *67 to block my number) prior to dialing.  Is there any way to do this on the iPhone 4s

    If not part of your iPhone backup, they are gone.

  • Editing Stored Procedures (SQL Server?)

    This may seem like a dumb question but I just finished my project for our Oracle data warehouse and now I need to move on to SQL Server to upgrade those procedures... does SQL Developer not support the editing of SPs for SQL Server? Are the SPs for SQL Server read-only?
    Using SQL Developer Version 1.5.0.53.58
    on Win XP box...
    Thanks!
    Tim

    Hello,
    Please try the following ones:
    http://msdn.microsoft.com/en-us/library/ms190669.aspx
    http://www.sql-server-performance.com/2003/stored-procedures-basics/
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Is there any way to EDIT email? Edit Headers? Like outlook did in system 9!

    I have found it extremely helpful to edit email headers when filing email for business etc. Is there any way (I can't find any) to edit email in 10.4 Mail?
    It was extremely easy to change email text and headers in Outlook for system 9.
    I just want to cut the cord to having to use OS 9.
    If not possible any other ideas for an editable email app?
    Thanks!
    Vince

    You can also try my solution (inelegant, but it works)
    Redirect to yourself, changing the subject line to whatever you want it to be. Then set mail to display by "date sent", to keep things in the proper order. This will allow you to keep the original senders email address, date, etc. in your messages, while the "save as draft" option changes the sender to you (every time - makes sense, I suppose). Even just moving the message to the drafts folder will change the sender to you.
    I had to do something because I maintain a website where most mail comes to me from a form with a preset subject line. Being able to change the DISPLAYED subject is critical to keeping the site updated properly. Since almost every other email client in the world allows this (while maintaining the original subject in a hidden field), I can only guess that Apple's motive in not allowing us to do this is to show that they have control over how we need to use our machines.
    Frisky
    G5 Dual 2.0   Mac OS X (10.4.4)   http://www.dachshund-rescue.org/

  • Is there any way to edit a finished movie on imovie?

    I was editing a video and it froze so i decided to save it to my theater. I found out I could add it to a new one but I'm not able to edit it. If anyone knows how to edit the movie that would be great. It is saved on my theater and iCloud. I need it by tomorrow. Thank you so much!
    I have the iMovie that comes with the most recent mac book pro.

    The easiest way to edit an existing movie is to go back to that movie's Project, make your changes and then re-make the movie. I think you can also import an already existing movie (File>Import Media...) but I would do that only as a last resort, like if you have thrown away the movie's Project.
    --Blaise

Maybe you are looking for

  • ITunes will not open (no error message and not running Norton 2005)

    I have recently upgraded to iTunes 7 and I now cannot get it to open after clicking on the icon. The iTunes.exe process comes up in the task manager briefly then disappears. There is NO accompanying error message and I am NOT running Norton Antivirus

  • Java Security Error while Launching the Application through JNLP

    Hi!, I have a problem in launching my Application through JNLP. It is giving the Error dialog as "Unable to lauch application" with the dialog title as "Java Security Error". I don't know why this problem is coming but when I have reset my profile on

  • Role granting issue

    Hi, I have created one role with some system privileges like create any table,dubug any procedure etc and with some object prvileges like select grant on DBA_TABLES, DBA_JOBS etc. Now I have granted the role to a different user where I have written a

  • Customize PO Approval Notification OA page

    Hi I am trying to customize PO Approval Notification. I want to add more attributes to the &PO_LINE_DETAILS. how to do it. presently. I made change in the workflow but it doesnt reflect on the page. Purchase Order Lines Line Item Number Rev. Item Des

  • Host function plus sudo command not working

    Hi, For normal command such as ls, it works. But when I run the following v_host := '/usr/bin/sudo -u devuser /test/app/dev/scripts/test.sh host(v_host); it does not work. anyone has idea ? Thanks. Ivan