DBA Data[Home] [Help]

APPS.OTA_TAV_UPD dependencies on HR_UTILITY

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

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

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

129: where activity_version_id = p_rec.activity_version_id;
130: --
131: ota_tav_shd.g_api_dml := false; -- Unset the api dml status
132: --
133: hr_utility.set_location(' Leaving:'||l_proc, 10);
134: --
135: Exception
136: When hr_api.check_integrity_violated Then
137: -- A check constraint has been violated

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

189: --
190: l_proc varchar2(72) := g_package||'pre_update';
191: --
192: Begin
193: hr_utility.set_location('Entering:'||l_proc, 5);
194: --
195: hr_utility.set_location(' Leaving:'||l_proc, 10);
196: End pre_update;
197: --

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

191: --
192: Begin
193: hr_utility.set_location('Entering:'||l_proc, 5);
194: --
195: hr_utility.set_location(' Leaving:'||l_proc, 10);
196: End pre_update;
197: --
198: -- ----------------------------------------------------------------------------
199: -- |-----------------------------< post_update >------------------------------|

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

233: l_start_date_changed boolean := ota_general.value_changed(ota_tav_shd.g_old_rec.start_date, p_rec.start_date);
234: l_end_date_changed boolean := ota_general.value_changed(ota_tav_shd.g_old_rec.end_date, p_rec.end_date);
235: --
236: Begin
237: hr_utility.set_location('Entering:'||l_proc, 5);
238: --
239: If not l_start_date_changed and not l_end_date_changed Then
240: return;
241: Else

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

255: , p_rec.end_date
256: );
257: End if;
258: --
259: hr_utility.set_location(' Leaving:'||l_proc, 10);
260: End post_update;
261: --
262: -- ----------------------------------------------------------------------------
263: -- |-----------------------------< convert_defs >-----------------------------|

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

308: l_proc varchar2(72) := g_package||'convert_defs';
309: --
310: Begin
311: --
312: hr_utility.set_location('Entering:'||l_proc, 5);
313: --
314: -- We must now examine each argument value in the
315: -- p_rec plsql record structure
316: -- to see if a system default is being used. If a system default

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

538: End If;
539: --
540: -- Return the plsql record structure.
541: --
542: hr_utility.set_location(' Leaving:'||l_proc, 10);
543: Return(p_rec);
544: --
545: End convert_defs;
546: --

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

555: --
556: l_proc varchar2(72) := g_package||'upd';
557: --
558: Begin
559: hr_utility.set_location('Entering:'||l_proc, 5);
560: --
561: -- Determine if the business process is to be validated.
562: --
563: If p_validate then

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

606: If p_validate then
607: Raise HR_Api.Validate_Enabled;
608: End If;
609: --
610: hr_utility.set_location(' Leaving:'||l_proc, 10);
611: Exception
612: When HR_Api.Validate_Enabled Then
613: --
614: -- As the Validate_Enabled exception has been raised

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

687: l_rec ota_tav_shd.g_rec_type;
688: l_proc varchar2(72) := g_package||'upd';
689: --
690: Begin
691: hr_utility.set_location('Entering:'||l_proc, 5);
692: --
693: -- Call conversion function to turn arguments into the
694: -- l_rec structure.
695: --

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

762: --
763: upd(l_rec, p_validate);
764: p_object_version_number := l_rec.object_version_number;
765: --
766: hr_utility.set_location(' Leaving:'||l_proc, 10);
767: End upd;
768: --
769: end ota_tav_upd;