DBA Data[Home] [Help]

APPS.PER_APR_INS dependencies on HR_UTILITY

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

21: --
22: l_proc varchar2(72) := g_package||'set_base_key_value';
23: --
24: Begin
25: hr_utility.set_location('Entering:'||l_proc, 10);
26: --
27: per_apr_ins.g_appraisal_id_i := p_appraisal_id;
28: --
29: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

25: hr_utility.set_location('Entering:'||l_proc, 10);
26: --
27: per_apr_ins.g_appraisal_id_i := p_appraisal_id;
28: --
29: hr_utility.set_location(' Leaving:'||l_proc, 20);
30: End set_base_key_value;
31: --
32: --
33: -- ---------------------------------------------------------------------------+

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

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

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

223: p_rec.show_participant_comments -- 8651478 bug fix
224: );
225:
226:
227: hr_utility.set_location(' Leaving:'||l_proc, 10);
228: Exception
229: When hr_api.check_integrity_violated Then
230: -- A check constraint has been violated
231: per_apr_shd.constraint_error

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

292: where appraisal_id =
293: per_apr_ins.g_appraisal_id_i;
294: --
295: Begin
296: hr_utility.set_location('Entering:'||l_proc, 5);
297:
298:
299: -- Select the next sequence number
300: If (per_apr_ins.g_appraisal_id_i is not null)

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

325: Fetch C_Sel1 Into p_rec.appraisal_id;
326: Close C_Sel1;
327:
328: End If;
329: hr_utility.set_location(' Leaving:'||l_proc, 10);
330: End pre_insert;
331:
332: -- ---------------------------------------------------------------------------+
333: -- |-----------------------------< post_insert >------------------------------|

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

365:
366: l_proc varchar2(72) := g_package||'post_insert';
367:
368: Begin
369: hr_utility.set_location('Entering:'||l_proc, 5);
370:
371: -- This is a hook point and the user hook for post_insert is called here.
372:
373: begin

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

451: );
452: end;
453: -- End of API User Hook for post_insert.
454:
455: hr_utility.set_location(' Leaving:'||l_proc, 10);
456: End post_insert;
457:
458: -- ---------------------------------------------------------------------------+
459: -- |---------------------------------< ins >----------------------------------|

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

467:
468: l_proc varchar2(72) := g_package||'ins';
469:
470: Begin
471: hr_utility.set_location('Entering:'||l_proc, 5);
472:
473: -- Determine if the business process is to be validated.
474:
475: If p_validate then

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

506: If p_validate then
507: Raise HR_Api.Validate_Enabled;
508: End If;
509:
510: hr_utility.set_location(' Leaving:'||l_proc, 10);
511: Exception
512: When HR_Api.Validate_Enabled Then
513:
514: -- As the Validate_Enabled exception has been raised

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

599: l_rec per_apr_shd.g_rec_type;
600: l_proc varchar2(72) := g_package||'ins';
601:
602: Begin
603: hr_utility.set_location('Entering:'||l_proc, 5);
604:
605: -- Call conversion function to turn arguments into the
606: -- p_rec structure.
607:

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

690:
691: p_appraisal_id := l_rec.appraisal_id;
692: p_object_version_number := l_rec.object_version_number;
693:
694: hr_utility.set_location(' Leaving:'||l_proc, 10);
695: End ins;
696:
697: end per_apr_ins;