Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

'CALL' statement?

Former Member
0 Kudos

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.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Check this link

[;

Regards,

Surinder

6 REPLIES 6

Former Member
0 Kudos

Hi,

Check this link

[;

Regards,

Surinder

0 Kudos

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.

Former Member
0 Kudos

Hi,

For the list of other system functions u can try the below link

[;

Regards,

Surinder

Former Member
0 Kudos

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

0 Kudos

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.

Former Member
0 Kudos

Thanks all.