DBA Data[Home] [Help]

APPS.HRI_OPL_MULTI_THREAD dependencies on FND_MESSAGE

Line 398: fnd_message.set_name('HRI','HRI_MLT_OTHER_THREAD_IN_ERR');

394: -- Get the request id of the erroring thread
395: --
396: g_error_request_id := GET_ERROR_REQUEST(p_mthd_action_id => g_mthd_action_id);
397: --
398: fnd_message.set_name('HRI','HRI_MLT_OTHER_THREAD_IN_ERR');
399: fnd_message.set_token('REQUEST_ID',g_error_request_id);
400: RAISE other_thread_in_error;
401: --
402: ELSE

Line 399: fnd_message.set_token('REQUEST_ID',g_error_request_id);

395: --
396: g_error_request_id := GET_ERROR_REQUEST(p_mthd_action_id => g_mthd_action_id);
397: --
398: fnd_message.set_name('HRI','HRI_MLT_OTHER_THREAD_IN_ERR');
399: fnd_message.set_token('REQUEST_ID',g_error_request_id);
400: RAISE other_thread_in_error;
401: --
402: ELSE
403: --

Line 790: fnd_message.set_name('HRI','HRI_MLT_INVALID_PGM_NAME');

786: --
787: WHEN invalid_program THEN
788: --
789: dbg('Invalid program name passsed to the pre process='||g_program);
790: fnd_message.set_name('HRI','HRI_MLT_INVALID_PGM_NAME');
791: RAISE invalid_program;
792: --
793: WHEN OTHERS THEN
794: IF SQLCODE = - 20997 THEN

Line 798: fnd_message.set_name('HRI', 'HRI_MLT_INVALID_SQL');

794: IF SQLCODE = - 20997 THEN
795: --
796: dbg('Invalid SQL returned by the pre process='||SQLCODE);
797: dbg(l_dyn_range_sql);
798: fnd_message.set_name('HRI', 'HRI_MLT_INVALID_SQL');
799: RAISE invalid_sql;
800: --
801: ELSIF SQLCODE = - 20996 THEN
802: --

Line 803: dbg(fnd_message.get);

799: RAISE invalid_sql;
800: --
801: ELSIF SQLCODE = - 20996 THEN
802: --
803: dbg(fnd_message.get);
804: dbg('No SQL returned by the pre process=');
805: RAISE no_sql_returned;
806: --
807: ELSE

Line 921: fnd_message.set_name('HRI', 'HRI_MLT_START_THREAD');

917: EXCEPTION
918: --
919: WHEN others THEN
920: --
921: fnd_message.set_name('HRI', 'HRI_MLT_START_THREAD');
922: dbg('Exception encountered in starting thread');
923: dbg(sqlerrm);
924: RAISE;
925: --

Line 1052: fnd_message.set_name('HRI','HRI_MLT_CHILD_THREAD_IN_ERR');

1048: dbg('Error raised by the process, marking the ranges as error');
1049: IF SQLCODE <> - 20999 THEN
1050: --
1051: hri_opl_multi_thread.set_range_error(p_mthd_action_id);
1052: fnd_message.set_name('HRI','HRI_MLT_CHILD_THREAD_IN_ERR');
1053: --
1054: RAISE;
1055: -- raise_application_error(- 20998,'CHILD_PROCESS_FAILURE');
1056: --

Line 1071: fnd_message.set_name('HRI','HRI_MLT_INVALID_PGM_NAME');

1067: --
1068: -- Raised when the package or package.procedure does not exist
1069: --
1070: dbg('Invalid program name passsed to process_range='||g_program);
1071: fnd_message.set_name('HRI','HRI_MLT_INVALID_PGM_NAME');
1072: --
1073: RAISE invalid_program;
1074: --
1075: WHEN others THEN

Line 1091: fnd_message.set_name('HRI','HRI_MLT_OTHER_THREAD_IN_ERR');

1087: -- Get the request id of the erroring thread
1088: --
1089: g_error_request_id := GET_ERROR_REQUEST(p_mthd_action_id => p_mthd_action_id);
1090: --
1091: fnd_message.set_name('HRI','HRI_MLT_OTHER_THREAD_IN_ERR');
1092: fnd_message.set_token('REQUEST_ID',g_error_request_id);
1093: RAISE other_thread_in_error;
1094: --
1095: END IF;

Line 1092: fnd_message.set_token('REQUEST_ID',g_error_request_id);

1088: --
1089: g_error_request_id := GET_ERROR_REQUEST(p_mthd_action_id => p_mthd_action_id);
1090: --
1091: fnd_message.set_name('HRI','HRI_MLT_OTHER_THREAD_IN_ERR');
1092: fnd_message.set_token('REQUEST_ID',g_error_request_id);
1093: RAISE other_thread_in_error;
1094: --
1095: END IF;
1096: --

Line 1226: fnd_message.set_name('HRI','HRI_MLT_INVALID_PGM_NAME');

1222: --
1223: WHEN invalid_program THEN
1224: --
1225: dbg('Invalid program name passsed to the post process='||g_program);
1226: fnd_message.set_name('HRI','HRI_MLT_INVALID_PGM_NAME');
1227: raise invalid_program;
1228: --
1229: WHEN others THEN
1230: --

Line 1402: l_message := nvl(fnd_message.get,sqlerrm);

1398: -- have finished
1399: --
1400: watch_child_processes(l_slave_errored);
1401: --
1402: l_message := nvl(fnd_message.get,sqlerrm);
1403: --
1404: output(l_message);
1405: --
1406: -- Bug 4105868: Collection Diagnostics

Line 1436: l_message := nvl(fnd_message.get,sqlerrm);

1432: -- have finished
1433: --
1434: watch_child_processes(l_slave_errored);
1435: --
1436: l_message := nvl(fnd_message.get,sqlerrm);
1437: --
1438: output(l_message);
1439: --
1440: -- Bug 4105868: Collection Diagnostics

Line 1650: output(fnd_message.get);

1646: -- These are standard errors so don't raise an exception
1647: --
1648: errbuf := NVL(g_errbuf,SQLERRM);
1649: retcode := NVL(g_retcode,2);
1650: output(fnd_message.get);
1651: --
1652: -- Bug 4105868: Collection Diagnostics
1653: --
1654: hri_bpl_conc_log.log_process_end

Line 1667: output(fnd_message.get);

1663: --
1664: dbg('An error encountered while processing');
1665: errbuf := SQLERRM;
1666: retcode := 2;
1667: output(fnd_message.get);
1668: output(SQLERRM);
1669: --
1670: -- Collection Diagnostics
1671: --