‎2008 Nov 12 8:36 AM
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 !
‎2008 Nov 12 8:49 AM
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
‎2008 Nov 12 9:18 AM
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.
‎2008 Dec 03 2:28 AM