cancel
Showing results for 
Search instead for 
Did you mean: 

Developer key removal

Former Member
0 Kudos

Hi experts,

This is a rhetorical question. Is it possible to revoke a developer key that has already used in a system? If it is possible, how should this be done?

Many thanks,

Katherine

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi There,

Were you able to remove the "Developer Key" from the "DEVACCESS" table.

Appreciate your help with this.

Regards

AJ

jonathon_sells3
Participant
0 Kudos

If you remove the entry from the table, whats to stop the user from re-entering the SCCR key when the input screen pops up?

Other than remove security to develop?

Former Member
0 Kudos

Hi Katherine:

The Developer Key’s are stored in a transparent table with name DEVACCESS for each developer Name you will find the associated Key entry.

If you would like to revoke the Developer Key for a specific user ID you should remove the entry in that table; keep in mind this needs to be done with database tools since the table has no maintenance view; also be aware this procedure may not be supported officially by SAP.

Hope this helps!

Best Regards,

Federico

Former Member
0 Kudos

Federico,

Thanks for the information. I will give this a try.

Regards,

Katherine

Former Member
0 Kudos

you could use the code below in se38:

tables: DEVACCESS.

delete from DEVACCESS where bname = "USERID".

commit.