DBA Data[Home] [Help]

APPS.PER_PRT_INS dependencies on HR_UTILITY

Line 22: hr_utility.set_location('Entering:'||l_proc, 10);

18: --
19: l_proc varchar2(72) := g_package||'set_base_key_value';
20: --
21: Begin
22: hr_utility.set_location('Entering:'||l_proc, 10);
23: --
24: per_prt_ins.g_performance_rating_id_i := p_performance_rating_id;
25: --
26: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

22: hr_utility.set_location('Entering:'||l_proc, 10);
23: --
24: per_prt_ins.g_performance_rating_id_i := p_performance_rating_id;
25: --
26: hr_utility.set_location(' Leaving:'||l_proc, 20);
27: End set_base_key_value;
28: --
29: --
30: -- ---------------------------------------------------------------------------+

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

74:
75: l_proc varchar2(72) := g_package||'insert_dml';
76:
77: Begin
78: hr_utility.set_location('Entering:'||l_proc, 5);
79: p_rec.object_version_number := 1; -- Initialise the object version
80:
81: -- Insert the row into: per_performance_ratings
82:

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

142: p_rec.attribute20,
143: p_rec.appr_line_score
144: );
145:
146: hr_utility.set_location(' Leaving:'||l_proc, 10);
147: Exception
148: When hr_api.check_integrity_violated Then
149: -- A check constraint has been violated
150: per_prt_shd.constraint_error

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

213: per_prt_ins.g_performance_rating_id_i;
214: --
215:
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 5);
218:
219:
220: -- Select the next sequence number
221: IF (per_prt_ins.g_performance_rating_id_i is not null)

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

246: Fetch C_Sel1 Into p_rec.performance_rating_id;
247: Close C_Sel1;
248: END IF;
249:
250: hr_utility.set_location(' Leaving:'||l_proc, 10);
251: End pre_insert;
252:
253: -- ---------------------------------------------------------------------------+
254: -- |-----------------------------< post_insert >------------------------------|

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

286:
287: l_proc varchar2(72) := g_package||'post_insert';
288:
289: Begin
290: hr_utility.set_location('Entering:'||l_proc, 5);
291:
292: -- This is a hook point and the user hook for post_insert is called here.
293:
294: begin

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

330: );
331: end;
332: -- End of API User Hook for post_insert.
333:
334: hr_utility.set_location(' Leaving:'||l_proc, 10);
335: End post_insert;
336:
337: -- ---------------------------------------------------------------------------+
338: -- |---------------------------------< ins >----------------------------------|

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

346:
347: l_proc varchar2(72) := g_package||'ins';
348:
349: Begin
350: hr_utility.set_location('Entering:'||l_proc, 5);
351:
352: -- Determine if the business process is to be validated.
353:
354: If p_validate then

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

394: If p_validate then
395: Raise HR_Api.Validate_Enabled;
396: End If;
397:
398: hr_utility.set_location(' Leaving:'||l_proc, 10);
399: Exception
400: When HR_Api.Validate_Enabled Then
401:
402: -- As the Validate_Enabled exception has been raised

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

446: l_rec per_prt_shd.g_rec_type;
447: l_proc varchar2(72) := g_package||'ins';
448:
449: Begin
450: hr_utility.set_location('Entering:'||l_proc, 5);
451:
452: -- Call conversion function to turn arguments into the
453: -- p_rec structure.
454:

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

496:
497: p_performance_rating_id := l_rec.performance_rating_id;
498: p_object_version_number := l_rec.object_version_number;
499:
500: hr_utility.set_location(' Leaving:'||l_proc, 10);
501: End ins;
502:
503: end per_prt_ins;