DBA Data[Home] [Help]

APPS.BEN_ASG_UPD dependencies on HR_UTILITY

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

63: --
64: l_proc varchar2(72) := g_package||'dt_update_dml';
65: --
66: Begin
67: hr_utility.set_location('Entering:'||l_proc, 5);
68: --
69: If (p_datetrack_mode = 'CORRECTION') then
70: hr_utility.set_location(l_proc, 10);
71: --

Line 70: hr_utility.set_location(l_proc, 10);

66: Begin
67: hr_utility.set_location('Entering:'||l_proc, 5);
68: --
69: If (p_datetrack_mode = 'CORRECTION') then
70: hr_utility.set_location(l_proc, 10);
71: --
72: -- Because we are updating a row we must get the next object
73: -- version number.
74: --

Line 196: hr_utility.set_location(' Leaving:'||l_proc, 15);

192: p_rec.effective_start_date := p_validation_start_date;
193: p_rec.effective_end_date := p_validation_end_date;
194: End If;
195: --
196: hr_utility.set_location(' Leaving:'||l_proc, 15);
197: Exception
198: When hr_api.check_integrity_violated Then
199: -- A check constraint has been violated
200: per_asg_shd.g_api_dml := false; -- Unset the api dml status

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

250: --
251: l_proc varchar2(72) := g_package||'update_dml';
252: --
253: Begin
254: hr_utility.set_location('Entering:'||l_proc, 5);
255: --
256: dt_update_dml(p_rec => p_rec,
257: p_effective_date => p_effective_date,
258: p_datetrack_mode => p_datetrack_mode,

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

258: p_datetrack_mode => p_datetrack_mode,
259: p_validation_start_date => p_validation_start_date,
260: p_validation_end_date => p_validation_end_date);
261: --
262: hr_utility.set_location(' Leaving:'||l_proc, 10);
263: End update_dml;
264: --
265: -- ----------------------------------------------------------------------------
266: -- |----------------------------< dt_pre_update >-----------------------------|

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

315: l_proc varchar2(72) := g_package||'dt_pre_update';
316: l_dummy_version_number number;
317: --
318: Begin
319: hr_utility.set_location('Entering:'||l_proc, 5);
320: If (p_datetrack_mode <> 'CORRECTION') then
321: hr_utility.set_location(l_proc, 10);
322: --
323: -- Update the current effective end date

Line 321: hr_utility.set_location(l_proc, 10);

317: --
318: Begin
319: hr_utility.set_location('Entering:'||l_proc, 5);
320: If (p_datetrack_mode <> 'CORRECTION') then
321: hr_utility.set_location(l_proc, 10);
322: --
323: -- Update the current effective end date
324: --
325: per_asg_shd.upd_effective_end_date

Line 334: hr_utility.set_location(l_proc, 15);

330: p_validation_end_date => p_validation_end_date,
331: p_object_version_number => l_dummy_version_number);
332: --
333: If (p_datetrack_mode = 'UPDATE_OVERRIDE') then
334: hr_utility.set_location(l_proc, 15);
335: --
336: -- As the datetrack mode is 'UPDATE_OVERRIDE' then we must
337: -- delete any future rows
338: --

Line 346: hr_utility.set_location(l_proc, 20);

342: p_datetrack_mode => p_datetrack_mode,
343: p_validation_start_date => p_validation_start_date,
344: p_validation_end_date => p_validation_end_date);
345: End If;
346: hr_utility.set_location(l_proc, 20);
347: --
348: -- We must now insert the updated row
349: --
350: ben_asg_ins.insert_dml

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

353: p_datetrack_mode => p_datetrack_mode,
354: p_validation_start_date => p_validation_start_date,
355: p_validation_end_date => p_validation_end_date);
356: End If;
357: hr_utility.set_location(' Leaving:'||l_proc, 20);
358: End dt_pre_update;
359: --
360: -- ----------------------------------------------------------------------------
361: -- |------------------------------< pre_update >------------------------------|

