DBA Data[Home] [Help]

APPS.HR_PARTICIPANTS_SWI dependencies on HR_UTILITY

Line 61: hr_utility.set_location(' Entering:' || l_proc,10);

57: --
58: -- Other variables
59: l_proc varchar2(72) := g_package ||'create_participant';
60: Begin
61: hr_utility.set_location(' Entering:' || l_proc,10);
62: --
63: -- Issue a savepoint
64: --
65: savepoint create_participant_swi;

Line 140: hr_utility.set_location(' Leaving:' || l_proc,20);

136: -- messages of any type exist in the Multiple Message List.
137: -- Also disable Multiple Message Detection.
138: --
139: p_return_status := hr_multi_message.get_return_status_disable;
140: hr_utility.set_location(' Leaving:' || l_proc,20);
141: --
142: exception
143: when hr_multi_message.error_message_exist then
144: --

Line 155: hr_utility.set_location(' Leaving:' || l_proc, 30);

151: -- Reset IN OUT parameters and set OUT parameters
152: --
153: p_object_version_number := null;
154: p_return_status := hr_multi_message.get_return_status_disable;
155: hr_utility.set_location(' Leaving:' || l_proc, 30);
156: when others then
157: --
158: -- When Multiple Message Detection is enabled catch
159: -- any Application specific or other unexpected

Line 166: hr_utility.set_location(' Leaving:' || l_proc,40);

162: -- error.
163: --
164: rollback to create_participant_swi;
165: if hr_multi_message.unexpected_error_add(l_proc) then
166: hr_utility.set_location(' Leaving:' || l_proc,40);
167: raise;
168: end if;
169: --
170: -- Reset IN OUT and set OUT parameters

Line 174: hr_utility.set_location(' Leaving:' || l_proc,50);

170: -- Reset IN OUT and set OUT parameters
171: --
172: p_object_version_number := null;
173: p_return_status := hr_multi_message.get_return_status_disable;
174: hr_utility.set_location(' Leaving:' || l_proc,50);
175: end create_participant;
176: -- ----------------------------------------------------------------------------
177: -- |--------------------------< delete_participant >--------------------------|
178: -- ----------------------------------------------------------------------------

Line 194: hr_utility.set_location(' Entering:' || l_proc,10);

190: --
191: -- Other variables
192: l_proc varchar2(72) := g_package ||'delete_participant';
193: Begin
194: hr_utility.set_location(' Entering:' || l_proc,10);
195: --
196: -- Issue a savepoint
197: --
198: savepoint delete_participant_swi;

Line 236: hr_utility.set_location(' Leaving:' || l_proc,20);

232: -- messages of any type exist in the Multiple Message List.
233: -- Also disable Multiple Message Detection.
234: --
235: p_return_status := hr_multi_message.get_return_status_disable;
236: hr_utility.set_location(' Leaving:' || l_proc,20);
237: --
238: exception
239: when hr_multi_message.error_message_exist then
240: --

Line 250: hr_utility.set_location(' Leaving:' || l_proc, 30);

246: --
247: -- Reset IN OUT parameters and set OUT parameters
248: --
249: p_return_status := hr_multi_message.get_return_status_disable;
250: hr_utility.set_location(' Leaving:' || l_proc, 30);
251: when others then
252: --
253: -- When Multiple Message Detection is enabled catch
254: -- any Application specific or other unexpected

Line 261: hr_utility.set_location(' Leaving:' || l_proc,40);

257: -- error.
258: --
259: rollback to delete_participant_swi;
260: if hr_multi_message.unexpected_error_add(l_proc) then
261: hr_utility.set_location(' Leaving:' || l_proc,40);
262: raise;
263: end if;
264: --
265: -- Reset IN OUT and set OUT parameters

Line 268: hr_utility.set_location(' Leaving:' || l_proc,50);

