DBA Data[Home] [Help]

APPS.HR_HIERARCHY_ELEMENT_API dependencies on HR_UTILITY

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

62: --Bug fix 2879820 ends here
63: --
64: begin
65: --
66: hr_utility.set_location('Entering:'|| l_proc, 10);
67: hr_utility.set_location('p_org_structure_version_id:'||p_org_structure_version_id, 568);
68: hr_utility.set_location('p_effective_date:'||p_effective_date, 568);
69: hr_utility.set_location('p_business_group_id:'||p_business_group_id, 568);
70: --

Line 67: hr_utility.set_location('p_org_structure_version_id:'||p_org_structure_version_id, 568);

63: --
64: begin
65: --
66: hr_utility.set_location('Entering:'|| l_proc, 10);
67: hr_utility.set_location('p_org_structure_version_id:'||p_org_structure_version_id, 568);
68: hr_utility.set_location('p_effective_date:'||p_effective_date, 568);
69: hr_utility.set_location('p_business_group_id:'||p_business_group_id, 568);
70: --
71: -- Issue a savepoint

Line 68: hr_utility.set_location('p_effective_date:'||p_effective_date, 568);

64: begin
65: --
66: hr_utility.set_location('Entering:'|| l_proc, 10);
67: hr_utility.set_location('p_org_structure_version_id:'||p_org_structure_version_id, 568);
68: hr_utility.set_location('p_effective_date:'||p_effective_date, 568);
69: hr_utility.set_location('p_business_group_id:'||p_business_group_id, 568);
70: --
71: -- Issue a savepoint
72: --

Line 69: hr_utility.set_location('p_business_group_id:'||p_business_group_id, 568);

65: --
66: hr_utility.set_location('Entering:'|| l_proc, 10);
67: hr_utility.set_location('p_org_structure_version_id:'||p_org_structure_version_id, 568);
68: hr_utility.set_location('p_effective_date:'||p_effective_date, 568);
69: hr_utility.set_location('p_business_group_id:'||p_business_group_id, 568);
70: --
71: -- Issue a savepoint
72: --
73: savepoint create_hierarchy_element;

Line 108: hr_utility.set_message(800,'HR_289732_ORG_VER_INV');

104: open c_date_from;
105: fetch c_date_from into l_date_from;
106: if c_date_from%notfound then
107: close c_date_from;
108: hr_utility.set_message(800,'HR_289732_ORG_VER_INV');
109: hr_utility.raise_error;
110: else
111: close c_date_from;
112: end if;

Line 109: hr_utility.raise_error;

105: fetch c_date_from into l_date_from;
106: if c_date_from%notfound then
107: close c_date_from;
108: hr_utility.set_message(800,'HR_289732_ORG_VER_INV');
109: hr_utility.raise_error;
110: else
111: close c_date_from;
112: end if;
113: --Bug fix 2879820 ends here

Line 220: hr_utility.set_location(' Leaving:'||l_proc, 70);

216: -- p_id := ;
217: -- p_object_version_number := ;
218: -- p_some_warning := ;
219: --
220: hr_utility.set_location(' Leaving:'||l_proc, 70);
221: exception
222: when hr_api.validate_enabled then
223: --
224: -- As the Validate_Enabled exception has been raised

Line 235: hr_utility.set_location(' Leaving:'||l_proc, 80);

231: -- when validation only mode is being used.)
232: --
233: p_org_structure_element_id := null;
234: p_object_version_number := null;
235: hr_utility.set_location(' Leaving:'||l_proc, 80);
236: when others then
237: --
238: -- A validation or unexpected error has occured
239: --

Line 247: hr_utility.set_location(' Leaving:'||l_proc, 90);

243: --
244: p_org_structure_element_id := null;
245: p_object_version_number := null;
246: p_inactive_org_warning := null;
247: hr_utility.set_location(' Leaving:'||l_proc, 90);
248: raise;
249: end create_hierarchy_element;
250: --
251: -- ----------------------------------------------------------------------------

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

