How to completly delete all AC 5.2 content from NW?

Dear all,
We have just undeployed all 5.2 components in order to install version 5.3 (SP5). When deploying the new SCA files we get errors and it ends that just one out of four gets files deployed (AE), JSPM alterts that some objects already exists:
Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
Feb 2, 2009 4:16:12 PM   Info: Begin of log messages of the target system:
09/02/02 16:16:08 -  ***********************************************************
09/02/02 16:16:09 -  Start updating EAR file...
09/02/02 16:16:09 -  start-up mode is lazy
09/02/02 16:16:09 -  EAR file updated successfully for 45ms.
09/02/02 16:16:09 -  Start deploying ...
09/02/02 16:16:11 -  EAR file uploaded to server for 819ms.
09/02/02 16:16:12 -  ERROR: Not deployed. Deploy Service returned ERROR:
                     java.rmi.RemoteException: Cannot deploy application sap.com/grc~ccume..
                     Reason: <Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='UME actions for application sap.com/grcccume couldn't be deployed: Scaning file "permission_files/sap.com_grcccume.xml" failed!: Service "com.virsa.cc" already exists!', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key UME actions for application sap.com/grcccume couldn't be deployed: Scaning file "permission_files/sap.com_grcccume.xml" failed!: Service "com.virsa.cc" already exists!; nested exception is:
                          com.sap.engine.services.deploy.container.DeploymentException: <--Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='UME actions for application sap.com/grcccume couldn't be deployed: Scaning file "permission_files/sap.com_grcccume.xml" failed!: Service "com.virsa.cc" already exists!'
The easiest soluiton is probably to re-install NW. But is there any way completly delete all old 5.2 content?
Thx,
Vit

