Can Someone help me how to avoid mutating error while using triggers.
I work on oracle apps. I created a vacation rule such that responsibility is delegated to other person. These details are captured in wf_routing_rules.
I created a procedure that takes the values from wf_routing_rules and sends mail using utl_smtp. I created a trigger such that for every row insert in wf_routing_rules, this procedure is called.
I know that doing a transaction and trigger on same table wil give mutating error.
Is there a way to avoid this ( other than changing the table name).
Glad if there is a different solution for this too.
Vamsi