Application Development and Automation 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: 
Read only

'CALL' statement?

Former Member
0 Likes
859

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
Read only

Former Member
0 Likes
794

Hi,

Check this link

[;

Regards,

Surinder

6 REPLIES 6
Read only

Former Member
0 Likes
795

Hi,

Check this link

[;

Regards,

Surinder

Read only

0 Likes
794

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.

Read only

Former Member
0 Likes
794

Hi,

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

[;

Regards,

Surinder

Read only

Former Member
0 Likes
794

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

Read only

0 Likes
794

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.

Read only

Former Member
0 Likes
794

Thanks all.