Deleting transactions and others...

Cheers,
I' writing sort of an uninstall tool (that'll also generate delete transports) and need to programmatically remove various components using ABAP code.
I found the functions RS_DELETE_PROGRAM and DD_OBJ_DEL for deleting programs (+stuff) and DD objects, but didn't find anything for the types TRAN, CLAS, TYPE, MSAG and PARA - anyone? I'd rather not directly remove them from the database myself...
Thanks in advance,
Björn

Hi,
     RS_DELETE_MESSAGE_ID  
     RS_DELETE_PROGRAM  
     RS_PARAMETER_DELETE
     also check rsdelete in se37  
Regards
amole

Similar Messages

  • How can I delete videos and other things uploads to icloud ?

    How can I delete videos and other things uploads to icloud ?

    If these are purhased movies they are not stored in your iCloud account and cannot be deleted.  They are stored in the iTunes store.  What you are seeing are links to your previously purchased movies, allowing you to redownload them.
    If you don't want to see these in the Videos app, go to Settings>iTunes & App Store and turn Videos off under Show All.

  • Deleting Master and other Forecast Profiles

    Hi all,
         I would like to delete some of the Master Forecast Profiles and other Univariate forecast Profiles I have created using the transaction "Maintain Forecast Profiles".
    Can you guide me on How I could Possibly DELETE them?
    Any help is much appreciated.. Thank you.
    ANU.

    Hi Anu,
    In the transaction /sapapo/mc96b load the Master forecast profile you want to delete. Note that you have to select the right Planning Area to load the Master Forecast profile. Once you have loaded the MF Profile. Go to "Edit" in the top and in the drop down you will have delete master forecast profile. Say yes in the following screen and you would be able to delete the Master forecast profile.
    Regards
    Kesavan

  • I keep deleting apps and other items on my iPhone to clear up space but it just seems to be taking up more space. The used free space is actually getting smaller. How can I fix this?

    I apologize if this has already been asked and answered but I couldn't find anything.
    I've been deleting stuff to clear up space, and it's not clearing anything up. I went from 3.0 gigs to 2.3 just from deleting apps and photos and music. How can I fix that?

    Thanks but I think it has something to do with the 'restore'. in the newest iTunes 11, when I click on the tab "iphone", it redirects me to the "welcome to your new iphone" page and asks about doing a 'restore'. I already did a 'restore', but it went to the original factory settings and I want to 'restore' to my lastest back up as of April 12. When I choose that option, it says my iphone doesn't have enough space. I don't know how much I need to delete in order to make it work. I've deleted lots, but it only has 4.1 GB available. I'm not sure why this isn't enough to do a 'restore'. I don't want to delete all my photos and videos, but maybe I will have to?...7.7GB is used up for that. I can't sync or do ANYTHING...

  • How do I delete photos and other files from icloud?

    I'm very new to Apple and despite what my son says I do not find it intuitive - perhaps that's my age! But I've tried to find the answer to this from Apple Support, but haven't succeeded. Can I manage what is stored in iCloud, in particular, can I delete photos from it?

    MandT
    Just a quick reminder than when you delete items from contacts on your IPAD then they are deleted on all other devices connected through that Apple ID.
    It would be good to sort out what you are "syncing" and what you are storing on iCloud.
    "Measure twice.. cut once"

  • Clipping masks in ai CS5 deletes strokes and other crazy things

    When creating a clipping mask, Illustrator CS5 deletes the stroke on the mask itself and when I add the stroke back in, it adds the same stroke to objects within the clipping mask.
    In the file below, Figure 1 shows a rectangle with a black stroke and an orange circle with no stroke. Figure 2 shows the result of creating a clipping mask - the black stroke on the rectangle has been deleted. Figure 3 shows the result of adding the black stroke to the mask - it adds the stroke to the orange circle as well.
    This is one of the many things about Illustrator that lead me to believe that the people at Adobe have never tried to work with their own programs. Why on earth would I want the stroke to be eliminated in the first place and why would I want it to be added to the items inside the mask when I go to replace it?
    Is there something I should do differently or is this yet another oversight I'll have to work around forever?

    Thank you to Larry and Scott! That's exactly right. I wasn't aware that by making a clipping mask you also make a group (and I'm not entirely sure that it logically should) but using the direct selection tool does the trick.
    Thanks again,
    Dave

  • How do I delete Firefox and other files from my MacBook Pro computer

    I want to remove Firefox and all other files that may not be removed from my MacBbok Pro laptop.
    MAcBook Pro, 17inch, 2.4GHZ. Processor 2.6 GHz Intel Core 2 Duo.
    PLease tell me how to do this. Thanks.

    I don't know how Firefox installs, but if you just dragged it into the Applications folder, you can drag it to the Trash and empty it.
    If it had an installer, then you need to use the uninstaller provided by the developer.
    What are the other "files that may not be removed?" It doesn't sound like much of a good idea.

  • Please explain how to restore delete, send and other basic icons to the toolbar.

    These are nowhere to be found, incredibly. I will switch to another program if I can cannot access simple tools.

    http://chrisramsden.vfast.co.uk/13_Menus_in_Thunderbird.html

  • Best Practice for Mass Deleting Transactions

    Hi Gurus
    Can you please guide on this - We need to mass delete Leads from the system. I can use Crm_Order_Delete FM. But want to know if there are any best practices to follow, or anything else that i should consider before deleting these transactions from the system.
    We have our archiving policy under discussion which may take some time, but due to large volume of reduntatn data we have some performance issues. For example when searching for leads and using ACE, the system goes through all the lead data.
    That is the reason we are plannign to delete those old records. My concerns is that using CRM_ORDER_DELETE, would it clear all the tables for those deleted transactions and if there are any best practices to follow.
    Thanks in Advance.
    Regards.
    -MP
    Edited by: Mohanpreet Singh on Apr 15, 2010 5:18 PM

    Hi,
    Please go through the AppModel application which is available at: http://developers.sun.com/prodtech/javatools/jscreator/reference/codesamples/sampleapps.html
    The OnePage Table Based example shows exactly how to use deleting multiple rows from a datatable...
    Hope this helps.
    Thanks,
    RK.

  • Additional check in Delete Transaction

    I'd like to add 2 if statements to the this delete transaction and check the @rowcount value before the COMMIT, is this the correct way to do it:
    DECLARE @APP_ID uniqueidentifier
    SET @APP_ID = '1234'
    BEGIN TRY
    BEGIN TRANSACTION;
    --There could be more than 1 record deleted from this Table
    DELETE
    FROM dbo.SERVERS_APPS
    WHERE SA_APP_ID = @APP_ID
    IF @@ROWCOUNT >= 1
    --There should only be than 1 record deleted from this Table
    DELETE
    FROM dbo.ENVIRONMENTS_APPS
    WHERE ENVA_APP_ID = @APP_ID
    IF @@ROWCOUNT = 1
    COMMIT TRANSACTION;
    END TRY
    BEGIN CATCH
    ROLLBACK TRANSACTION
    END CATCH

    Instead of the way you have written, I would suggest that you write only one IF statement checking the count of the records as required.
    DECLARE @APP_ID UNIQUEIDENTIFIER
    SET @APP_ID = '1234'
    BEGIN TRY
    BEGIN TRANSACTION;
    IF (SELECT COUNT(1) FROM dbo.SERVERS_APPS
    WHERE SA_APP_ID = @APP_ID)>=1
    AND
    (SELECT COUNT(1) FROM dbo.ENVIRONMENTS_APPS
    WHERE ENVA_APP_ID = @APP_ID)=1
    BEGIN
    DELETE
    FROM dbo.SERVERS_APPS
    WHERE SA_APP_ID = @APP_ID
    DELETE
    FROM dbo.ENVIRONMENTS_APPS
    WHERE ENVA_APP_ID = @APP_ID
    END
    COMMIT TRANSACTION;
    END TRY
    BEGIN CATCH
    ROLLBACK TRANSACTION
    END CATCH
    Chaos isn’t a pit. Chaos is a ladder. Many who try to climb it fail and never get to try again. The fall breaks them. And some are given a chance to climb, but they refuse. They cling to the realm, or the gods, or love. Illusions. Only the ladder is real.
    The climb is all there is.

  • I Need To Delete All Transactions and Balances From all Modules

    I Need To delete All Transactions From All Financial Modules (AP,Ar,Gl,Cm and FA)
    payables ( Delete All Invoices and Payment that validated and create accounting )
    Receivables ( Delete All Transactions and Receipts that completed and create accounting )
    Assets ( Delete All Asset Depreciation Amount )
    General Ledger ( Delete All Journals That Posted In General Ledger )
    I Need To Make This To Delete Any transaction Or Balances And Uploading Anew Balances and Journals
    Can I Make This By Purge and How Can I Do it ? Or any another Way ?
    Thanks,
    Mohamed Gamal
    Edited by: Mohamed Gamal on Sep 5, 2011 2:27 PM
    Edited by: Mohamed Gamal on Sep 5, 2011 2:28 PM

    Hello Mohamed.
    Each Application User's Guide (for AP, AR, GL, CM and FA) has a section dedicated to Archive and Purge process.
    Depending on the quantity of records you need to process perhaps you should consider other options like creating new organization(s), books, etc. and create only the desired open items in there.
    Octavio

  • Delete transaction in SNP and data inconsistency in product view

    Hi,
    After i run the  SNP heuristics,system is creating PurRequisition say in DC 1500 sourcing from 1510. But in the product view of 1510 location,there is no PurReqRel is visible.This is happening for some products. And also when i use Delete transaction, /SAPAPO/RLCDEL - Delete Transaction Data , i am getting the messages orders are deleted. But when i look in product view,orders are not deleted. This issue is for all the products. we are using SCM5.0. I have run all the consistency checks like OM17,time series check etc. Any one got the same issue?
    Any suggestions?
    Thanks & Regards
    Akthar
    Edited by: Aktar Ahmed Shaik on Nov 17, 2009 3:51 PM

    Hi Akthar,
    Please raise this question in SCM-APO Forum as i hope there is no problm in R/3.
    Regards
    Suri

  • HT6030 Having major Mail problems since I updated Maverick on my 27" iMac. Delays deleting emails and moving emails to other folders. Anyone else having this issue? If so, any known fixes?

    I have an iMac that around 3 years old. Just installed Mavericks when it first was released. I also have a Time Capsule (2TB) that runs my network to my other three Apple devices: iPad2, iPhone 5s and a new Apple TV. Having major Mail issues here. Everything is very delayed and extremely slow. Moving emails to other folders sometimes takes a few minutes and the same goes for deleting emails. Delete them and they don't go into the trash for several minutes. It's getting very frustrating to say the least. Mail also quits very often. Mail also will freeze with the little color ball spinning, therefore I would have to force quit Mail. When the errors occur, it's automatically sent to Apple but there hasn't been an update since 10.9.1 that has fixed it. Apparently, that update was only for gmail issues. Anyone having the same problem? Fixes please?

    I have my entire network and all Apple devices setup as IMAP, not POP. If your settings are setup as a POP account on all devices, emails will not erase when deleted on your other devices. Just something to keep in mind. I'm sure you're aware of this but just wanted to throw it out there. Google IMAP vs POP. However, it seems like your having the same issues as I am. I'm going to swing by an Apple store by me and speak to the genius bar and see if they can come up with something or are aware of this issue. Keep you posted.

  • How do I get my iPad and IPhone synced where if I delete an email off one it is deleted off the other device?

    How do I get my iPad and IPhone synced where if I delete an email off one it is deleted off the other device? I can get all the Apps and music from one to the other but why won't the emails I delete off one not delete off the other? Is there anyway where I can make this happen?

    As James says, make sure that you are using the IMAP servers for your email. You will need to check the help pages for your email provider to get the correct settings in all your devices. POP really doesn't fit the needs of todays mutiple access, always on internet, so you are better off moving to IMAP.

  • I am running OS10.6.8 and have a mail box duplication. I use gmail and when I open my mail I have both the Apple Mail and another set of boxes for Gmail. Both get all mail and when I delete from one, it deletes from the other. How can I get rid of the dup

    I am running OS10.6.8 and have a mail box duplication. I use gmail and when I open my mail I have both the Apple Mail and another set of boxes for Gmail. Both get all mail and when I delete from one, it deletes from the other. How can I get rid of the dup

    Hi,
    According to your descriptioin, I don't think this is system problem, it should be Intel driver problem. It would be contact Intel to confirm this issue whether this is their driver problem.
    Roger Lu
    TechNet Community Support

Maybe you are looking for

  • DVD/CD drive read/writes DVD, reads CD, but suddenly fails to recognize CDr

    I'm having a problem that I just don't understand, and I can't seem to find any information on, so I'm hoping somebody out there has some thoughts. I have a powerbook 17 with the DVD/CD listed below (from system profiler). This drive has always worke

  • Assign GL account for Unplanned delivery costs

    Hi, When I post a vendor invoice (MIRO) and I enter 'Unplanned delivery costs' (in table Details) I can't save the invoice because the sytem didn't find the GL Account for Unplanned delivery costs ?! Can anyone tell me please how to assign GL acount

  • Wireless headphones don't work properly

    I am not getting any sound from the left side of my plug in headphones so I recently purchased a new wireless headphone and I am getting the same problem so I know it's not my headphone it has something to do with my phone setting can anyone help me

  • Missing Apple Mobile Device USB Driver Missing From My Device Manager

    Hi Everyone, My Apple Mobile Device Usb Driver Does'nt Show up in my Device Manager. But when i go Control panel>> Admin Tools>> Services its there but when i go Start>>Run type in devmgmt.msc an the device manager comes up an under the heading Unive

  • I can't upgrade my Aperture libraries since update to 3.3 (3.3.1)

    Since I update my Aperture to the 3.3 version (included the latest update which is 3.3.1 I think) I'm unable to upgrade my libraries, which are located on 2 external HDs, via USB. My macbook has only 11.68 GB of free space, and one of the libraries i