Skip to main content

Hi, community,

any idea how to get over this error? tried to disable the event however it is not working. any suggestion if I am performing some wrong steps? 

 

Thank you very much in advance.,

Hi @Hashmit ,

 

Please check this out about avoid mutating table error in IFS event actions.

https://dsj23.me/2021/08/27/tips-to-avoid-mutating-table-error-in-ifs-event-actions/

 


Hi @Hashmit 

i had also this issue. Then I did this:

 

DECLARE 
  PRAGMA AUTONOMOUS_TRANSACTION;

BEGIN
    
<your code>
 
  COMMIT; /or ROLLBACK;
END;


Reply