Line 420: hr_utility.set_location('Entering:'||l_proc, 1);

416: and p_effective_date -1 between
417: effective_start_date and effective_end_date;
418: --
419: Begin
420: hr_utility.set_location('Entering:'||l_proc, 1);
421: --
422: -- Insert the comment text if comments exist
423: --
424: If (p_rec.comment_text is not null and p_rec.comment_id is null) then

Line 435: hr_utility.set_location(l_proc, 10);

431: hr_comm_api.upd(p_comment_id => p_rec.comment_id,
432: p_source_table_name => 'PER_ALL_ASSIGNMENTS_F',
433: p_comment_text => p_rec.comment_text);
434: End If;
435: hr_utility.set_location(l_proc, 10);
436: --
437: -- Generate date probation end
438: --
439: -- Business Rule Mapping

Line 455: hr_utility.set_location(l_proc, 20);

451: ,p_object_version_number => p_rec.object_version_number
452: ,p_date_probation_end => p_rec.date_probation_end
453: );
454: --
455: hr_utility.set_location(l_proc, 20);
456: --
457: dt_pre_update
458: (p_rec => p_rec,
459: p_effective_date => p_effective_date,

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

538: -- Reset the variable after checking for Assignment LEs
539: ben_asg_ins.g_trgr_loc_chg := TRUE;
540:
541: --
542: hr_utility.set_location(' Leaving:'||l_proc, 30);
543: End pre_update;
544: --
545: -- ----------------------------------------------------------------------------
546: -- |-----------------------------< post_update >------------------------------|

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

588: --
589: l_proc varchar2(72) := g_package||'post_update';
590: --
591: Begin
592: hr_utility.set_location('Entering:'||l_proc, 5);
593: --
594: -- Start of API User Hook for post_update.
595: begin
596: per_asg_rku.after_update

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

938: );
939: end;
940: -- End of API User Hook for post_update.
941: --
942: hr_utility.set_location(' Leaving:'||l_proc, 10);
943: End post_update;
944: --
945: -- ----------------------------------------------------------------------------
946: -- |-----------------------------< convert_defs >-----------------------------|

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

990: l_proc varchar2(72) := g_package||'convert_defs';
991: --
992: Begin
993: --
994: hr_utility.set_location('Entering:'||l_proc, 5);
995: --
996: -- We must now examine each argument value in the
997: -- p_rec plsql record structure
998: -- to see if a system default is being used. If a system default

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

1408: per_asg_shd.g_old_rec.applicant_rank;
1409: End If;
1410: --
1411:
1412: hr_utility.set_location(' Leaving:'||l_proc, 10);
1413: --
1414: End convert_defs;
1415: --
1416: -- ----------------------------------------------------------------------------

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

1441: l_no_managers_warning boolean;
1442: l_org_now_no_manager_warning boolean;
1443: --
1444: Begin
1445: hr_utility.set_location('Entering:'||l_proc, 5);
1446: --
1447: -- Ensure that the DateTrack update mode is valid
1448: --
1449: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);

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

1564: If p_validate then
1565: Raise HR_Api.Validate_Enabled;
1566: End If;
1567: --
1568: hr_utility.set_location(' Leaving:'||l_proc, 10);
1569: Exception
1570: When HR_Api.Validate_Enabled Then
1571: --
1572: -- As the Validate_Enabled exception has been raised

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

1706:
1707: l_proc varchar2(72) := g_package||'upd';
1708: --
1709: Begin
1710: hr_utility.set_location('Entering:'||l_proc, 5);
1711: --
1712: -- Call conversion function to turn arguments into the
1713: -- l_rec structure.
1714: --

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

1854: p_effective_start_date := l_rec.effective_start_date;
1855:
1856: p_object_version_number := l_rec.object_version_number;
1857: --
1858: hr_utility.set_location(' Leaving:'||l_proc, 10);
1859: End upd;
1860: --
1861: end ben_asg_upd;