DBA Data[Home] [Help]

APPS.MTH_SUSTAIN_ASPECT_PKG dependencies on MTH_RUNTIME_ERR

Line 224: * Description :Insert runtime exception into mth_runtime_err table *

220:
221:
222: /* ****************************************************************************
223: * Procedure :insert_runtime_error *
224: * Description :Insert runtime exception into mth_runtime_err table *
225: * File Name :MTHSUSAB.PLS *
226: * Visibility :Private *
227: * Parameters :p_proc_func_name - Name of the calling procedure or *
228: * function *

Line 240: INSERT INTO mth_runtime_err

236: IS
237: v_module_name VARCHAR2(80);
238: BEGIN
239: v_module_name := 'MTH_SUSTAIN_ASPECT_PKG.' || p_proc_func_name;
240: INSERT INTO mth_runtime_err
241: ( MODULE, error_code, error_msg, timestamp) VALUES
242: (v_module_name, p_error_code, p_error_msg, SYSDATE);
243:
244: EXCEPTION

Line 1320: INSERT INTO mth_runtime_err

1316:
1317: v_err_msg :=
1318: 'Could not find the custom API to calculate sustainability aspect usage';
1319:
1320: INSERT INTO mth_runtime_err
1321: ( MODULE, error_msg, timestamp) VALUES
1322: ('MTH_SUSTAIN_ASPECT_PKG.getCompValuesForCustom', v_err_msg, SYSDATE);
1323: ELSE
1324: -- API signature:

Line 1370: INSERT INTO mth_runtime_err

1366: WHEN OTHERS THEN
1367: v_err_msg := SQLERRM;
1368: v_err_code := SQLCODE;
1369:
1370: INSERT INTO mth_runtime_err
1371: ( MODULE, error_code, error_msg, timestamp) VALUES
1372: ('MTH_SUSTAIN_ASPECT_PKG.getCompValuesForCustom',
1373: v_err_code, v_err_msg, SYSDATE);
1374:

Line 1691: INSERT INTO mth_runtime_err

1687: -- '. The error code is ' || SQLCODE ||
1688: -- ' and the error message is ' || SQLERRM || '.';
1689: v_err_code := SQLCODE;
1690: v_err_msg := SQLERRM;
1691: INSERT INTO mth_runtime_err
1692: ( MODULE, error_code, error_msg, timestamp) VALUES
1693: ('MTH_SUSTAIN_ASPECT_PKG.cal_save_virtual_meter',
1694: v_err_code, v_err_msg, SYSDATE);
1695: