DBA Data[Home] [Help]

APPS.HR_UTIL_MISC_WEB dependencies on HR_ERRORS_API

Line 759: hr_errors_api.addErrorToTable

755: l_msg_text2 := fnd_message.get;
756: l_length := instr(l_msg_text2, '(');
757: l_msg_text := l_msg_text || substr(l_msg_text2, l_length);
758: --
759: hr_errors_api.addErrorToTable
760: (p_errorcode => ' '
761: ,p_errormsg => l_msg_text);
762: --
763: goto done;

Line 868: hr_errors_api.addErrorToTable

864: l_msg_text2 := fnd_message.get;
865: l_length := instr(l_msg_text2, '(');
866: l_msg_text := l_msg_text || substr(l_msg_text2, l_length);
867: --
868: hr_errors_api.addErrorToTable
869: (p_errorcode => ' '
870: ,p_errormsg => l_msg_text);
871: END IF;
872: --

Line 895: hr_errors_api.addErrorToTable

891: l_msg_text2 := fnd_message.get;
892: l_length := instr(l_msg_text2, '(');
893: l_msg_text := l_msg_text || substr(l_msg_text2, l_length);
894: --
895: hr_errors_api.addErrorToTable
896: (p_errorcode => ' '
897: ,p_errormsg => l_msg_text);
898:
899: END validate_date_lookup_code;

Line 2436: hr_errors_api.g_error := false;

2432: l_proc constant varchar2(100) := g_package || ' initialize_hr_globals';
2433: BEGIN
2434: hr_utility.set_location('Entering: '|| l_proc,5);
2435: IF p_reset_errors = 'Y' THEN
2436: hr_errors_api.g_error := false;
2437: hr_errors_api.g_errorTable.delete;
2438: hr_errors_api.g_count := 0;
2439: END IF;
2440: hr_utility.set_location('Leaving: '|| l_proc,10);

Line 2437: hr_errors_api.g_errorTable.delete;

2433: BEGIN
2434: hr_utility.set_location('Entering: '|| l_proc,5);
2435: IF p_reset_errors = 'Y' THEN
2436: hr_errors_api.g_error := false;
2437: hr_errors_api.g_errorTable.delete;
2438: hr_errors_api.g_count := 0;
2439: END IF;
2440: hr_utility.set_location('Leaving: '|| l_proc,10);
2441: END initialize_hr_globals;

Line 2438: hr_errors_api.g_count := 0;

2434: hr_utility.set_location('Entering: '|| l_proc,5);
2435: IF p_reset_errors = 'Y' THEN
2436: hr_errors_api.g_error := false;
2437: hr_errors_api.g_errorTable.delete;
2438: hr_errors_api.g_count := 0;
2439: END IF;
2440: hr_utility.set_location('Leaving: '|| l_proc,10);
2441: END initialize_hr_globals;
2442: