Here is one useful way to debug a stored procedure.This will not require writing dbms_output.put_line in your package.Step 1 : Create a simple table like the one belowCREATE TABLE TEMP_DEBUG( DEBUG_TIMESTAMP DATE, MESSAGE VARCHAR2(500));Step 2 : Cre…
more »