DBA Data[Home] [Help]

APPS.PER_RSC_UPD dependencies on HR_UTILITY

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

49: --
50: l_proc varchar2(72) := g_package||'update_dml';
51: --
52: Begin
53: hr_utility.set_location('Entering:'||l_proc, 5);
54: --
55: -- Increment the object version
56: --
57: p_rec.object_version_number := p_rec.object_version_number + 1;

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

91: attribute20 = p_rec.attribute20
92: where rating_scale_id = p_rec.rating_scale_id;
93: --
94: --
95: hr_utility.set_location(' Leaving:'||l_proc, 10);
96: --
97: Exception
98: When hr_api.check_integrity_violated Then
99: -- A check constraint has been violated

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

147: --
148: l_proc varchar2(72) := g_package||'pre_update';
149: --
150: Begin
151: hr_utility.set_location('Entering:'||l_proc, 5);
152: --
153: hr_utility.set_location(' Leaving:'||l_proc, 10);
154: End pre_update;
155: --

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

149: --
150: Begin
151: hr_utility.set_location('Entering:'||l_proc, 5);
152: --
153: hr_utility.set_location(' Leaving:'||l_proc, 10);
154: End pre_update;
155: --
156: -- ----------------------------------------------------------------------------
157: -- |-----------------------------< post_update >------------------------------|

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

189: --
190: l_proc varchar2(72) := g_package||'post_update';
191: --
192: Begin
193: hr_utility.set_location('Entering:'||l_proc, 5);
194: --
195: -- This is a hook point and the user hook for post_update is called here.
196: --
197: begin

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

263: );
264: end;
265: -- End of API User Hook for post_update
266: --
267: hr_utility.set_location(' Leaving:'||l_proc, 10);
268: End post_update;
269: --
270: -- ----------------------------------------------------------------------------
271: -- |-----------------------------< convert_defs >-----------------------------|

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

316: l_proc varchar2(72) := g_package||'convert_defs';
317: --
318: Begin
319: --
320: hr_utility.set_location('Entering:'||l_proc, 5);
321: --
322: -- We must now examine each argument value in the
323: -- p_rec plsql record structure
324: -- to see if a system default is being used. If a system default

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

436: p_rec.attribute20 :=
437: per_rsc_shd.g_old_rec.attribute20;
438: End If;
439: --
440: hr_utility.set_location(' Leaving:'||l_proc, 10);
441: --
442: End convert_defs;
443: --
444: -- ----------------------------------------------------------------------------

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

453: --
454: l_proc varchar2(72) := g_package||'upd';
455: --
456: Begin
457: hr_utility.set_location('Entering:'||l_proc, 5);
458: --
459: -- Determine if the business process is to be validated.
460: --
461: If p_validate then

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

499: If p_validate then
500: Raise HR_Api.Validate_Enabled;
501: End If;
502: --
503: hr_utility.set_location(' Leaving:'||l_proc, 10);
504: Exception
505: When HR_Api.Validate_Enabled Then
506: --
507: -- As the Validate_Enabled exception has been raised

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

550: l_rec per_rsc_shd.g_rec_type;
551: l_proc varchar2(72) := g_package||'upd';
552: --
553: Begin
554: hr_utility.set_location('Entering:'||l_proc, 5);
555: --
556: -- Call conversion function to turn arguments into the
557: -- l_rec structure.
558: --

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

597: --
598: upd(l_rec, p_validate, p_effective_date);
599: p_object_version_number := l_rec.object_version_number;
600: --
601: hr_utility.set_location(' Leaving:'||l_proc, 10);
602: End upd;
603: --
604: end per_rsc_upd;