Vit,
Unless you just really want a completely clean system to start on, reinstalling Netweaver is unnecessary.  You just need to follow these steps to clear out all 5.2 data:
1) Undeploy all GRC 5.2 applications using the SDM tool
2) Remove any remaining GRC applications from the Visual Administrator tool --> Server Node --> Deploy --> Applications --> Remove button
3) Use the following database cleaning script:
SPOOL C:\DATA_CLEANUP.TXT
prompt Delete system specific rules in Action Rule Table
delete from <SCHEMA>.VIRSA_CC_ACTRULE
where vsyskey = '&1';
prompt Delete all System specific Alert details
delete from <SCHEMA>.VIRSA_CC_ALLASTRUN
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_ALLISTDTL
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_ALTCDLOG
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_AUTHMAP
where vsyskey = '&1';
prompt Delete system specific rules in Critical Action Rule Table
delete from <SCHEMA>.virsa_cc_cract
where vsyskey = '&1';
delete from <SCHEMA>.virsa_cc_cractt
where vsyskey = '&1';
prompt Delete system specific rules in Critical Permission Rule Table
delete from <SCHEMA>.virsa_cc_crprm
where vsyskey = '&1';
prompt Delete system specific rules in Critical Profile Table
delete from <SCHEMA>.virsa_cc_crprof
where vsyskey = '&1';
delete from <SCHEMA>.virsa_cc_crproft
where vsyskey = '&1';
prompt Delete system specific rules in Critical Role Table
delete from <SCHEMA>.virsa_cc_crrole
where vsyskey = '&1';
delete from <SCHEMA>.virsa_cc_crrolet
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_dataexd
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_fldmap
where vsyskey = '&1';
prompt Delete system specific rules in Function Action Table
delete from <SCHEMA>.virsa_cc_funcact
where vsyskey = '&1';
prompt Delete system specific rules in Function Permission Table
delete from <SCHEMA>.virsa_cc_funcprm
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_funcsys
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_lastrun
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_lsysgrp
where vsyskey = '&1';
prompt Delete system specific rules in Org User Mapping Table
delete from <SCHEMA>.virsa_cc_orgusers
where vsyskey = '&1';
prompt Delete system specific rules in Permission Rule Table
delete from <SCHEMA>.virsa_cc_prmrule
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_supp_det
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_supp_hdr
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_supp_text
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_syscract
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_syshmap
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_sysrule
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_syssapobj
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_sysusr
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_textkey
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_usrmap
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_xsrulemap
where vsyskey = '&1';
delete from <SCHEMA>.VIRSA_CC_xsysgrp
where vsyskey = '&1';
prompt Delete System details
delete from <SCHEMA>.virsa_cc_system
where vsyskey = '&1';
delete from <SCHEMA>.virsa_cc_systemc
where vsyskey = '&1';
delete from <SCHEMA>.virsa_cc_systemt
where vsyskey = '&1';
commit;
prompt Truncating VIRSA_CC_GENOBJ Table
truncate table <SCHEMA>.virsa_cc_genobj DROP STORAGE;
prompt Truncating VIRSA_CC_GENOBJT Table
truncate table <SCHEMA>.virsa_cc_genobj DROP STORAGE;
prompt Truncating VIRSA_CC_GENUSR Table
truncate table <SCHEMA>.virsa_cc_genusr DROP STORAGE;
prompt Truncating VIRSA_CC_GENACT Table
truncate table <SCHEMA>.virsa_cc_genact DROP STORAGE;
prompt Truncating VIRSA_CC_GENPRM Table
truncate table <SCHEMA>.virsa_cc_genprm DROP STORAGE;
prompt Truncating VIRSA_CC_GPRMLIST Table
truncate table <SCHEMA>.virsa_cc_genobj DROP STORAGE;
prompt Truncating VIRSA_CC_SYSUSR Table
truncate table <SCHEMA>.virsa_cc_sysusr DROP STORAGE;
prompt Truncating VIRSA_CC_ACTVL Table
truncate table <SCHEMA>.virsa_cc_ACTVL DROP STORAGE;
prompt Truncating VIRSA_CC_PRMVL Table
truncate table <SCHEMA>.virsa_cc_PRMVL DROP STORAGE;
prompt Truncating VIRSA_CC_CRACTVL Table
truncate table <SCHEMA>.virsa_cc_CRACTVL DROP STORAGE;
prompt Truncating VIRSA_CC_CRPRMVL Table
truncate table <SCHEMA>.virsa_cc_CRPRMVL DROP STORAGE;
prompt Truncating VIRSA_CC_ROLEVL Table
truncate table <SCHEMA>.virsa_cc_ROLEVL DROP STORAGE;
prompt Truncating VIRSA_CC_CRROLEVL Table
truncate table <SCHEMA>.virsa_cc_CRROLEVL DROP STORAGE;
prompt Truncating Management Tables
truncate table <SCHEMA>.virsa_cc_MGALERTS DROP STORAGE;
truncate table <SCHEMA>.virsa_cc_MGCRTR DROP STORAGE;
truncate table <SCHEMA>.virsa_cc_MGMTBU DROP STORAGE;
truncate table <SCHEMA>.virsa_cc_MGMTTOT DROP STORAGE;
truncate table <SCHEMA>.virsa_cc_MGRISKD DROP STORAGE;
truncate table <SCHEMA>.virsa_cc_MGRISKS DROP STORAGE;
SPOOL OFF
Then try reinstalling GRC AC 5.3 through the JSPM tool.  You shouldn't get this error any longer.

