cancel
Showing results for 
Search instead for 
Did you mean: 

Trigerring a stored procedure using ABAP

Former Member
0 Kudos

Hi,

Can we trigger a store procedure on Oracle database using ABAP program.

our case is that we are using the stored procedure which was used in source system oracle DB in SAP BI oracle database, we need to schedule this stored procedure.

Regards,

Mani

    • Answers will be rewarded with points

Accepted Solutions (0)

Answers (1)

Answers (1)

stefan_koehler
Active Contributor
0 Kudos

Hello Mani,

you can use the the native SQL "interface" for that:

http://help.sap.com/saphelp_470/helpdata/EN/fc/eb3b8b358411d1829f0000e829fbfe/content.htm


EXEC SQL
  EXECUTE PROCEDURE <YOUR_PROCEDURE>
ENDEXEC.

Regards

Stefan