Can't edit package

Is there a reason why I can create the specification and cannot edit it or the body? Do I need to have certain rights?
Thanks

Hello,
Hardly enough information. Please tell us about your environment, like database version, where the package is stored, how you connect to the db, etc.
Regards,
Arie.

Similar Messages

  • BUG 1.5:Can't edit package body in other user.

    This is getting ridiculous. I didn't really have time to do anything with pl/sql development during the EA period and now that I do, nothing seems to work.
    I have a package and package body owned by user x. I am connected as system.
    I can edit the package, but not the body. The edit window opens, and I can compile it but I can't make any changes in the editor.
    1.5 prod with jre
    windows xp sp2
    Oracle 11.1.0.6.0

    We don't have a date scheduled for the patch release. We're working on the key issues and will release the patch when these are done. We do not plan to make this a long drawn out process.
    Sue

  • Can you edit the text of a PDF that is placed in inDesign

    I have placed a PDF in inDesign and am curious if I can edit the text of that PDF while in inDesign.

    Edit it with Adobe Acrobat Pro, indesign can't. Option for Indesign is:
    of course overlay text with new text
    There is specialized software for editing PDF files, though the choices are much more limited and often more expensive than creating and editing standard editable document formats. Version 0.46 and later of Inkscape allows PDF editing through an intermediate translation step involving Poppler.
    Serif PagePlus can open, edit and save existing PDF documents, as well as publishing of documents created in the package.
    Enfocus PitStop Pro, a plugin for Acrobat, allows manual and automatic editing of PDF files, while the free Enfocus Browser makes it possible to edit the low-level structure of a PDF.
    In Acrobat you should use the TouchUp Text Tool.
    But in the end, PDF-files are not made for editing.

  • Can't edit in Indesign

    I created an Indesign advert.  I checked it for errors, all ok.  I packaged it.  Now I need to make a couple of minor amends but I can't edit it.  The only thing I can access is the last text box I created.

    Perhaps you did the layout n the master page, or the objects or layer are locked.

  • Can you edit an archived project?!?

    I have a wedding project archived through iDVD08. I want to replace one song in the Reception of the movie. I do not have my original iMovie files anymore due to file size and hard drive limitations.
    Does anyone know if I can re-edit my archived project?
    Thanks to all!
    Greg

    OK... the Archive is a package. Control-click on it and select 'Show Package Contents'. Then the path is Contents>Resources>Assets>av Your movie clips will be in the av directory. COPY the movies you want and paste them in a new location. DO NOT simply drag them out of the package!!!!!!!

  • EA 2.1. Can't edit another users store procedures.

    I can't edit store procedures of another users in 2.1 ea version but i can compile it.
    In 1.5.5 i can edit the same store procedure.
    DB version 10g
    thanks.

    I tried the following:
    create user attest2 identified by xxxxxx;
    grant connect to attest2;
    grant create procedure to attest2;
    grant alter any procedure to attest2;
    grant create any procedure to attest2;
    grant execute any procedure to attest2;
    Now using SQL Developer 2.1 RC1 i can log in with attest2, i can see other users and all their packages, i can open the package and body, the cursor is in the editor but i can't type a thing. The compile button is active and working, but editing is blocked. Creating a procedure under attest2 schema and editing it there works fine.. Using a user with dba privileges also works fine.
    No problem in editing other users' procedure with SQL Developer 1.5.4.
    I have pretty much the same configuration as the original poster - XP SP3. Database 10.2.0.4
    Andres

  • How can I edit /update windows registry through Dev. 6i Form?

    I want to manipulate windows registry through dev 6i form, i.e. I want to create a new key and assign value to it or want to retrieve a value from registry key, how can I edit /update windows registry through Dev. 6i Form?
    Sincerely,
    Farhan Mazhar

    I dont remeber the exact name but there is a built in package to do that. have a look at the built in packages node in the navigator tree. (Get_var?).

  • Can not compile package

    Hi,
    I have package and it is invalid. When I try to compile it starts to compile but not stop. I think it is locked or something else. I renamed it and compiled and it worked. Functions in package runned also.
    But I want the orginal package to run.
    Does anyone has idea about this problem?
    Thanks in advance.

    If you have killed all the session using this package, it may take sometime to rollback the transactions. Mean while also make changes in the package, so that it commits its transaction at the end of logical transaction end otherwise you will face this issue again. After sometime you can compile the package.
    Other option may be to restart the database in restricted mode. Make your changes, compile the package and then put the database in normal mode.
    Regards
    Edited by: skvaish1 on Apr 9, 2010 10:27 AM

  • The Function Modules that can assign a Package & transport request no...

    Dear All,
                   I am creating a Program that will automatically create  Data Elements & Domains in SAP & assign the same to a Package & Transport request No...Well I have been able to create & activate the data elements & domains using Standard SAP Function Modules, but I am looking for the Function Modules that can assign a Package & transport request no. to these data elements & domains....Can anyone tell how to achieve this requirement...

    Hi,
    may be you have to use a classified task, we used
    FORM tr_request_choice  CHANGING pv_trkorr TYPE trkorr.
      TYPE-POOLS:
        trwbo.
      DATA:
        ls_request                            TYPE trwbo_request_header.
      CALL FUNCTION 'TR_REQUEST_CHOICE'
        EXPORTING
    *   IV_SUPPRESS_DIALOG                    = ' '
    *   IV_REQUEST_TYPES                      =
    *   IV_CLI_DEP                            = ' '
    *   IV_REQUEST                            = ' '
    *   IT_E071                               =
    *   IT_E071K                              =
    *   IV_LOCK_OBJECTS                       = ' '
          iv_title                            = 'Choose request, Task will be found'
    *   IV_START_COLUMN                       = 3
    *   IV_START_ROW                          = 7
    *   IV_WITH_ERROR_LOG                     = 'X'
    *   IV_NO_OWNER_CHECK                     = ' '
        IMPORTING
          es_request                          = ls_request
        EXCEPTIONS
          invalid_request                     = 1
          invalid_request_type                = 2
          user_not_owner                      = 3
          no_objects_appended                 = 4
          enqueue_error                       = 5
          cancelled_by_user                   = 6
          recursive_call                      = 7
          OTHERS                              = 8
      IF sy-subrc                             = 0.
        SELECT trkorr
          INTO pv_trkorr UP TO 1 ROWS
          FROM e070
          WHERE trfunction = 'S'
            AND trstatus = 'D'
            AND as4user = sy-uname
            AND strkorr = ls_request-trkorr.
          EXIT.
        ENDSELECT."rkorr into pv_trkorr
      ENDIF.
    ENDFORM.                    " TR_REQUEST_CHOICE
    Regards,
    Clemens
    Edited by: Clemens Li on Dec 15, 2010 2:36 PM

  • How can i edit script component in another machine?

    Hello everyone,
    i am using sqlserver data tools to build a package..
    i have alot of script components...the problem is i wrote this package in machine A ... when i take the whole solution in machine B 
    i can not edit or see the script components projects files etc...
    am i missing an atribute at package solution/project file?
    because in ssis 2008 r2 version i can edit all of components (script componet,oledb source component...etc.)
    ...but  in 2012 version of ssis i can not edit script component project..
    thanks a lot..
    evgeni

    Evgeni
    because in ssis 2008 r2 version i can edit all of components (script componet,oledb source component...etc.)
    ...but  in 2012 version of ssis i can not edit script component project"
    I guess you need to upgrade the package/solution 1st to the SSIS 2012 format.
    You need to go to Start-Microsoft SQL Server 2012->Integration Services and choose
    Project Conversion Wizard .
    Once the project (not just a package) is converted to SSIS 2012 open it in SSDT, access your Script Component and then choose
    Design Script button
    Arthur My Blog

  • Powerpill portable, pacman -Su , can not upgrade packages

    in home I do not have internet  connection . so I use powerpill portable and I download all packages I need in work place and move thme to home and I run sync and after run sync , I run pacman -Su for upgrade all packages and it work for me good and everything was good , but yesterday when I run pacman -Su , I see message about first need upgrade pacman , and I choose yes for upgrade pacman , but I see error about dependency and pacman can not upgrade and other packages can not upgrade ,
    when I run this command
    pacman -Su
    I see this error
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: perl-xyne-arch: requires pacman<3.5
    and pacman can not upgrade and I can upgrade other packages
    Last edited by mfaridi (2011-03-30 14:30:00)

    karol wrote:
    mfaridi wrote:How I can safely do this and remove powerpill with all dependency and do not loose my system ?
    Try the usual 'pacman -Rns powerpill'.
    I run that command , when I run this
    pacman -Su
    I see these error
    error: could not open file /var/lib/pacman/sync/core.db: Failed to open '/var/lib/pacman/sync/core.db'
    error: could not open file /var/lib/pacman/sync/extra.db: Failed to open '/var/lib/pacman/sync/extra.db'
    error: could not open file /var/lib/pacman/sync/community.db: Failed to open '/var/lib/pacman/sync/community.db'
    :: Starting full system upgrade...
    there is nothing to do
    I go to this directory
    var/lib/pacman/sync/
    and I can not find db files

  • I need to convert PDF file to Word Document, so it can be edited. But the recognizing text options do not have the language that I need. How I can convert the file in the desired of me language?

    I need to convert PDF file to Word Document, so it can be edited. But the recognizing text options do not have the language that I need. How I can convert the file in the desired of me language?

    The application Acrobat provides no language translation capability.
    If you localize the language for OS, MS Office applications, Acrobat, etc to the desired language try again.
    Alternative: transfer a copy of content into a web based translation service (Bing or Google provides a free service).
    Transfer the output into a word processing program that is localized to the appropriate language.
    Do cleanup.
    Be well...

  • Can i edit my game center account to stop sharing friends and games from another apple id that associated with my own new apple id.how to reset it without losing my apple id and i can stiil use it?

    Can i edit my game center account to stop sharing friends and games from another apple id that associated with my own new apple id.how to reset it without losing my apple id and i can stiil use it? Because i've made lot of paid purchases using this apple id. In my game center account i have so many games data that i'd never installed.i wanna  stop sharing  friends and games with this xxx apple id in my old ipad version ios 4.2. and i can still keep using this apple id in my new ipad 3rd gen version ios 6 without sharing game and friends with this xxx apple id? and how to remove the games data that i never downloaded in my ipad but still registered at my game center account.i wanna keep using this apple id coz so many fav application i've purchased from this id. the answer as soon as possible if there is some one can help me to solve it.thank u for reading my question and very big thanks for anyone who  can give me a helpful answer.                 

    Why do you ask in the iWeb forum?

  • While generating a crystal report can we edit database fiels in field explorer (at middle can we edit database fields)

    while generating a crystal report can we edit database fiels in field explorer (at middle can we edit database fields)

    Wrong forum to post the question, try to post the question in crystal reports community.
    Its not possible to edit the database fields while creating the reports, its only used to call the rows of values in it. Can you explain me in detail what are you actually looking for .
    --SumanT

  • While generating a crystal report can we edit database files in field explorer ?

    Hi,
    while generating a crystal report can we edit database files in field explorer (at middle can we edit database fields)
    Regards,
    Mahendra

    Wrong forum to post the question, try to post the question in crystal reports community.
    Its not possible to edit the database fields while creating the reports, its only used to call the rows of values in it. Can you explain me in detail what are you actually looking for .
    --SumanT

Maybe you are looking for

  • Material ledger activity rate revaluation account determination modification

    Scenario: SAP ECC 617 Material ledger activated with activity rate revaluation (i.e. cost center over/under absorption posts to ML and not to production orders) Standard SAP setup has PRV transaction key used to post both multi-level price difference

  • How to format sqlplus output

    In previous OTN Forum format we used {code} to format sqlplus output , how to do in this version ?

  • Can i avoid _ser and _deser files?

    I have a simple bean object that one of my web service uses as an input parm. when i generate my server side, that bean generates a ser and deser file (which extend BeanSerializer and BeanDeserializer). Can I extend those classes myself in my bean so

  • Prerender selection in Motion 5?

    Motion 4 had s thing like "export selection" and a choice of putting the result back to the project. Is there any such a feature in Mo-5? I dont see... please?

  • Problem with Migration assistant permissions on User Home

    I bought a shiny new mac air, and wanted to transfer my user account "bruce" from the old computer to the new one.  I created an account "rachel" on the new computer, plugged both computers into hub and ran migration assistant.  When I attempted to l