276: l_inactive_org_warning boolean;
277: l_proc varchar2(72) := g_package||'create_hierarchy_element (old)';
278: --
279: begin
280: hr_utility.set_location('Entering:'|| l_proc, 10);
281: --
282: -- Issue a savepoint
283: --
284: savepoint create_hierarchy_element1;

Line 307: hr_utility.set_location(' Leaving:'||l_proc, 70);

303: else
304: p_warning_raised := null;
305: end if;
306: --
307: hr_utility.set_location(' Leaving:'||l_proc, 70);
308: --
309: end create_hierarchy_element;
310: --
311: --

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

330: l_object_version_number per_org_structure_elements
331: .object_version_number%TYPE;
332: l_ovn per_org_structure_elements .object_version_number%TYPE := p_object_version_number;
333: begin
334: hr_utility.set_location('Entering:'|| l_proc, 10);
335: --
336: l_object_version_number := p_object_version_number;
337: --
338: -- Issue a savepoint

Line 415: hr_utility.set_location(' Leaving:'||l_proc, 70);

411: -- Set all output arguments
412: --
413: p_object_version_number := l_object_version_number;
414: --
415: hr_utility.set_location(' Leaving:'||l_proc, 70);
416: exception
417: when hr_api.validate_enabled then
418: --
419: -- As the Validate_Enabled exception has been raised

Line 429: hr_utility.set_location(' Leaving:'||l_proc, 80);

425: -- (Any key or derived arguments must be set to null
426: -- when validation only mode is being used.)
427: --
428: p_object_version_number := p_object_version_number;
429: hr_utility.set_location(' Leaving:'||l_proc, 80);
430: when others then
431: --
432: -- A validation or unexpected error has occured
433: --

Line 439: hr_utility.set_location(' Leaving:'||l_proc, 90);

435: --
436: -- set in out parameters and set out parameters
437: --
438: p_object_version_number := l_ovn;
439: hr_utility.set_location(' Leaving:'||l_proc, 90);
440: raise;
441: end update_hierarchy_element;
442: --
443: -- ----------------------------------------------------------------------------

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

453: -- Declare cursors and local variables
454: --
455: l_proc varchar2(72) := g_package||'delete_hierarchy_element';
456: begin
457: hr_utility.set_location('Entering:'|| l_proc, 10);
458: --
459: --
460: -- Issue a savepoint
461: --

Line 527: hr_utility.set_location(' Leaving:'||l_proc, 70);

523: --
524: -- Set all output arguments
525: --
526: --
527: hr_utility.set_location(' Leaving:'||l_proc, 70);
528: exception
529: when hr_api.validate_enabled then
530: --
531: -- As the Validate_Enabled exception has been raised

Line 540: hr_utility.set_location(' Leaving:'||l_proc, 80);

536: -- Only set output warning arguments
537: -- (Any key or derived arguments must be set to null
538: -- when validation only mode is being used.)
539: --
540: hr_utility.set_location(' Leaving:'||l_proc, 80);
541: when others then
542: --
543: -- A validation or unexpected error has occured
544: --

Line 550: hr_utility.set_location(' Leaving:'||l_proc, 90);

546: --
547: -- set in out parameters and set out parameters
548: --
549: -- p_exists_in_hierarchy := null;
550: hr_utility.set_location(' Leaving:'||l_proc, 90);
551: raise;
552: end delete_hierarchy_element;
553:
554: -- ----------------------------------------------------------------------------

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

567: -- Declare cursors and local variables
568: --
569: l_proc varchar2(72) := g_package||'delete_hierarchy_element- old';
570: begin
571: hr_utility.set_location('Entering:'|| l_proc, 10);
572: --
573: --
574: -- Issue a savepoint
575: --

Line 586: hr_utility.set_location(' Leaving:'||l_proc, 90);

582: );
583: --
584: p_exists_in_hierarchy := 'N';
585: --
586: hr_utility.set_location(' Leaving:'||l_proc, 90);
587:
588: end delete_hierarchy_element;
589: --
590: --