How to fix the Oracle error PLS-00678: RETURN statement not allowed inside Compound Triggers?
In this post, you’ll learn more about the Oracle ErrorPLS-00678: RETURN statement not allowed inside Compound Triggers with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PLS-00678: RETURN statement not allowed inside Compound Triggers
Reason for the Error PLS-00678: RETURN statement not allowed inside Compound Triggers
A return Statement was seen inside a compound trigger
How to fix the Error PLS-00678: RETURN statement not allowed inside Compound Triggers ?
You can fix this error in Oracle by following the below steps
Remove Return statement and use other PL/SQL constructs to transfer flow of control.
Leave Your Comment