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 system function problem

Former Member
0 Likes
1,617

Hi everyone,

once i have saw this expression.

as follows:

CALL 'CAL_CHECK_FOR_HOLIDAY' ID 'ABSD' FIELD C_ABS

ID 'HCID' FIELD C_HOLID.

I don't know what is "CAL_CHECK_FOR_HOLIDAY" ?

This is like function name. but i don't found it in transaction code SE37.

please help me, how to fine this problem.

what effects does this expression have ?

Thanks Advanced !

3 REPLIES 3
Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
886

Hi ,

You are trying to use "cfunc".

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

Also, 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.

Rgds,

Sandeep

Read only

Former Member
0 Likes
886

Call statement calls a System Function. In

CALL 'CAL_CHECK_FOR_HOLIDAY' ID 'ABSD' FIELD C_ABS

ID 'HCID' FIELD C_HOLID.

CAL_CHECK_FOR_HOLIDAY is a system function. This function will exist in the file sapactab.h.

Read only

0 Likes
886

thank you !