Hi Experts,
I have to update one oracle Database from SAP R/3 system.
For that i have made one connection link in DBCO transaction with connection name 'HOLIDAY'.
But when i am using that connection in the ABAP program i am getting short dump as table doesn'T exists.
EXEC SQL. CONNECT TO 'HOLIDAY' ENDEXEC. *executing the INSERT command EXEC SQL. insert into wfh_ood ( EMP_NO, START_DATE, END_DATE, STATUS ) values ( 145052, '17-SEP-2009', '18-SEP-2009', '02' ) ENDEXEC. *closing the connection EXEC SQL. DISCONNECT :'HOLIDAY' ENDEXEC.
This is the Error i am getting
Table does not exist in database.
what might be wrong in connection?
with thanks and regards,
kiruba.
Add a comment