
There are 2 locations are required to perform a complete deletion of SSCR object and developer keys.
Step 1
Launch https://launchpad.support.sap.com/#/sscr/objects/my page. Select on the required section , developers or objects. Then, click on the objects / developers and choose delete. This will delete the registration from the SAP portal side. You will still need to perform the deletion as in Step 2.


Step 2
Login to your SAP system and go to transaction code DB02.
Note:
- DEVACCESS – Developer keys
- ADIRACCESS – Object keys
Under Diagnostic, click on SQL command editor. Use below command to perform the deletion.

DELETE FROM DEVACCESS WHERE UNAME = '...' (for developer keys)
DELETE FROM ADIRACCESS WHERE OBJECT = '...' (for object keys)
Alternatively, you can also use transaction code SE16N_EMERGENCY to perform the same deletion.
Please also refer to the SAP Note 1710320 – How to delete SSCR Object and/or Developer Keys – SAP ONE Support Launchpad.


