I am trying to call a procedure I made earlier in new procedure. I am getting error in same line no matter what I try. My original line was :
CALL "PAYROLLDBTEST"."ABS_GetEmployeeHistoryDetail"(:EmpID)
on this I got error "invalid name of function or procedure: ABS_GETEMPLOYEEHISTORYDETAILS: "
then I tried
CALL "PAYROLLDBTEST/ABS_GetEmployeeHistoryDetail"(EmpID)
on this I got error
"sql syntax error: incorrect syntax near "(":"
then I tried
call "_SYS_BIC"."PAYROLLDBTEST/ABS_GetEmployeeHistoryDetail"(:EmpID)
now I am getting
sql syntax error: incorrect syntax near "."
So please let me know whats wrong.
Thanks