Similar Messages

  • URGENT!Can anyone tell me how to completely delete all data of an app from an Apple ID?

    I am really stuck here.My brother needs help deleting ALL traces of some inappropriate apps that he wasnt supposed to download from his Apple ID.Now our mom is very angry and stressed out and I really hate it when she is angry,so can anyone help me?

    That is going to depend on where the application is stored...
    If it's Bloatware (e.g. Verizon Navigator, Bing, etc...) you will need Root permission on your phone to remove it.
    If it's something you installed from the Google Play Store, then all you will need to do is open the Play store, select the Menu button, select "My Apps" and then open the app.  This should give you the "Uninstall" button.
    Hope this helps
    Chief

  • Each song on my iTunes has a duplicate. How do I delete all duplicates and prevent this from happening again in the future?

    Each song on my iTunes has a duplicate. How do I delete all duplicates and prevent this from happening again in the future?

    After I had updated to Itunes 11 (also on Windows 7), I had the same experience, but I suspect that it was because I accepted a proposal to set up an external media library in order to simplify security backups. An associated result was that I had lost all of my playlists!
    What I did was to restore the entire library off my Ipod, using a very good program called PodToPC (a free download is available) selecting an option to replace all of the stuff in the Itunes library. I use the Ipod Classic simply because it has a large capacity to hold my collection of CD and Vinyls. No way was I going to modify duplicates of 10000 tracks in 750 playslists by hand!  I did have a few residual problems with some of the playlist specs but, after a few hours of work all was restored.
    I hope this is useful.

  • How do I delete all my old itunes library from my iphone 4?

    I bought a new laptop so I created a new Itunes Library. I tried to sync it to my iphone but the old library on my Iphone won't delete. How do I delete it?

    "How do I delete all my apps and pictures from the Ipod Touch? "
    You don't.
    "Also can you set up Find my Ipod through Itunes?:"
    No

  • I purchased a new computer, how do i transfer all of my itunes content from the old computer to the new one with out loosing songs, apps, pics ...ect

    i purchased a new computer, how do i transfer all of my itunes content from the old computer to the new one with out loosing songs, apps, pics ...ect

    Copy the entire iTunes folder from the old computer to the new computer to move iTunes content.
    As for pictures, copy them from where there are on the old computer to the new computer... this has nothing to do with iTunes.
    Alternatively, if both computers are Windows based, use the Windows Easy File Transfer Utility to move everything.

  • How do I delete    all contacts (at one time) from i      phone4

    Somehow I have gotten mutilple listing in contacts.  How do I delete all contacts from I phone and start over?

        baprawski,
    Is there a particular reason why you want to delete the contacts all at once? The only way you can delete all the contacts all one time would be to wipe the device. This will complete erase all data on the phone including the contacts.
    You want to make sure you backup your device uisng the desktop manager. Once you perform the wipe you can then backup your contacts using the desktop manager and just make sure to uncheck the Contacts when backing up so they are not added back to your phone.
    John B
    Follow us on Twitter @VZWSupport

  • How do I delete all of my text messages from icloud so i cant be spied on?

    How do I get all of my text messages off of icloud with attachments so I can not be spied on?

    iMessages are not stored in iCloud, they are stored on the iMessage server.  If you want to delete them from the server, you'll have to delete them from your phone.  (SMS messages are stored on your carrier's server.)

  • How do I delete all or multiple synced apps from iTunes where the app has already been removed from iPad?

    I have recently purchased the latest iPad and been trying lots of apps.  These apps are synced with iTunes on a regular basis.  I want to delete synced apps from my iTunes backup that I have removed from my iPad.
    I am aware of a manual way of removing apps from the iTunes backup but it is far too painful and cumbersome.  You have to select the iPad under devices, click the apps tab up the top, and then see which items are not ticked (which runs very slow I might add, but it is a big list).  After noting them down, I then visit the apps section under library on the left, highlight all the unwanted apps, right click and delete.
    Unless there is some special way of doing this that I am un aware of, it would be really helpful if the libary application view had a column which informed me which ones were still on my iPad.  I could then sort by that column, and then delete all the removed apps.

    Yes, delete all the apps currently in iTunes, then transfer all the apps currently on the iPad back into iTunes. Of course it will take some time to sync the apps back into iTunes, but it satisfies your desire to remove all apps from iTunes that are not on your iPad without the need to laboriously note what is and is not there. In fact as a bonus after removing all the apps from iTunes you could open the ..\iTunes Media\Mobile Applications folder and delete any remaining orphaned files that might still be there, before you transfer purchases.
    tt2

  • How can I delete ALL music and SOME video from my iPad?

    I have a MB Pro running Yosemite (10.10.1), and and a 2nd Generation iPad Air (iOS4.3.3.)
    I'd like to keep some, but not all of my video library on my iPad, and delete all the music from it.  (I have my music on my iPhone 6+, and don't need it on the iPad, as I carry them both with me all the time.)
    Thanks in advance for your help.

    Use the sync feature and settings in iTunes. you'll be able to do it from within iTunes.

  • How can I delete all delta request and init from InfoCube?

    Hi,
    We are working with an extractor that support deltas, but we are presenting problems with it, some changes in the data are not displayed. For this reason we are thinking change this type of processing and make a full load (with the full updating the changes are shown).
    For this reason we need to delete all requests of delta and its init. But in manage option of the infocube we can’t see the init and the first deltas.
    If I delete the initialization information at info package (menu option scheduler-> initialization). With this only we will delete the Initialization. I need to delete the data in the infocube.
    I would appreciate your help.
    Regards,
    Victoria

    Hi Victoria,
    You can either display all the requests in the manage tab and delete from there. Or you can use the Automatic Request Deletion option in the Data Target tab of the InfoPackage. See here for details:
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a65a8e07211d2acb80000e829fbfe/content.htm
    Hope this helps...

  • Update to 4.2 has deleted all my published albums content from Lightroom...

    Does anyone know how to resync published albums? All my published albums (all still untouched on my photoshop.com gallery) no longer have the published photos in them inside Lightroom. The folder architecture is untouched. I am worried that a sync will simply delete all photos published online...how to restore the albums content to pre 4.2 update status?

    Whatever catalog you opened/worked with last will be the one that is used the next time you open Lightroom. Thus, this backup is now your default. You don't have to move the file, but you are more than welcome to. You can't do it from within Lightroom though. You can do this though:
    1. Go to Lightroom > Catalog Settings (Mac OS) or Edit > Catalog Settings (Windows)
    2. Under the General tab, click the Show button to open a Finder (Mac OS)/Explorer (Windows) window of the folder containing your catalog.
    3. Leaving the Finder/Explorer window open, close Lightroom.
    4. Move the catalog file ([CatalogName].lrcat) and the previews file ([CatalogName] Previews.lrdata) to a new location.
    5. Double-click the catalog file. This will launch Lightroom using this catalog file in its new location (if you don't do this, Lightroom will ask you where the catalog file went the next time you launched it).

  • How to completely delete all backed-up time machine files but not other files in my external hard drive?

    I use a 500G WD as my external.. I have documents and movies there that i do not want to delete. Simply i just want to delete my time machine files completely and for my mac to not recognised it as a time machine HD.. TY guys  p.s. A video would be nice

    If you have the external HD setup as one partition, you cannot delete only the TM files as a unit.  You will have to use the brute force method of deleting directory by directory.
    If you have the drive partitioned into a TM backup partition and another partition for your other work, you can simply reformat the TM backup partition.
    So, the first question is, how is your drive setup, as one or as two partitions?

  • How can I delete all those ! dead files from iTunes without having to do it manually?

    I recently merged 2 iTunes libraries into 1 on a PC. This has resulted in 1000's of dead files, notated by a ! (exclamation point). Does anyone know of a quick way of removing all of these without needing to spend many hours doing it manually?

    Lost & Found
    Create a playlist called Found, select everything in Music and drag it into the Found playlist (it may take some time to count the tracks that are to be dropped). Create a smart playlist called Lostmatching All the rules Playlist is Music and Playlist is not Found. Your lost tracks will be in this playlist. You should be able to select all the tracks in this playlist with CTRL-A and then remove them from iTunes with CTRL-SHIFT-DELETE.
    Or use iTunes Folder Watch with its option to check for dead tracks on start up.
    However if the broken tracks are duplicates of non-broken files then I've written a script called DeDuper which can help remove unwanted duplicates, merge ratings, play counts and playlist membership, and remove dupes with dead links as long as there is one real file to merge the stats to. See this  thread for background. I also have a tool called FindTracks for fixing the broken links if the files are sill there but not quite where iTunes is looking for them. For more details see this thread.
    tt2

  • How do I delete all ICloud emails at once?

    It's ridiculous how difficult it is to find an answer to this problem. How do I delete ALL of my iCloud emails from my inbox on my iPad at once? I already know how to delete individual emails, but there is no "delete all" option anywhere under the edit screen. Apple.com's answer was to click on the first one and shift click on the last one. HELLO!!! There's no way to shift-click on an iPad in that screen. Crimony.

    Hey Koyster,
    Great question. Utilizing iCloud.com, we may be able to purge these emails in a much faster way:
    iCloud: Delete email
    http://support.apple.com/kb/PH2651
    Delete messages
    - On your Mac, Shift-click to select multiple adjacent messages or Command-click to select multiple nonadjacent messages.
    - On your Windows computer, Shift-click to select multiple adjacent messages or Control-click to select multiple nonadjacent messages.
    Thanks,
    Matt M.

  • HT204022 i had an ipad and mac air,,my concern is all my photos from my iPad is still there i already tried to delete and transfer  it to my mac air but still some of photos from photo stream still in my iPad how can i completely delete all photos from my

    im having a prob on how to tranfer all my photos from my ipad including the photostream and completely delete all my photos in my ipad,,help,,

    im having a prob on how to tranfer all my photos from my ipad i
    To transfer your photos:
    Transfer and erase the Camera Roll:
    Connect the iPad to your computer and launch Image Capture, iPhoto, or Aperture.
    Select your iPad in the Devices list and click "Import all".
    When the import finishes, you can erase the contents of the Camera Roll, if you want. That would be the quickest way, but deleting it on the iPad in the Photos.app would be safer, but more work.
    Delete photos and video clips you synced to your computer using iTunes: Connect your device to your computer and, in iTunes, deselect the photos and video clips you want to remove from your device. Click Apply, and click Sync.
    Delete the Photo Stream contents:
    How do I delete photos from My Photo Stream?
    You can delete photos from your photo stream the same way you delete other photos from your iOS device or Mac. Just select the photos you want to remove, and tap the trash can icon or click Delete. On your PC, select the photos you want to remove from your photo stream, right-click, and then select delete. When you delete a photo from Photo Stream on one device, iCloud will automatically delete it from the Photo Stream album or view on your other devices. Learn more about deleting photos.
    -- Léonie

Maybe you are looking for

  • Detall with the configuration in cluster of my system PI

    Hello people We have  installed PI in cluster of microsoft 2003 and one application server with  this configuration, sometimes presents  problem with interfaces with status http_status_not_ok and with the load of the interfaces is slow. We tested a s

  • Movie Embedded in PDF Problem

    I'm not sure what forum this problem would fall under.  I'm having a problem getting a movie to play within a PDF when using Internet Explorer.  It plays fine on other browsers.  The movie is a large file which makes the PDF pretty large.  Is there a

  • Refreshing ABAP Webdynpro Application

    Hi All,         I have a typical requirement, In one of our WDA there is requirement of updating one field on a timely basis say every 15secs(using time trigger UI) also we have one input field in the same View, but the problem is when refresh trigge

  • 1242AG Wireless Access Point - Cannot Get DHCP IP for BVI1 interface - Multiple SSIDs...

    Hello, I am attempting to set up three Cisco 1242AG Wireless Access Points with multiple SSID's. I used the web interface and directions online to set up the two networks I want and at least one of the networks work wirelessly. However, I have two pr

  • F110: Error during payment

    After run proposal via F110. The error msg "No valid payment method found" in the proposal is displayed. I have checked the vendor master, the city field is blank. If I maintain the city field then proposal can be generated properly. It seem like Cit