DBA Data[Home] [Help]

APPS.HR_QUEST_FIELDS_SWI dependencies on HR_MULTI_MESSAGE

Line 45: hr_multi_message.enable_message_list;

41: savepoint insert_quest_fields;
42: --
43: -- Initialise Multiple Message Detection
44: --
45: hr_multi_message.enable_message_list;
46: --
47: -- Remember IN OUT parameter IN values
48: --
49: --

Line 94: p_return_status := hr_multi_message.get_return_status_disable;

90: If l_validate = TRUE Then
91: rollback to insert_quest_fields;
92: End If;
93: --
94: p_return_status := hr_multi_message.get_return_status_disable;
95: hr_utility.set_location(' Leaving:' || l_proc,20);
96: --
97: exception
98: when hr_multi_message.error_message_exist then

Line 98: when hr_multi_message.error_message_exist then

94: p_return_status := hr_multi_message.get_return_status_disable;
95: hr_utility.set_location(' Leaving:' || l_proc,20);
96: --
97: exception
98: when hr_multi_message.error_message_exist then
99: --
100: -- Catch the Multiple Message List exception which
101: -- indicates API processing has been aborted because
102: -- at least one message exists in the list.

Line 109: p_return_status := hr_multi_message.get_return_status_disable;

105: --
106: -- Reset IN OUT parameters and set OUT parameters
107: --
108: p_object_version_number := null;
109: p_return_status := hr_multi_message.get_return_status_disable;
110: hr_utility.set_location(' Leaving:' || l_proc, 30);
111: when others then
112: --
113: -- When Multiple Message Detection is enabled catch

Line 120: if hr_multi_message.unexpected_error_add(l_proc) then

116: -- Multiple Message List. Otherwise re-raise the
117: -- error.
118: --
119: rollback to insert_quest_fields;
120: if hr_multi_message.unexpected_error_add(l_proc) then
121: hr_utility.set_location(' Leaving:' || l_proc,40);
122: raise;
123: end if;
124: --

Line 128: p_return_status := hr_multi_message.get_return_status_disable;

124: --
125: -- Reset IN OUT and set OUT parameters
126: --
127: p_object_version_number := null;
128: p_return_status := hr_multi_message.get_return_status_disable;
129: hr_utility.set_location(' Leaving:' || l_proc,50);
130: end insert_quest_fields;
131:
132: -- ----------------------------------------------------------------------------

Line 169: hr_multi_message.enable_message_list;

165: savepoint update_quest_fields;
166: --
167: -- Initialise Multiple Message Detection
168: --
169: hr_multi_message.enable_message_list;
170: --
171: -- Remember IN OUT parameter IN values
172: --
173: l_object_version_number := p_object_version_number;

Line 216: p_return_status := hr_multi_message.get_return_status_disable;

212: If l_validate = TRUE Then
213: rollback to update_quest_fields;
214: End If;
215: --
216: p_return_status := hr_multi_message.get_return_status_disable;
217: hr_utility.set_location(' Leaving:' || l_proc,20);
218: --
219: exception
220: when hr_multi_message.error_message_exist then

Line 220: when hr_multi_message.error_message_exist then

216: p_return_status := hr_multi_message.get_return_status_disable;
217: hr_utility.set_location(' Leaving:' || l_proc,20);
218: --
219: exception
220: when hr_multi_message.error_message_exist then
221: --
222: -- Catch the Multiple Message List exception which
223: -- indicates API processing has been aborted because
224: -- at least one message exists in the list.

Line 231: p_return_status := hr_multi_message.get_return_status_disable;

227: --
228: -- Reset IN OUT parameters and set OUT parameters
229: --
230: p_object_version_number := l_object_version_number;
231: p_return_status := hr_multi_message.get_return_status_disable;
232: hr_utility.set_location(' Leaving:' || l_proc, 30);
233: when others then
234: --
235: -- When Multiple Message Detection is enabled catch

Line 242: if hr_multi_message.unexpected_error_add(l_proc) then

238: -- Multiple Message List. Otherwise re-raise the
239: -- error.
240: --
241: rollback to update_quest_fields;
242: if hr_multi_message.unexpected_error_add(l_proc) then
243: hr_utility.set_location(' Leaving:' || l_proc,40);
244: raise;
245: end if;
246: --

Line 250: p_return_status := hr_multi_message.get_return_status_disable;

246: --
247: -- Reset IN OUT and set OUT parameters
248: --
249: p_object_version_number := l_object_version_number;
250: p_return_status := hr_multi_message.get_return_status_disable;
251: hr_utility.set_location(' Leaving:' || l_proc,50);
252: end update_quest_fields;
253:
254: -- ----------------------------------------------------------------------------

Line 280: hr_multi_message.enable_message_list;

276: savepoint delete_quest_fields;
277: --
278: -- Initialise Multiple Message Detection
279: --
280: hr_multi_message.enable_message_list;
281: --
282: -- Remember IN OUT parameter IN values
283: --
284: --

Line 316: p_return_status := hr_multi_message.get_return_status_disable;

312: If l_validate = TRUE Then
313: rollback to delete_quest_fields;
314: End If;
315: --
316: p_return_status := hr_multi_message.get_return_status_disable;
317: hr_utility.set_location(' Leaving:' || l_proc,20);
318: --
319: exception
320: when hr_multi_message.error_message_exist then

Line 320: when hr_multi_message.error_message_exist then

316: p_return_status := hr_multi_message.get_return_status_disable;
317: hr_utility.set_location(' Leaving:' || l_proc,20);
318: --
319: exception
320: when hr_multi_message.error_message_exist then
321: --
322: -- Catch the Multiple Message List exception which
323: -- indicates API processing has been aborted because
324: -- at least one message exists in the list.

Line 330: p_return_status := hr_multi_message.get_return_status_disable;

326: rollback to delete_quest_fields;
327: --
328: -- Reset IN OUT parameters and set OUT parameters
329: --
330: p_return_status := hr_multi_message.get_return_status_disable;
331: hr_utility.set_location(' Leaving:' || l_proc, 30);
332: when others then
333: --
334: -- When Multiple Message Detection is enabled catch

Line 341: if hr_multi_message.unexpected_error_add(l_proc) then

337: -- Multiple Message List. Otherwise re-raise the
338: -- error.
339: --
340: rollback to delete_quest_fields;
341: if hr_multi_message.unexpected_error_add(l_proc) then
342: hr_utility.set_location(' Leaving:' || l_proc,40);
343: raise;
344: end if;
345: --

Line 348: p_return_status := hr_multi_message.get_return_status_disable;

344: end if;
345: --
346: -- Reset IN OUT and set OUT parameters
347: --
348: p_return_status := hr_multi_message.get_return_status_disable;
349: hr_utility.set_location(' Leaving:' || l_proc,50);
350: end delete_quest_fields;
351:
352: -- ----------------------------------------------------------------------------

Line 409: if hr_multi_message.unexpected_error_add(l_proc) then

405: -- Multiple Message List. Otherwise re-raise the
406: -- error.
407: --
408: rollback to delete_fields;
409: if hr_multi_message.unexpected_error_add(l_proc) then
410: hr_utility.set_location(' Leaving:' || l_proc,40);
411: raise;
412: end if;
413: --

Line 416: p_return_status := hr_multi_message.get_return_status_disable;

412: end if;
413: --
414: -- Reset IN OUT and set OUT parameters
415: --
416: p_return_status := hr_multi_message.get_return_status_disable;
417: hr_utility.set_location(' Leaving:' || l_proc,50);
418:
419: end delete_quest_fields;
420: