‎2008 Oct 01 5:08 AM
Hi All,
CALL 'CHECK_DEVELOPER_KEY' ID 'KEY' FIELD DEVELOPKEY.
What is 'CHECK_DEVELOPER_KEY'?
How to know what for it is?
Like this, what are the other object?
With Thanks &
Regards,
R.Nagarajan.
‎2008 Oct 01 5:27 AM
‎2008 Oct 01 5:27 AM
‎2008 Oct 01 5:34 AM
Hi Surinder Singh Oberoi,
In that link, they said about the usage of this system function.
Thanks.
I want to know like this
What are the system function are there?
How to know what is their function? and
Whether we can use these in our program?
Thanks & Regards,
R.Nagarajan.
‎2008 Oct 01 5:41 AM
‎2008 Oct 01 5:47 AM
This is the system call which will call 'CHECK_DEVELOPER_KEY' .
Generally all system calls are stored at SAP Kernel level and made in C language.
SAP reservers all rights to change this calls without any information so, better to avoid this type of calls.
For particular this case, you can use the table DEVACCESS to check for the developer key of the user.
example :
DATA: developkey TYPE char20.
developkey = '19591370852880128702'.
CALL 'CHECK_DEVELOPER_KEY' ID 'KEY' FIELD developkey.
IF sy-subrc = 0.
WRITE: 'correct dev key'.
ELSE.
WRITE: 'not correct key'.
ENDIF.thanx.
reference : sdn
‎2008 Oct 01 6:18 AM
Hi ,
Thanks.
Now i got the list of System Funcrtions.
Is there any other way to know what for these functions?
Thanks & Regards,
R.Nagarajan.
‎2008 Oct 02 2:28 AM