DBA Data[Home] [Help]

APPS.PER_ASG_UPD dependencies on HR_UTILITY

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

66: l_object_version_number number;
67: -- End of 518655
68: --
69: Begin
70: hr_utility.set_location('Entering:'||l_proc, 5);
71: --
72: If (p_datetrack_mode = 'CORRECTION') then
73: hr_utility.set_location(l_proc, 10);
74: --

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

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

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

222: p_rec.effective_start_date := p_validation_start_date;
223: p_rec.effective_end_date := p_validation_end_date;
224: End If;
225: --
226: hr_utility.set_location(' Leaving:'||l_proc, 15);
227: Exception
228: When hr_api.check_integrity_violated Then
229: -- A check constraint has been violated
230: per_asg_shd.g_api_dml := false; -- Unset the api dml status

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

280: --
281: l_proc varchar2(72) := g_package||'update_dml';
282: --
283: Begin
284: hr_utility.set_location('Entering:'||l_proc, 5);
285: --
286: dt_update_dml(p_rec => p_rec,
287: p_effective_date => p_effective_date,
288: p_datetrack_mode => p_datetrack_mode,

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

288: p_datetrack_mode => p_datetrack_mode,
289: p_validation_start_date => p_validation_start_date,
290: p_validation_end_date => p_validation_end_date);
291: --
292: hr_utility.set_location(' Leaving:'||l_proc, 10);
293: End update_dml;
294: --
295: -- ----------------------------------------------------------------------------
296: -- |----------------------------< dt_pre_update >-----------------------------|

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

345: l_proc varchar2(72) := g_package||'dt_pre_update';
346: l_dummy_version_number number;
347: --
348: Begin
349: hr_utility.set_location('Entering:'||l_proc, 5);
350: If (p_datetrack_mode <> 'CORRECTION') then
351: hr_utility.set_location(l_proc, 10);
352: --
353: -- Update the current effective end date

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

347: --
348: Begin
349: hr_utility.set_location('Entering:'||l_proc, 5);
350: If (p_datetrack_mode <> 'CORRECTION') then
351: hr_utility.set_location(l_proc, 10);
352: --
353: -- Update the current effective end date
354: --
355: per_asg_shd.upd_effective_end_date

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

360: p_validation_end_date => p_validation_end_date,
361: p_object_version_number => l_dummy_version_number);
362: --
363: If (p_datetrack_mode = 'UPDATE_OVERRIDE') then
364: hr_utility.set_location(l_proc, 15);
365: --
366: -- As the datetrack mode is 'UPDATE_OVERRIDE' then we must
367: -- delete any future rows
368: --

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

372: p_datetrack_mode => p_datetrack_mode,
373: p_validation_start_date => p_validation_start_date,
374: p_validation_end_date => p_validation_end_date);
375: End If;
376: hr_utility.set_location(l_proc, 20);
377: --
378: -- We must now insert the updated row
379: --
380: per_asg_ins.insert_dml

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

383: p_datetrack_mode => p_datetrack_mode,
384: p_validation_start_date => p_validation_start_date,
385: p_validation_end_date => p_validation_end_date);
386: End If;
387: hr_utility.set_location(' Leaving:'||l_proc, 20);
388: End dt_pre_update;
389: --
390: -- ----------------------------------------------------------------------------
391: -- |------------------------------< pre_update >------------------------------|

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

446: and p_effective_date -1 between
447: effective_start_date and effective_end_date;
448: --
449: Begin
450: hr_utility.set_location('Entering:'||l_proc, 1);
451: --
452: -- Insert the comment text if comments exist
453: --
454: If (p_rec.comment_text is not null and p_rec.comment_id is null) then

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

461: hr_comm_api.upd(p_comment_id => p_rec.comment_id,
462: p_source_table_name => 'PER_ALL_ASSIGNMENTS_F',
463: p_comment_text => p_rec.comment_text);
464: End If;
465: hr_utility.set_location(l_proc, 10);
466: --
467: -- Generate date probation end
468: --
469: -- Business Rule Mapping

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

486: );
487: end if;
488: -- Bug 3629308, 4041992 Ends Here
489: --
490: hr_utility.set_location(l_proc, 20);
491: --
492: dt_pre_update
493: (p_rec => p_rec,
494: p_effective_date => p_effective_date,

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

581: ,p_ass_attribute29 => p_rec.ass_attribute29
582: ,p_ass_attribute30 => p_rec.ass_attribute30
583: );*/
584: --
585: hr_utility.set_location(' Leaving:'||l_proc, 30);
586: End pre_update;
587: --
588: -- ----------------------------------------------------------------------------
589: -- |-----------------------------< post_update >------------------------------|

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

633: --
634: l_proc varchar2(72) := g_package||'post_update';
635: --
636: Begin
637: hr_utility.set_location('Entering:'||l_proc, 5);
638: --
639: -- Start of API User Hook for post_update.
640:
641: --

Line 701: hr_utility.set_location('Entering:'||l_proc, 6);

697: ,p_ass_attribute30 => p_old_rec.ass_attribute30
698: );
699: -- End changes for bug 13059935
700:
701: hr_utility.set_location('Entering:'||l_proc, 6);
702:
703:
704: begin
705: per_asg_rku.after_update

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

1297:
1298: -- End of call to Workflow Sync Procedure For Assignments
1299:
1300: --
1301: hr_utility.set_location(' Leaving:'||l_proc, 10);
1302: End post_update;
1303: --
1304: -- ----------------------------------------------------------------------------
1305: -- |-----------------------------< convert_defs >-----------------------------|

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

1349: l_proc varchar2(72) := g_package||'convert_defs';
1350: --
1351: Begin
1352: --
1353: hr_utility.set_location('Entering:'||l_proc, 5);
1354: --
1355: -- We must now examine each argument value in the
1356: -- p_rec plsql record structure
1357: -- to see if a system default is being used. If a system default

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

1789: p_rec.projected_assignment_end :=
1790: per_asg_shd.g_old_rec.projected_assignment_end;
1791: End If;
1792: --
1793: hr_utility.set_location(' Leaving:'||l_proc, 10);
1794: --
1795: End convert_defs;
1796: --
1797: -- ----------------------------------------------------------------------------

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

1953: l_old_rowid rowid;
1954: -- End changes for bug 13059935
1955: --
1956: Begin
1957: hr_utility.set_location('Entering:'||l_proc, 5);
1958: --
1959: -- Ensure that the DateTrack update mode is valid
1960: --
1961: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);

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

2081: If p_validate then
2082: Raise HR_Api.Validate_Enabled;
2083: End If;
2084: --
2085: hr_utility.set_location(' Leaving:'||l_proc, 10);
2086: Exception
2087: When HR_Api.Validate_Enabled Then
2088: --
2089: -- As the Validate_Enabled exception has been raised

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

2229:
2230: l_proc varchar2(72) := g_package||'upd';
2231: --
2232: Begin
2233: hr_utility.set_location('Entering:'||l_proc, 5);
2234: --
2235: -- Call conversion function to turn arguments into the
2236: -- l_rec structure.
2237: --

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

2377: p_effective_start_date := l_rec.effective_start_date;
2378:
2379: p_object_version_number := l_rec.object_version_number;
2380: --
2381: hr_utility.set_location(' Leaving:'||l_proc, 10);
2382: End upd;
2383: --
2384: end per_asg_upd;