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 Gurus,

Can any one please tell me what this command do

CALL 'SYSTEM' ID 'COMMAND' FIELD COMMAND ID 'TAB' FIELD TABL-SYS.

Thanks in advance,

Prem

1 REPLY 1

Former Member
0 Kudos

Prem,

That is a standard internal statement for C Function call.....call function to Call a System Function:

This statement is for internal use only. It cannot be used in application programs.

Calls the system function cfunc. The relevant function must exist in the file sapactab.h. If you change or recreate a function, you have to compile and link the SAP kernel again. For this, you need the C source code files.

Check the Syntax in SAP Help.

Syntax

CALL cfunc.

Addition:

... ID id1 FIELD f1 ... ID idn FIELD fn

Hope this helps.

Vinodh Balakrishnan