264: --
265: -- Reset IN OUT and set OUT parameters
266: --
267: p_return_status := hr_multi_message.get_return_status_disable;
268: hr_utility.set_location(' Leaving:' || l_proc,50);
269: end delete_participant;
270: -- ----------------------------------------------------------------------------
271: -- |--------------------------< update_participant >--------------------------|
272: -- ----------------------------------------------------------------------------

Line 319: hr_utility.set_location(' Entering:' || l_proc,10);

315: --
316: -- Other variables
317: l_proc varchar2(72) := g_package ||'update_participant';
318: Begin
319: hr_utility.set_location(' Entering:' || l_proc,10);
320: --
321: -- Issue a savepoint
322: --
323: savepoint update_participant_swi;

Line 392: hr_utility.set_location(' Leaving:' || l_proc,20);

388: -- messages of any type exist in the Multiple Message List.
389: -- Also disable Multiple Message Detection.
390: --
391: p_return_status := hr_multi_message.get_return_status_disable;
392: hr_utility.set_location(' Leaving:' || l_proc,20);
393: --
394: exception
395: when hr_multi_message.error_message_exist then
396: --

Line 407: hr_utility.set_location(' Leaving:' || l_proc, 30);

403: -- Reset IN OUT parameters and set OUT parameters
404: --
405: p_object_version_number := l_object_version_number;
406: p_return_status := hr_multi_message.get_return_status_disable;
407: hr_utility.set_location(' Leaving:' || l_proc, 30);
408: when others then
409: --
410: -- When Multiple Message Detection is enabled catch
411: -- any Application specific or other unexpected

Line 418: hr_utility.set_location(' Leaving:' || l_proc,40);

414: -- error.
415: --
416: rollback to update_participant_swi;
417: if hr_multi_message.unexpected_error_add(l_proc) then
418: hr_utility.set_location(' Leaving:' || l_proc,40);
419: raise;
420: end if;
421: --
422: -- Reset IN OUT and set OUT parameters

Line 426: hr_utility.set_location(' Leaving:' || l_proc,50);

422: -- Reset IN OUT and set OUT parameters
423: --
424: p_object_version_number := l_object_version_number;
425: p_return_status := hr_multi_message.get_return_status_disable;
426: hr_utility.set_location(' Leaving:' || l_proc,50);
427: end update_participant;
428:
429: -- ----------------------------------------------------------------------------
430: -- |---------------------------< process_api >--------------------------------|

Line 450: hr_utility.set_location(' Entering:' || l_proc,10);

446: l_proc varchar2(72) := g_package || 'process_api';
447:
448: BEGIN
449:
450: hr_utility.set_location(' Entering:' || l_proc,10);
451: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);
452:
453: l_parser := xmlparser.newParser;
454: xmlparser.ParseCLOB(l_parser,p_document);

Line 451: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);

447:
448: BEGIN
449:
450: hr_utility.set_location(' Entering:' || l_proc,10);
451: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);
452:
453: l_parser := xmlparser.newParser;
454: xmlparser.ParseCLOB(l_parser,p_document);
455: l_CommitNode := xmldom.makeNode(xmldom.getDocumentElement(xmlparser.getDocument(l_parser)));

Line 457: hr_utility.set_location('Extracting the PostState:' || l_proc,20);

453: l_parser := xmlparser.newParser;
454: xmlparser.ParseCLOB(l_parser,p_document);
455: l_CommitNode := xmldom.makeNode(xmldom.getDocumentElement(xmlparser.getDocument(l_parser)));
456:
457: hr_utility.set_location('Extracting the PostState:' || l_proc,20);
458:
459: l_commitElement := xmldom.makeElement(l_CommitNode);
460: l_postState := xmldom.getAttribute(l_commitElement, 'PS');
461: l_object_version_number := hr_transaction_swi.getNumberValue(l_CommitNode,'ObjectVersionNumber');

Line 556: hr_utility.set_location('Exiting:' || l_proc,40);

552: p_return_status := l_return_status;
553:
554: end if;
555:
556: hr_utility.set_location('Exiting:' || l_proc,40);
557:
558: END process_api;
559:
560: end hr_participants_swi;