DBA Data[Home] [Help]

APPS.PER_OSE_UPD dependencies on HR_UTILITY

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

57: --
58: l_proc varchar2(72) := g_package||'update_dml';
59: --
60: Begin
61: hr_utility.set_location('Entering:'||l_proc, 5);
62: --
63: -- Increment the object version
64: p_rec.object_version_number := p_rec.object_version_number + 1;
65: --

Line 85: hr_utility.set_location(' Leaving:'||l_proc, 10);

81: where org_structure_element_id = p_rec.org_structure_element_id;
82: --
83: per_ose_shd.g_api_dml := false; -- Unset the api dml status
84: --
85: hr_utility.set_location(' Leaving:'||l_proc, 10);
86: --
87: Exception
88: When hr_api.check_integrity_violated Then
89: -- A check constraint has been violated

Line 147: hr_utility.set_location('Entering:'||l_proc, 5);

143: --
144: l_proc varchar2(72) := g_package||'pre_update';
145: --
146: Begin
147: hr_utility.set_location('Entering:'||l_proc, 5);
148: --
149: hr_utility.set_location(' Leaving:'||l_proc, 10);
150: End pre_update;
151: --

Line 149: hr_utility.set_location(' Leaving:'||l_proc, 10);

145: --
146: Begin
147: hr_utility.set_location('Entering:'||l_proc, 5);
148: --
149: hr_utility.set_location(' Leaving:'||l_proc, 10);
150: End pre_update;
151: --
152: -- ----------------------------------------------------------------------------
153: -- |-----------------------------< post_update >------------------------------|

Line 191: hr_utility.set_location('Entering:'||l_proc, 5);

187: --
188: l_proc varchar2(72) := g_package||'post_update';
189: --
190: Begin
191: hr_utility.set_location('Entering:'||l_proc, 5);
192: begin
193: --
194: per_ose_rku.after_update
195: (p_org_structure_element_id

Line 245: hr_utility.set_location(' Leaving:'||l_proc, 10);

241: ,p_hook_type => 'AU');
242: --
243: end;
244: --
245: hr_utility.set_location(' Leaving:'||l_proc, 10);
246: End post_update;
247: --
248: -- ----------------------------------------------------------------------------
249: -- |-----------------------------< convert_defs >-----------------------------|

Line 357: hr_utility.set_location('Entering:'||l_proc, 5);

353: l_myexception Exception;
354: --Bug no 2720039 ends here
355: --
356: Begin
357: hr_utility.set_location('Entering:'||l_proc, 5);
358: --
359: -- We must lock the row which we need to update.
360: --
361: per_ose_shd.lck

Line 406: hr_utility.set_location('old_parent_id '||l_old_parent_org_id||'new_parent_id '||l_new_parent_org_id,10);

402: where ORG_STRUCTURE_VERSION_ID = p_rec.org_structure_version_id
403: and not exists (select null from per_org_structure_elements
404: where ORGANIZATION_ID_CHILD = x.ORGANIZATION_ID_PARENT)
405: and rownum=1;
406: hr_utility.set_location('old_parent_id '||l_old_parent_org_id||'new_parent_id '||l_new_parent_org_id,10);
407: if (l_old_parent_org_id<>l_new_parent_org_id) then
408: raise l_myexception;
409: end if;
410:

Line 438: hr_utility.set_location('Entering:'||l_proc, 5);

434: l_rec per_ose_shd.g_rec_type;
435: l_proc varchar2(72) := g_package||'upd';
436: --
437: Begin
438: hr_utility.set_location('Entering:'||l_proc, 5);
439: --
440: -- Call conversion function to turn arguments into the
441: -- l_rec structure.
442: --

Line 468: hr_utility.set_location(' Leaving:'||l_proc, 10);

464: ,p_effective_date
465: );
466: p_object_version_number := l_rec.object_version_number;
467: --
468: hr_utility.set_location(' Leaving:'||l_proc, 10);
469: End upd;
470: --
471: end per_ose_upd;