DBA Data[Home] [Help]

APPS.HR_QUEST_FIELDS_SWI dependencies on HR_MULTI_MESSAGE

Line 42: hr_multi_message.enable_message_list;

38: savepoint insert_quest_fields;
39: --
40: -- Initialise Multiple Message Detection
41: --
42: hr_multi_message.enable_message_list;
43: --
44: -- Remember IN OUT parameter IN values
45: --
46: --

Line 88: p_return_status := hr_multi_message.get_return_status_disable;

84: If l_validate = TRUE Then
85: rollback to insert_quest_fields;
86: End If;
87: --
88: p_return_status := hr_multi_message.get_return_status_disable;
89: hr_utility.set_location(' Leaving:' || l_proc,20);
90: --
91: exception
92: when hr_multi_message.error_message_exist then

Line 92: when hr_multi_message.error_message_exist then

88: p_return_status := hr_multi_message.get_return_status_disable;
89: hr_utility.set_location(' Leaving:' || l_proc,20);
90: --
91: exception
92: when hr_multi_message.error_message_exist then
93: --
94: -- Catch the Multiple Message List exception which
95: -- indicates API processing has been aborted because
96: -- at least one message exists in the list.

Line 103: p_return_status := hr_multi_message.get_return_status_disable;

99: --
100: -- Reset IN OUT parameters and set OUT parameters
101: --
102: p_object_version_number := null;
103: p_return_status := hr_multi_message.get_return_status_disable;
104: hr_utility.set_location(' Leaving:' || l_proc, 30);
105: when others then
106: --
107: -- When Multiple Message Detection is enabled catch

Line 114: if hr_multi_message.unexpected_error_add(l_proc) then

110: -- Multiple Message List. Otherwise re-raise the
111: -- error.
112: --
113: rollback to insert_quest_fields;
114: if hr_multi_message.unexpected_error_add(l_proc) then
115: hr_utility.set_location(' Leaving:' || l_proc,40);
116: raise;
117: end if;
118: --

Line 122: p_return_status := hr_multi_message.get_return_status_disable;

118: --
119: -- Reset IN OUT and set OUT parameters
120: --
121: p_object_version_number := null;
122: p_return_status := hr_multi_message.get_return_status_disable;
123: hr_utility.set_location(' Leaving:' || l_proc,50);
124: end insert_quest_fields;
125:
126: -- ----------------------------------------------------------------------------

Line 155: hr_multi_message.enable_message_list;

151: savepoint update_quest_fields;
152: --
153: -- Initialise Multiple Message Detection
154: --
155: hr_multi_message.enable_message_list;
156: --
157: -- Remember IN OUT parameter IN values
158: --
159: l_object_version_number := p_object_version_number;

Line 194: p_return_status := hr_multi_message.get_return_status_disable;

190: If l_validate = TRUE Then
191: rollback to update_quest_fields;
192: End If;
193: --
194: p_return_status := hr_multi_message.get_return_status_disable;
195: hr_utility.set_location(' Leaving:' || l_proc,20);
196: --
197: exception
198: when hr_multi_message.error_message_exist then

Line 198: when hr_multi_message.error_message_exist then

194: p_return_status := hr_multi_message.get_return_status_disable;
195: hr_utility.set_location(' Leaving:' || l_proc,20);
196: --
197: exception
198: when hr_multi_message.error_message_exist then
199: --
200: -- Catch the Multiple Message List exception which
201: -- indicates API processing has been aborted because
202: -- at least one message exists in the list.

Line 209: p_return_status := hr_multi_message.get_return_status_disable;

205: --
206: -- Reset IN OUT parameters and set OUT parameters
207: --
208: p_object_version_number := l_object_version_number;
209: p_return_status := hr_multi_message.get_return_status_disable;
210: hr_utility.set_location(' Leaving:' || l_proc, 30);
211: when others then
212: --
213: -- When Multiple Message Detection is enabled catch

Line 220: if hr_multi_message.unexpected_error_add(l_proc) then

216: -- Multiple Message List. Otherwise re-raise the
217: -- error.
218: --
219: rollback to update_quest_fields;
220: if hr_multi_message.unexpected_error_add(l_proc) then
221: hr_utility.set_location(' Leaving:' || l_proc,40);
222: raise;
223: end if;
224: --

Line 228: p_return_status := hr_multi_message.get_return_status_disable;

224: --
225: -- Reset IN OUT and set OUT parameters
226: --
227: p_object_version_number := l_object_version_number;
228: p_return_status := hr_multi_message.get_return_status_disable;
229: hr_utility.set_location(' Leaving:' || l_proc,50);
230: end update_quest_fields;
231:
232: -- ----------------------------------------------------------------------------

Line 258: hr_multi_message.enable_message_list;

254: savepoint delete_quest_fields;
255: --
256: -- Initialise Multiple Message Detection
257: --
258: hr_multi_message.enable_message_list;
259: --
260: -- Remember IN OUT parameter IN values
261: --
262: --

Line 294: p_return_status := hr_multi_message.get_return_status_disable;

290: If l_validate = TRUE Then
291: rollback to delete_quest_fields;
292: End If;
293: --
294: p_return_status := hr_multi_message.get_return_status_disable;
295: hr_utility.set_location(' Leaving:' || l_proc,20);
296: --
297: exception
298: when hr_multi_message.error_message_exist then

Line 298: when hr_multi_message.error_message_exist then

294: p_return_status := hr_multi_message.get_return_status_disable;
295: hr_utility.set_location(' Leaving:' || l_proc,20);
296: --
297: exception
298: when hr_multi_message.error_message_exist then
299: --
300: -- Catch the Multiple Message List exception which
301: -- indicates API processing has been aborted because
302: -- at least one message exists in the list.

Line 308: p_return_status := hr_multi_message.get_return_status_disable;

304: rollback to delete_quest_fields;
305: --
306: -- Reset IN OUT parameters and set OUT parameters
307: --
308: p_return_status := hr_multi_message.get_return_status_disable;
309: hr_utility.set_location(' Leaving:' || l_proc, 30);
310: when others then
311: --
312: -- When Multiple Message Detection is enabled catch

Line 319: if hr_multi_message.unexpected_error_add(l_proc) then

315: -- Multiple Message List. Otherwise re-raise the
316: -- error.
317: --
318: rollback to delete_quest_fields;
319: if hr_multi_message.unexpected_error_add(l_proc) then
320: hr_utility.set_location(' Leaving:' || l_proc,40);
321: raise;
322: end if;
323: --

Line 326: p_return_status := hr_multi_message.get_return_status_disable;

322: end if;
323: --
324: -- Reset IN OUT and set OUT parameters
325: --
326: p_return_status := hr_multi_message.get_return_status_disable;
327: hr_utility.set_location(' Leaving:' || l_proc,50);
328: end delete_quest_fields;
329:
330: -- ----------------------------------------------------------------------------

Line 387: if hr_multi_message.unexpected_error_add(l_proc) then

383: -- Multiple Message List. Otherwise re-raise the
384: -- error.
385: --
386: rollback to delete_fields;
387: if hr_multi_message.unexpected_error_add(l_proc) then
388: hr_utility.set_location(' Leaving:' || l_proc,40);
389: raise;
390: end if;
391: --

Line 394: p_return_status := hr_multi_message.get_return_status_disable;

390: end if;
391: --
392: -- Reset IN OUT and set OUT parameters
393: --
394: p_return_status := hr_multi_message.get_return_status_disable;
395: hr_utility.set_location(' Leaving:' || l_proc,50);
396:
397: end delete_quest_fields;
398: