Regarding deletion of objects under one package

Hi All,
I have an obselete Z package under which there are more than 15 objects( 10 tables, views, FM). Please suggest is there any method in which i can delete all objects in one go.
Thanks,
Shobhit

Hi,
Goto SE80 transaction. Choose Package from the Dropdown. It will list all the objects attached to the package. From there, you can delete all.
Regards
Srini

Similar Messages

  • How to delete all objects in a package?

    Hello,
    I've seen a similar question here. But is there a tool or a smart way to delete all objects in a dev class or a transport request?
    Best Regards
    Volker

    These are really 3 questions??
    1. To delete objects in a request there are a number of ways, here is one:
    Position cursor on modifiable request.
    Double click on request and choose 'Objects' tab
    Choose object line you want to delete and click 'Delete'
    Save your changes.
    2. To delete objects in a Dev Class:
    Go to work bench --> edit object, Class and give your class name, you will see delete option at the bottom of the screen.
    3. How to delete all objects in a package:
    here is a link with the steps you need for this: http://benxbrain.com/en/index.do?onInputProcessing(brai_object_thread)&001_threadid=0000161442&sysid=WP5&pgmid=R3TR&object=DOMA&obj_name=DEVCLASS&child_param=

  • How to delete all objects for one user from SE80

    Hi all,
    If i want to delete the customer objects defined in the customer space Y or Z from SE80. Object of one user is defined in one package, if i want to delete the pakcage it says, it contain the subobject. So can anybody help me how to delete the customer objects from SE80.
    Your response will be highly rewared.
    Tahnks,
    Salahuddin.

    hi
    good
    i think here you want to delege the development class, if you want to delete the particular development class you have to go for se09 where after selecting the particular development class you can select the delete button.
    thanks
    mrutyun

  • How to Transfer Objects from one Package to another?

    Hi,
    I have Objects(Form Layouts,ABAP Programs....ect) in Package. Is there a particular Transaction that could be used to move these objects to another Package.
    Thanks
    Kishan

    Hi,
    You can also find more detailed explanation at <a href="http://help.sap.com/saphelp_erp2004/helpdata/en/d1/801972454211d189710000e8322d00/frameset.htm">this link</a>.
    Regards,
    Anand Mandalika.

  • Listing all Ogranisation Objects under one org model

    Hi
    I would like to create a list of organization(s) created under one org model.  I had searched for Organization model related tables , I could get all organization objects in table HRP1000 , but here I am having Ogr Objects other then my Organization Model as well.
    What I am looking for
    For Example : If I am having following ORG structure
    ORG Root
         ORG Region 1
         ORG Region 2
              Position 1
         ORG Region 3
              Org Region 3.1
                   Position 1
    My objective is to find a way (Table/ Report program ) to create a list of all O Org objects under ORG Root

    Olaf, JJordheim,
    Thank you for quick response. Some users will have Content Manager and possibly System Administrator, User roles.  I was wanting to know if there is a method we can prevent  these Super users from  making changes by setting
    some folder parameter value. 
    Are you stating I should remove the Content Manager and Publisher for the Super users?
    Thanks
    Joe

  • How to delete recurring objects in one shot

    I have a logo that appears on 50+ pages that now needs to be removed. I was hoping I could choose it in Links and hit a delete button and have all of them gone in one fell swoop. But there's no delete option there. Can this be done at all, and how?
    Thanks!

    Is the logo on a master page? If so, it would be a one time delete.
    Here is the kludge suggestion of the day... create an Illustrator file with nothing in it, save. In Indesign, relink to the blank .ai file with "Relink All Instances of" selected. This is of course you don't mind that all the original frames remain, but containing a blank graphic file.

  • Error while transporting objects from one package to another

    Hi Everyone,
    I am using a FM 'HR_INFOTYPE_OPERATION' to update a value into a table pa0584 table.
    If i try to upload all the values i am getting a return value like " No of Entries exceeds more than 20".
    So please help me out.
    Thanks
    Vijay

    Hi,
    You can merge your different requests into a single request. goto se09  select any one of your request and in menu,
    Utilities -> Reorganize -> Merge Requests. or press CTRL + F12.
    hope this helps u.,
    Thanks & Regards,
    Kiran

  • How do I move objects from other package to a newly created one?

    How do I move objects from other package to a newly created one?
    Thanks!

    Dear Anthony Pham ,
    for changing objects from one package to another package
    open that object for example Report
    open the report and than click GOTO select OBJECT DIRECTIORY ENTRY
    than it will open a popup in that popup click the change and give the new package
    Thanks
    Surendra

  • How to move an object from one Transport Request to another TR

    Hi,
    I have created an object under one TR instead of Required TR.
    Now i need to move that object to apropriate TR.
    Please suggest me the way.
    Thanks,
    Sekhar.J

    Go to SE10 select the Request and press Include Objects button( a box with a arrow above it) and select freely selected objects and add your object to the request. Before doing this you may be required to delete the object entry from the source request.
    Regards
    Karthik D

  • Delete all the objects in a package

    Hi Guys,
    My requirement is that i need to write a program to delete all the objects in a package. In the selection screen i enter the package name and then i get all the objects in the package from TADIR table and display them in an ALV.
    There when i select a object and press the delete button ,the object (program ,table, domain,data element etc..) should be deleted .
    For this i tried to DEBUG in SE80 and tried to know how SAP is trying to delete the object. But i couldnot unterstand which Function Module or which Class and Method it uses to delete an object.
    Guys please let me know how it can be done.
    Regards,
    Chaithanya.

    hi
    check this ...
    REPORT  zxxxxxx.
    TYPE-POOLS: slis.
    DATA: x_fieldcat  TYPE lvc_s_fcat,
          it_fieldcat TYPE lvc_t_fcat,
          g_grid    TYPE REF TO cl_gui_alv_grid,
          x_layout TYPE lvc_s_layo,
           g_custom_container type ref to cl_gui_custom_container,
            g_container type scrfname value 'I_CONTAINER'.
    types: BEGIN OF ty_itab ,
            check(1) TYPE c,
           PGMID LIKE TADIR-PGMID,
                 END OF ty_itab,
    data:itab type standard table of ty_itab,
           itab1 type TADIR.
      call screen 100.
    *&      Module  STATUS_0100  OUTPUT
          text
    module STATUS_0100 output.
      SET PF-STATUS 'ZSTATUS100'.
      if g_custom_container is initial.
        create object g_custom_container
               exporting container_name = g_container.
        create object g_grid
               exporting i_parent = g_custom_container.
    SELECT PGMID
      FROM TADIR
       INTO CORRESPONDING FIELDS OF TABLE itab where DEVCLASS = selection screen package
    x_fieldcat-fieldname = 'CHECK'.
    x_fieldcat-seltext = 'CHECK'.
    x_fieldcat-checkbox = 'X'.
    x_fieldcat-edit = 'X'.
    x_fieldcat-tabname = 'ITAB'.
    x_fieldcat-col_pos = 1.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    x_fieldcat-fieldname = 'PGMIDt'.
    x_fieldcat-seltext = 'PGMIDt'.
    *x_fieldcat-edit = 'X'.
    x_fieldcat-tabname = 'ITAB'.
    x_fieldcat-col_pos = 2.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    CALL METHOD g_grid->set_table_for_first_display
      EXPORTING
        IS_LAYOUT                     = x_layout
      CHANGING
        it_outtab                     = itab
        IT_FIELDCATALOG               = it_fieldcat.
    endif.
    endmodule.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    module USER_COMMAND_0100 input.
    DATA: ls_outtab LIKE LINE OF itab.
    DATA: l_valid TYPE c,
          ok_code like sy-ucomm,
           r_ucomm LIKE sy-ucomm,
           ls_celltab TYPE lvc_s_styl,
          lt_celltab TYPE lvc_t_styl,
          l_index TYPE i.
    CALL METHOD g_grid->check_changed_data
      IMPORTING
        e_valid = l_valid.
    IF l_valid EQ 'X'.
    case sy-ucomm.
    when 'DELETE'.
    LOOP AT itab INTO ls_outtab where check = 'X'.
       move ls_outtab-object to itab1.
      delete TADIR from itab1.
    ENDLOOP.
    endcase.

  • Delete and insert same Object in one transaction?

    Hi all,
    Can be possible in one transaction delete and then insert same object into the database?
    If I want change PK in some record in DB, then I must delete the Object and then insert new Object (row). And this I want realize in one transaction - Unit of Work.
    Is this possible?
    Thx advance,
    best regards,
    KLD
    P.S. Sry for my English

    Generally not always a good idea, but may be possible. If you are using JPA, you should be able to do a flush() after deleting the object, then re-persist the new one.
    For the UnitOfWork API, writeChanges() is the same as flush, but it only allowed to be called once, so you may need to use the RepeatableWriteUnitOfWork, or performDeletesFirst option.
    Or just use two separate units of work.
    James : http://www.eclipselink.org

  • I seam to have two Apple accounts under one email address. Can I delete the old one?  How do I do this?

    I seam to have two Apple accounts under one email address. Can I delete the old one?  How do I do this?

    KBS wrote:
    I seam to have two Apple accounts under one email address.
    Are you sure ? As far as I know an Apple ID can only be associated with one email address.
    Go to My Apple ID and click Manage your account
    KBS wrote:
    Can I delete the old one?
    Apple IDs cannot be deleted.
    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    More Info  >  http://support.apple.com/kb/HT5622
    And here >  http://www.apple.com/support/appleid/

  • Info-objects of an Info-provider under one Transport request

    Hi All,
    I am in the process of transporting the Objects from development to QA environment,
    As a first step in the transport process, i need to transport the info-objects before transporting other info-providers, transformations etc,
    i have several info-providers like BBP_PO, SC, SCA etc, which inturn has more than 100 info-objects that needs to be put under seperate transports.
    Say i have info-provider ZBBP_SCA which has 50 info-objects, i need to put those 50 Info-objects in one transport request and then info-provider ZBBP_SCA in another transport request and then its transformations etc.
    Can anyone tell me the steps of only collecting the necessary info-objects of ZBBP_SCA alone to be put under one transport.
    I tried to do that, but it is collecting all the info-objects, info-areas related to ZBBP_SCA, instead of collecting only necessary objects of ZBBP_SCA.
    I will assign points for sure
    Can anyone help
    Thanks in advance
    Pooja

    Hi pooja,
    So your intention is not to include anything other than target in second request.
    For this right click over the object from where you dont intend to transport and say donot transport any below in transport connection.
    The reason for target also showing the info objects and so on is that they are all necessary to form this cube definition.
    Anhyhow, as you have ensured to collect them seperately go ahead with the approach mentioned above.
    Naveen.A

  • How to delete sotware component,SWCV and all objects under SWCV

    Hi All,
    how to delete sotware component,SWCV and all objects under this SWCV. Since i have imported all the SWC, SWCV and all interface , mapping object. I want to delete all these imported objects and re import these objects again. Please let me know how to do that.
    Thanks in advance.
    Kalpana

    You will have to delete all the objects under the namespace (then activate the changes), then delete the namespace and then finally delete the SWCV !!
    More ref this latest thread on the same subject: how can i delete software component in the IR

  • Log for Addition/Deletion of object in a Transport Request

    Dear Friends,
    Recently I had a issue where I tried deleting an object from a transport request and I got the message that object is deleted successfully.
    But when the transport was imported then it failed with Sy-subrc 8 because of the same object in transport.  The reason for the same could be :
    1.) Either the object was not deleted from the transport request.
    2.) Or Some one else added the same object again in the request.
    I want to read the log of this transport in such a way that I see when a object has been added/deleted from a transport request along with SAP User ID of the person doing it.
    Is this possible ? If so kindly share the steps with me.
    Thanks a Lot for your kind help!!! This is very important for me....
    Regards,
    Lalit

    Hello Lalit
    I hope nothing of that sort is available as the transport requests will again have tasks under them.
    The changes done to  the task will have to be tracked in that case but SAP doesn't have that task change logging as far as I know.
    All E0* tables relates to transports and objects under these transports none of them have logs on this nor even any transactions which allow user to edit the transport object.
    You get an action log which provides who created it and who releaed them.
    But if you configure CharM on Solution manager I hope you can track each changes.
    Regards
    Vivek

Maybe you are looking for