Do we have a ABAP code / program to delete all objects viz. InfoObjects etc

I am working on a SAP BI7.0 implementation project and seek help on the following points -
Do we have a ABAP code / program to delete all objects viz. InfoObjects, InfoProviders, Datasources, Infopackages, DTP, Transformations etc. in ONE shot
Secondly, does anyone have a template created for capturing information on Transports created for release?
Please do let me know.
Thanks in advance,
Venkat

It may be hard to delete objects containing data.
Try
RSDG_CUBE_DELETE               Deleting InfoCubes
RSDG_IOBC_DELETE               Deleting InfoCubes
RSDG_IOBJ_DELETE               Deleting InfoObjects (without automatic transport connection !)
RSDG_MPRO_DELETE               Deleting InfoCubes
Also check :
How to delete multiple InfoObjects in one shot?

Similar Messages

  • Link BOR Event with ABAP code (program or function)!

    Hello experts,
    I am trying to link program or function to bor event. Change of data in HR IT0002 trigger event CHANGE of PERSDATA Object. I need to execute some ABAP code (program or function) on CHANGE event, so I have to link event and ABAP code.
    Question: is it possible and how?

    Hi,
    It is very much possible....
    You can use the Workflow & use BO as PERSDATA & this workflow can be triggered on event change.
    & You can write your code ...
    Regards,
    Rahul

  • I previously had PS CS5 Trial installed but removed it using both Control Panel Programs and deleting all files from the CS5 directory on Program Files.  I then installed a purchased product from Adobe disc using the serial number on the case.  But when I

    I previously had PS CS5 Trial installed but removed it using both Control Panel Programs and deleting all files from the CS5 directory on Program Files.  I then installed a purchased product from Adobe disc using the serial number on the case.  But when I try to launch it, I get a screen headed Photoshop CS5 Extended Trial.  It asks for the serial number and says that my trial has expired.  It rejects the serial number from the Adobe case saying "This Serial Number is not valid for this product".  It thinks that I still have the expired Trial Version installed.  How do I convince it (the program) that the Trial Version is long gone and the currently installed product was installed with a valid and accepted serial number????

    Let me know how it goes. Go into your Adobe account and register your serial number asap.
    https://www.adobe.com/account/my-products-services.html
    That way, should you lose it or you need support, it is on record that it's yours and you can fetch your s/n it from anywhere.
    There are too may sad stories here, where people forgot and the box is buried or lost.
    Gene

  • I have an ipod 8generation and i deleted all of my things to download a few shows then deleted them to get my things back but it wont let me it says i have no space. Why?

    I have an ipod 8generation and i deleted all of my things to download a few shows then deleted them to get my things back but it wont let me it says i have no space. Why?

    Hello,
    Sometimes that you see something it saves in cache, (or could be that the show is in progress to be deleted) so here's the problem.
    Just restart your device to see if the cache of the shows deletes themselves.
    Then try to import your music again.
    Cheers.
    You can use this tool to quickly clean all the cache that needs to be deleted-
    http://www.imobie.com/phoneclean/

  • Hello , I have befor IDVD but when I Delet all system I Buy nye I Movie , I Photo but i don`t have Idvd like befor where i can dowload ? Pleas help me

    Hello , I have befor IDVD but when I Delet all system I Buy nye I Movie , I Photo but i don`t have Idvd like befor where i can dowload ? Pleas help me

    sergiyMSI wrote:
    My Mac came with iLife08 , this is been install to  my Mac in the shop
    in the box your Mac delivered with were TWO grey DVDs... these are the 'reinstaller disk' every Mac is sold with.
    one contains the pre-installed software, make a 'custom install' to install ONLY iDVD ... -

  • I have given my ipod touch4 to my grandson, but although I have reset factory settings, I cannot delete all my details eg visa details.  I have tried but it has upset my iphone and I lost my apple account on my iphone!! HELP.... please.

    have given my ipod touch4 to my grandson, but although I have reset factory settings, I cannot delete all my details eg visa details.  I have tried but it has upset my iphone and I lost my apple account on my iphone!! HELP.... please.

    Create an account for him. and use that.
    Create a NEW account/ID for her using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before. Make sure you specify a birthdate that results in being at least 13 years old
      Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    More details of how:
      http://ipadhelp.com/ipad-help-tips-tricks/how-to-get-free-apps-from-the-app-stor e-without-a-credit-card/
    Erase the iPod by going to Settings>General>Reset>Erase all content and settings.

  • OPSI setting remain as ABAP code after client deletion

    Hi all,
    I'm just wondering if anyone face this problem before:
    1. I've created some test data in OPSI (validations of project system) in a test client (eg: 201)
    2. I perform client deletion on 201 and client copy from PRD to 201
    3. If I check the include statement, the test data still exist as ABAP code (and will generate an abap runtime error). However, if I go to OPSI, the test data no longer not exist.
    4. If I re-create the test data in OPSI, then this problem is solved.
    Regards.

    THere is nothign to worry about it. It is std.behaviour. Wheneven you trasport or Copy client with refrence to Validation. Even though validation is in place in congiuration but system not read that validation and behave as per last config of validation.
    You need to correct the same manually by Validation menu--> Simulate function, This will internally generate ABAP code according to your currnet validation. After that your system will behave correctly according to currnet config of validation.
    With regards
    Nitin p.

  • Abap code not working  - deleting based on master data table information

    Hi,
    I wrote a piece of code earlier which is working and during test we found out that it will be hard for the support guys to maintain because it was hard coded and there is possibility that users will include more code nums in the future
    sample code
    DELETE it_source WHERE /M/SOURCE EQ 'USA' AND
    /M/CODENUM NE '0999' AND
    /MCODENUM NE '0888' AND.
    Now I created a new InfoObject master data so that the support people can maintain the source and code number manually.
    master data table - the codenum is the key.
    XCODENUM    XSOURCE
    0999               IND01
    0888               IND01
    now I wrote this routine all the data gets deleted.
    tables /M/PGICTABLE.
    Data tab like /M/PGICTABLE occurs 0 with header line.
    Select * from /M/PGICTABLE into table tab where objvers = 'A'.
    if sy-subrc = 0.
    LOOP at tab.
    DELETE it_source WHERE /M/SOURCE EQ tab-XSOURCE AND /M/CODENUM NE tab-XCODENUM.
    ENDLOOP.
    Endif.
    But when I chage the sign to EQ, I get opposite values , Not what I require.
    DELETE it_source WHERE /M/SOURCE EQ tab-XSOURCE AND /M/CODENUM EQ tab-XCODENUM.
    Cube table that I want to extract from
    /M/SOURCE                             /M/CODENUM
    IND01                                       0999
    IND01                                       0888
    IND01                                       0555
    IND01                                       0444
    FRF01                                      0111
    I want to only the rows where the /M/CODENUM = 0999 and 0888 and i would also need FRF101
    and the rows in bold  should be deleted.
    thanks
    Edited by: Bhat Vaidya on Jun 17, 2010 12:38 PM

    It's obvious why it deletes all the records. Debug & get your answer i wont spoon feed
    Anyways on to achieve your requirement try this code:
    DATA:
          r_srce TYPE RANGE OF char5, "Range Table for Source
          s_srce LIKE LINE OF r_srce,
          r_code TYPE RANGE OF numc04,"Range table for Code
          s_code LIKE LINE OF r_code.
    s_srce-sign = s_code-sign = 'I'.
    s_srce-option = s_code-option = 'EQ'.
    * Populate the range tables using /M/PGICTABLE
    LOOP AT itab INTO wa.
      s_code-low = wa1-code.
      s_srce-low = wa1-srce.
      APPEND: s_code TO r_code,
              s_srce TO r_srce.
    ENDLOOP.
    DELETE ADJACENT DUPLICATES FROM:
    r_code COMPARING ALL FIELDS,
    r_srce COMPARING ALL FIELDS.
    * Delete from Cube
    DELETE it_source WHERE srce IN r_srce AND code IN r_code.

  • Iphone won't let me take pictures because it says I have no storage, but I've deleted all my apps

    I have the Iphone 4 (not the 4s) and never had any problems.  I share an ICloud account with my parents and sister, and now my iphone is saying I have no storage.  I deleted all my pictures and a majority of my apps and it still won't let me take any pictures, purchase any apps, or update my phone because I have no storage.  I don't know what to do. 

    Turn off iCloud on the device.  Does it work now?
    If it does, then it will be necessary to either stop sharing the iCloud account or purchase additional storage for it.
    If turning off iCloud does not work, try basic troubleshooting from the User's Guide of reset, restart, restore.

  • Is there a way to delete all duplicates, other than one by one?  some free program or does itunes have one to just identify and delete all duplicates in the library?

    How do I delete duplicates in my library as a group, rather than one by one?

    Apple's official advice on duplicates is here... HT2905: How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls such as lost ratings and playlist membership.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background, this post for detailed instructions, and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed.)
    The most recent version of the script can tidy dead links as long as there is at least one live duplicate to merge stats and playlist membership to and should cope sensibly when the same file has been added via multiple paths.
    tt2

  • I'm creating a public website and i have a javascript code that works on all browser except firefox. What should i do?

    Hi,
    I'm creating a public website that has a simple javascript button that will just set an asp.net dropdown value. It works on all browser except firefox...
    website: http://healthcareaustralia-web.sharepoint.com/Doctors/DailyShifts1.aspx
    So when you click on reset button it doesn't set the dropdowns to ALL
    this is the code:
    function resetFilters()
    var dropdown = document.getElementById('ctl00_PlaceHolderMain_DropDownList1');
    var ans = "All";
    dropdown.value = ans.value;
    document.location.href = "/Doctors/DailyShifts1.aspx";
    }

    hello, when i test it with current firefox versions, all works as expected: i choose custom dropdown values & select "filter", when i click "reset" next all dropdowns default back to "all" and the list gets refreshed.
    maybe try to [[Clear the cache - Delete temporary Internet files to fix common website issues|clear the cache]] & and reload the page or for other common troubleshooting steps refer to [[Websites look wrong or appear differently than they should]].

  • My iTunes is creating duplicates of playlists and hanging up. running latest version of lion, and iTunes using match and iCloud. please help. I have uninstalled and reinstalled iTunes.  deleted all library files and is doing same thing.

    I am runing lion and latest version of itunes.  I have match on, home sharing on and using icloud.  my itunes started hanging up and required me to force quit.  then upon restart of itunes and restart of computer itunes would take upwards of 15 minutes to open and was using >90% of CPU and would be lagging in response if responding at all one of the playlists I had created on my ipad had over a hundred copies of the same playlist.  after repeated restarts I uninstaled itunes and reinstalled.  this didnt rectify the problem.  I assumed library file had somehow become corrupt so I deleted library files, reimported all my music and synced with genius and match.  and let the computer go over night. when I woke in morning all my music was back but I had all the extra playlists again and itunes is hogging all the cpu and was minimally responsive and hanging up after each click. 
    I thought this might be a virus or something but installed ESET cypersecurity did a complet scan with no threats found.  I am at a total loss and do not know where to go from here.  I hope one of you can assist.  Thanks!

    I had this exact issue.  Spent over an hour on the phone with apple support, they couldn't resolve.  Here is what I ended up doing, that worked.
    1.  Turned iTunes match off on all my iOS devices
    2.  Deleted the offending playlists from the iOS device they originated on
    3.  Started iTunes, let it run (literally) for an hour before it became responsive.  First thing I did, before clicking anywere else was disable iTunes match.  If I clicked anywhere, it would clock for another hour.
    4.  Let iTunes run overnight, by morning it had cleaned out the repeating play lists.  This got my Mac/iTunes back to an operable state.
    5.  Restore iPhones from backup in iTunes.
    What was causing my issue was a single playlist that was created on an iPhone, then suddenly showed up with several thousand duplicates on my other iPhone.  The culprit playlist did not, for some reason, duplicate itself on my two iPads.  Apple support seemed to think it was because the problem iPhone tried to sync the playlist to iCloud over and over again unsuccessfully, then it finally went through and populated the thousands of blank/failed playlists which then tried to propigate to iTunes and my other iOS devices.  Seems like a reasonable theory.
    I have not yet re-enabled iTunes match.  So, no idea what will happen if I decide to go back down that rabbit hole.

  • HT1620 I'm getting a message saying update cannot be installed  because it requires 2.9GB of storage,it says I need to delete items in the usage settings. I only have a few apps. and by deleting all of them it still dosen't fix the problem. Any ideas???

    I am trying to install iOS 7.0.2 on my iPhone 4 and I'm getting a message stating it cannot be installed because it requires 2.9GB of storage. It also states I should delete items in my app. usage settings. I have deleted almost all of the apps on this phone and I am still not able to install the update.

    import ur pics to computer and select option to delete from device see
    http://support.apple.com/kb/HT4083
    Peace, Clyde

  • I sold my old iphone 4 as i upgraded... and the old phone keeps coming up with this phone has been connected to itunes account ..... etc i have gone into managed devices and deleted all so i now have no devices on my itunes account but it still there?

    please help how can i set up old phone with new itunes account

    with newer itunes version to get the devices sidebar one needs to go into the view menu and click show sidebar

  • Which Adobe program can delete all of the background behind an item? That is: chair has busy backgro

    Which Adobe product can best isolate an object in a photo and elimanate all the background?

    Wogdon,
    Depending on the object, you may try to Image/Live Trace it (with suitable settings), or you may lock the image and draw a path round (and maybe one or more inside)  the object with the Pen Tool.

Maybe you are looking for