jbpelletier
Programmer
Hi, i code a prod that i use in the exception part of "all" proc/func.. Its called like that
EXCEPTION
WHEN OTHERS THEN
Pr_Iv_Wlog('ERROR','PACKG_NAME.PROC_FUNC_NAME', SQLCODE ,SQLERRM); --this is save in a log table that add a timestamp
RAISE;
END;
i whant to "soft code" the part 'PACKG_NAME.PROC_FUNC_NAME' is there a way to get the package name and the proc/funct where the error occured?
tanx,
jb
EXCEPTION
WHEN OTHERS THEN
Pr_Iv_Wlog('ERROR','PACKG_NAME.PROC_FUNC_NAME', SQLCODE ,SQLERRM); --this is save in a log table that add a timestamp
RAISE;
END;
i whant to "soft code" the part 'PACKG_NAME.PROC_FUNC_NAME' is there a way to get the package name and the proc/funct where the error occured?
tanx,
jb