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 132: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

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

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

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

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

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

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

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

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

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

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

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

534:
535: --
536: -- Return the plsql record structure.
537: --
538: hr_utility.set_location(' Leaving:'||l_proc, 10);
539: Return(p_rec);
540: --
541: End convert_defs;
542: --

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

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

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

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

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

682: l_rec ota_tav_shd.g_rec_type;
683: l_proc varchar2(72) := g_package||'upd';
684: --
685: Begin
686: hr_utility.set_location('Entering:'||l_proc, 5);
687: --
688: -- Call conversion function to turn arguments into the
689: -- l_rec structure.
690: --

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

756: --
757: upd(l_rec, p_validate);
758: p_object_version_number := l_rec.object_version_number;
759: --
760: hr_utility.set_location(' Leaving:'||l_proc, 10);
761: End upd;
762: --
763: end ota_tav_upd;