cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Developer Key for new user

Former Member
0 Likes
425

Hi all,

I installed NSP for ABAP. I created a new user in the system but,

Do you know if it is possible to get the developer key for this new user?

Regards,

Manuel

View Entire Topic
Former Member
0 Likes

Hi Manuel,

First, it right. Only the user bcuser have a developer key.

Second: in the SAP-Net you can register other user only for offical systems - not for "Sneak Review".

But there is a solution. I't works in my installation (in the MiniSAP 4.6 i had a second solution - I could change any ABAP-programs, not only Y- and Z-objects).

1. in Include LSKEYF00 you must comment the call DEVELOPER_KEY_CHECK

FORM CHECK_KEY USING KEY TYPE C.

  • CALL FUNCTION 'DEVELOPER_KEY_CHECK'

  • EXPORTING

  • DEVELOPKEY = KEY

  • EXCEPTIONS

  • WRONG_KEY = 01

  • PARAMETERS_WRONG = 02.

sy-subrc = 0.

ENDFORM.

(you must write a program:

- Include download: read report 'LSKEYF00' into t.

- change it

- and upload: INSERT REPORT 'LSKEYF00' FROM t.)

2. insert in the table DEVACCESS a entry for the user (or change a program in the transaction SE38, the the entry will create automaticly).

Sven