Deleting multiple transport tasks

Hi there ABAPers
please tell me if there is some way to delete multiple transport request tasks? I mean I have a list of transport requests and I would like to delete them, but clicking every single reguest and deleting it manually is time consuming (when You have for example 100 transport requests)
Maybe You know some clever way to do it in a mass? will be thankful for  tips. Greeting. P.

Hi,
So you want to delete multiple transports from the STMS import queue?  You can select multiple single entries or blocks of requests. 
Position the cursor on the start of the block and choose Edit -> Select -> Select Block, then position the cursor at the end of the block and choose the same menu option again.
If you were aware of this already then I afraid that's as quick as it gets.
Regards,
Nick

Similar Messages

  • How To Delete Multiple Query Elements in a Transport

    Guys,
    How do you delete Multiple Query Elements in a transport in DEV? Or it's not posible.  I tried to select multiple but only one is being deleted.
    Thanks,
    Recca

    Hi Recca,
    As Nanda said, just go to tcode SE03..Click Unlock Objects (Expert Tool)..Paste your TR number (one at a time) then click Unlock..
    Go back to SE10 and delete your TR numbers..
    Regards,
    Loed

  • Can we have multiple transports for the same object.

    Hi guys,
    Can we have multiple transports for same object in dev system. Can anyone tell me how can this be done.
    Thanks

    Its not possible for the same development object. Only 1 person can access an object at a time and if mutiple users modify an object new TASKs are created under the same TRANSPORT.
    Only after releasing the tr you can create a new tr on the same object.
    Message was edited by:
            Abhishek Jolly

  • How to find multiple transport requests for one object

    Hi all,
    Is there any function module which will fetches multiple transport requests ( if created ) for one object.I tried almost all the function modules , but i didn't got the solution.
    I need to develop a report ,   which will takes a single Task number as input and gets the Request number from table E070.
    Based on that Request Number i will fetch remaining Task numbers under it.
    Then for all the Tasks Numbers, i am fetching their  objects by using table E071.
    I need to list out  whether any of these objects are in multiple Transport Requests. Once i got all the Transport Request numbers i need to release the Request based on their Transport Request sequence.
    I tried the following FM's , but not able to get the solution.
    SVRS_DISPLAY_VERSION_LIST
    SVRS_GET_VERSION_DIRECTORY_46
    SVRS_GATHER_REQUEST_FRAGS
    Thanks..

    Hello
    I have tried with below code
    DATA list_tab TYPE TABLE OF abaplist.
    SUBMIT RSWBO040 USING SELECTION-SET 'TEST'
                    EXPORTING LIST TO MEMORY
                   AND RETURN.
    CALL FUNCTION 'LIST_FROM_MEMORY'
       TABLES
         listobject = list_tab
       EXCEPTIONS
         not_found  = 1
         OTHERS           = 2.
    IF sy-subrc = 0.
       CALL FUNCTION 'WRITE_LIST'
         TABLES
           listobject = list_tab.
    ENDIF.
    break-point.
    Submitting the program(RSWBO040) of SE03 transaction a will result in 'CNTL_ERROR' dump.
    Please try some other options
    Thanks

  • CHaRM-Is that possible to create multiple Transport Request in UC

    HI Gurus,
    Quick question on ur.gent correction using Solution Manager CHaRM in EHP1. Is it possible to create multiple transport request(TR) for single ur.gent correction (UC). DO NOT confuse with transport task.
    For example, after I created transport request and developer start working and release the task, realised to add another transport request for same UC. When I tried, it did not create any TR but checked the message found that
    Schedule Manager: Monitor
    Job Status: Processing completed, but with warnings
    Program Name: /TMWFLOW/SCMA_TRORDER_CREATE
    Action to be checked: Ur.gent Correction: Create Transport Request
    There is already an open request, XXXXXXXXXX, for this project
    So only way I can do that I released the TR and able to create another TR.
    May be wondering why I need to create another TR, why not create TASK and work on that.
    But this is the requirement at our company.
    I will appreciate the effort and time to provide me the solution of this.
    Thanks
    Ava

    Hi Ragu,
    That's really quick turn around. Unfortunately not able to found whatever you mentioned in your message. Here is detail,
    I navigate to Actions - Depending on Status, found the entry as
    Trans. Type     StatProf         UserStatus     Seq     Action in SAP Change Manager
    SDHF             SDHFHEAD   E0002            10       CREATE_HF
    SDHF             SDHFHEAD   E0002            20       CREATE_REQ
    SDHF             SDHFHEAD   E0002            30       SAVE_PARTNER
    SDHF             SDHFHEAD   E0002            40       SET BO LINKS
    Where SDHF - Ur.gent Correction
               E0002 - In Development
               CREATE_HF -        Create an Instance in SAP Change Manager
               CREATE_REQ -     Create Transport Request with Task
               SAVE_PARTNER - Save Partners in Respective Partner Roles
               SET BO LINKS -     Sets Links to Business Objects
    I don't see any OPEN_TR.
    Any other place need to make change.
    Thanks
    Ava

  • To delete multiple records

    hi all,
    Can any tell tell me how to delete multiple records in table control of a screen
    i have checked the multiple rows in table control attributed and assigned a name.I needhelp in writing code.
    Thanks

    hi,
    As you have marked multiple fields in the table control your table control is mulple selection enabled.
    <b>PROCESS AFTER INPUT.</b>
    loop at IT_CONF.
        field X_CONF-CHECK
          module TC_CONF_mark on request.
      endloop.
      module TC_CONF_user_command.
      MODULE USER_COMMAND_0102.
    *this modifies the internal table with check field as X
    module tc_conf_mark input.
      data: g_tc_conf_wa2 like line of it_conf.
      if tc_conf-line_sel_mode = 1.
        clear g_tc_conf_wa2.
        loop at it_conf into g_tc_conf_wa2
          where check = 'X'.
          g_tc_conf_wa2-check = ''.
          modify it_conf
            from g_tc_conf_wa2
            transporting check.
        endloop.
      endif.
      modify it_conf
        from x_conf
        index tc_conf-current_line
        transporting check.
    endmodule.
    module tc_conf_user_command input.
    * write code to handle table control scrolling /pageup/pagedown
    endmodule
    *Check the ok_code
    module user_command_0102 input.
        case ok_code.
          when 'DEL'.
           * Delete from internal table where check = X
        endcase.
    endmodule.                
    <b>PROCESS BEFORE OUTPUT.</b> 
      module TC_CONF_change_tc_attr.
      loop at   IT_CONF
           into X_CONF
           with control TC_CONF
           cursor TC_CONF-current_line.
        module TC_CONF_get_lines.
      endloop.
    module tc_conf_change_tc_attr output.
      describe table it_conf lines tc_conf-lines.
    endmodule.
    module tc_conf_get_lines output.
      g_tc_conf_lines = sy-loopc.
    endmodule.
    Thus you will delete the marked lines from the internal table in PAI and in PBO you can read the refreshed internal table without the table entries that are marked as deleted in the table control and display the same in the table control. This is another way.
    Regards,
    Richa

  • To delete the transport request.

    when i'm trying to delete the transport request by using se09, it responses with " Request/task BWDK916118 cannot be deleted because it contains locked objects." That request is created by me. It showing same name but it will not allow me to delete. Please help to delete how to delete that request.
    Thanks
    Satish

    Hi..
    Basically you are getting this messge because first you have to delete all the objects of the underlying sub requests and then the subrequests ......then finally the actual request.................
    Secondly, it is better to unlock all the objects first so that you can delete all the objects at a time..............because if  you have to delete all the objects one by one.....and if each requests contains 100s objects then it is very tedious to delete all the objects one by one...
    Go to SE03 --> There you will get the options "Unlock Objects (Expert Tool) " --> Click over there --> give the subrequest nos and unlock it....
    Then go to SE01 --> Click on "Objects" tab --> You will get the change button --> click on it --> Select All and Delete at a time...
    Regards,
    Debjani..

  • How to delete unreleased transport request where the objects are locked

    Hi Experts,
      I was created a transport request, but I am facing some probelms with taht request, now I want to delete transport request. I tried to delete them in SE10, I am getting message that the objects are locked. Please tell me how to delete unreleased transport requests where the objects belong to this transport request are locked.

    Hi,
    First go to transaction se03 Choose "Unlock Objects (Expert Tool)" option under "Requests/Tasks" and unlock your task,
    Than go to se10 and delete what you want.
    I hope it helps.
    Bulent

  • Deleting multiple messages

    I have a Macbook Pro, I now have Mountain Lion. Previously with Snow Leopard to delete from mail a group of messages from one source, you just scrolled down all the messages - it to a couple of seconds - and then press delete - easy! Why now do you have to click on every message - it is cumbersome and takes time and I am therefore not erasing my emails - and keep getting messages that my inbox is full!
    Please can someone give me a simple explanation of how I can multi delete - and if not can someone from Apple explain why they took this simple but useful task away when they created Mountain Lion. In fact I find the whole Mountain Lion mail display system over complicated and having used it now for several months I still hate it and still dont understand it. It may be great for people who are computer savy but for the likes of me it is awful.
    Thanks!

    Many thanks for your swift reply, however clicking on every message is what I want to avoid it is far too time consuming. Is there not a way that I can scroll down (as with Leopard) highlighting all the messages (sometimes there are up to 20) rather than clicking each one individually. If there is not why did Apple choose to remove this? It was obviously used a lot, as many people are now asking how they can delete multiple messages.

  • Delete modifiable transport with locked objects (SE10)

    Dear Forum,
    I have a request from a developer who wishes to have a transport deleted from SE10. the transport is in status modifiable, but it has locked objects. So when i try to delete the transport the system warns me that "Request/task XXXK900962 cannot be deleted because it contains locked objects".
    What is the "SAP Best Practice" way to get rid of this transport? Please explain in detail.
    Any input will be greatly appreciated!
    Thanks in advance,
    Kind Regards,
    Soren

    Hello Eric,
    I am facing an issue after deleting a repair object in the task.
    I could not add this entry in the task as it is not allowing. The object type is as below
    R3TR MCIN S901 (Its a change to info structure from SPRO - IMG activity)
    Now when I want to change the object, it is giving error.
    When I want to add same obj in the repair task manually it is not allowing.
    Can you please give me any suggestion.
    I believe as you said, when I delete a locked object, the traces that the object has been changed are deleted and hence it is giving the error.
    Is there any way to manually restore the object?
    Can I add the object using TR_APPEND_TO_COMM_OBJS_KEYS?
    Regards,
    Pratyusha

  • FM or BAPI to delete a transport request or any object of a transport

    Hi Experts,
    Is there any FM or BAPI to delete a transport request or any object of a transport request.
    Thanks
    Yogesh Gupta

    Hello Yogesh,
    See if this helps:
    If you want to delete a transport from a system queue try FM TMS_UI_MAINTAIN_TR_QUEUE. Just mantain parameters IV_SYSTEM, IV_REQUEST and IV_DEL_REQUEST.
    If you want to delete a request, try using FM TRINT_TDR_USER_COMMAND. Just maintain parameters like this:
    IV_OBJECT = YOUR REQUEST ID
    IV_TYPE = 'TASK'
    IV_COMMAND = 'DELE'
    If you want to delete an object, just put a breakpoint in this FM to see it's logic.
    Kind regards,
    Bruno
    Edited by: Bruno Garcia on Aug 19, 2008 10:31 AM

  • How can i delete a transport request?

    Hello:
    I only speak a little english. I wait that you can understand me.
    I have a transport request that is released. I make bad this request and i need delete it. But, when i go to se10 and I try to delete I recive this messagge:
    Request/task ____ already releaded (not modificable).
    How can I delete this request?
    Thank you very much.
    Report RDDIT076 is internal and should not be executed by customers.
    - Reported by Jason ORiordan
    Message was edited by: Suhas Saha

    Hi,
    It is easilly possible to delete the cofile and the datafile of the released transport request but why would you need to do that ?
    It is also possible to delete a transport request in the transport tables but it is a very bad idea and could even be seen as a temptative to hide a forbidden action in the system.
    It will be seen by a security audit as this would create a hole in the request order numbering.
    You would need to use direct database access to delete a released transport request.
    As I told you before, I would NOT do it as it is hasardous et may generate security audit problems.
    You can also destroy your transport system.
    Transport requests are stored in table E070.
    We only modify the e070 table after system copy by database refresh to reset the next transport request number. It is done by inserting a line in the table. We never delete inside this table.
    Use at your own risk !
    Regards,
    Raj.

  • How to delete a transport request easily?

    Hi Gurus,
    I need to delete a transport request. Unfortunately, I received an error that says
    "Request/task BWDK903562 cannot be deleted because it contains locked objects".
    So, in order to delete that transport request, I have to first delete all objects contained in that request. However, there are just too many of them if I were to do it manually one-by-one.
    Is there any approach where I could delete this transport request easily without first deleting all objects contained in that request?
    Thanks you in advance.

    Hi Fulham,
    A transport request cannot be deleted with locked objects. So you have to first unlock the objects in the request. To do this: SE03 --> Request Task --> Unlock Objects.
    The in SE10 select the request you want to delete and expand. Then right click on the sub node of the request and delete. Then Select the main request and delete.
    Hope this helps.
    Bhargava

  • How to delete Multiple Artists in one action?

    Hi,
    I want to do a big clean up on an iTunes library with over 4000 albums.
    How can I delete multiple Artists in one action?
    It looks like I can only delete 1 Artist at a time, and then this action shoots me to the top of the list.  Which is a pain then having to scroll back down through such a huge list to then delete the others one at a time... each time being shot back to the top of the list.
    For example I have the following artists;
    The Alarm 01 – 1 song
    The Alarm 02 – 1 song
    The Alarm 03 – 1 song
    The Alarm 04 – 1 song
    The Alarm 05 – 1 song
    The Alarm 06 – 1 song
    And I want to delete them all in 1 action.
    Can this be done?  How best to do it?
    Thanks in advance,
    Dave

    You can't delete "artists" - just songs (or songs grouped into albums).  When iTunes displays the library or a playlist in Artists view it is doing so using the metadata values set in the relevant songs.  If you're looking at this view:
    then your selections in the left pane - the artists list - is filtering what you see on the right.  When you select Delete via the keyboard or via a right-click operation, you are initiating an operation to delete the songs by that artist.  To delete songs by more than one artist in a single operation you'll need to select and delete in Albums view:
    or in Songs view:
    where you can also use the Column Browser to filter songs by multiple artists:

  • Is there a way to delete multiple pictures at the same time from the iphone4s?

    Is there a way to deleter multiple pictures at the same time, from my iphone4s? I know how to delete one at a time. Thanks

    Open your Photos App > Camera Roll > At the top right corner you will see a rectangle with a right arrow, select that. Now you can select as many photos as you want and you can hit the red Delete button on the bottom right.

Maybe you are looking for