DBA Data[Home] [Help]

APPS.PER_PEA_INS dependencies on HR_UTILITY

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

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

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

24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: per_pea_ins.g_person_analysis_id_i := p_person_analysis_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --
31: -- ----------------------------------------------------------------------------
32: -- |------------------------------< insert_dml >------------------------------|

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

77: --
78: l_proc varchar2(72) := g_package||'insert_dml';
79: --
80: Begin
81: hr_utility.set_location('Entering:'||l_proc, 5);
82: p_rec.object_version_number := 1; -- Initialise the object version
83: --
84: per_pea_shd.g_api_dml := true; -- Set the api dml status
85: --

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

160: );
161: --
162: per_pea_shd.g_api_dml := false; -- Unset the api dml status
163: --
164: hr_utility.set_location(' Leaving:'||l_proc, 10);
165: Exception
166: When hr_api.check_integrity_violated Then
167: -- A check constraint has been violated
168: per_pea_shd.g_api_dml := false; -- Unset the api dml status

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

233: Cursor C_Sel2 is Select null from per_person_analyses
234: where person_analysis_id = per_pea_ins.g_person_analysis_id_i;
235: --
236: Begin
237: hr_utility.set_location('Entering:'||l_proc, 5);
238: --
239: If (per_pea_ins.g_person_analysis_id_i is not null) Then
240: --
241: -- Verify registered primary key values not already in use

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

267: Fetch C_Sel1 Into p_rec.person_analysis_id;
268: Close C_Sel1;
269: End If;
270: --
271: hr_utility.set_location(' Leaving:'|| l_proc, 10);
272: End pre_insert;
273: --
274: -- ----------------------------------------------------------------------------
275: -- |-----------------------------< post_insert >------------------------------|

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

315: l_new_rec ben_pac_ler.g_pac_ler_rec;
316:
317: --
318: Begin
319: hr_utility.set_location('Entering:'||l_proc, 5);
320: --
321: -- Start of API User Hook for post_insert.
322: begin
323: per_pea_rki.after_insert

Line 389: hr_utility.set_location('Calling BEN Package :'||l_proc, 7);

385: l_new_rec.attribute18 :=p_rec.attribute18;
386: l_new_rec.attribute19 :=p_rec.attribute19;
387: l_new_rec.attribute20 :=p_rec.attribute20;
388:
389: hr_utility.set_location('Calling BEN Package :'||l_proc, 7);
390:
391: ben_pac_ler.ler_chk(l_old_rec
392: ,l_new_rec
393: ,nvl(nvl(l_new_rec.date_from,p_effective_date), sysdate )); -- 4054794

Line 395: hr_utility.set_location('End of BEN Call :'||l_proc, 9);

391: ben_pac_ler.ler_chk(l_old_rec
392: ,l_new_rec
393: ,nvl(nvl(l_new_rec.date_from,p_effective_date), sysdate )); -- 4054794
394:
395: hr_utility.set_location('End of BEN Call :'||l_proc, 9);
396:
397: -- End of BEN LER Check
398:
399: exception

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

404: );
405: end;
406: -- End of API User Hook for post_insert.
407: --
408: hr_utility.set_location(' Leaving:'||l_proc, 10);
409: End post_insert;
410: --
411: -- ----------------------------------------------------------------------------
412: -- |---------------------------------< ins >----------------------------------|

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

421: l_proc varchar2(72) := g_package||'ins';
422: l_rec per_pea_shd.g_rec_type;
423: --
424: Begin
425: hr_utility.set_location('Entering:'||l_proc, 5);
426: --
427: -- Determine if the business process is to be validated.
428: --
429: l_rec := p_rec;

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

464: If p_validate then
465: Raise HR_Api.Validate_Enabled;
466: End If;
467: --
468: hr_utility.set_location(' Leaving:'||l_proc, 10);
469: Exception
470: When HR_Api.Validate_Enabled Then
471: --
472: -- As the Validate_Enabled exception has been raised

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

522: l_rec per_pea_shd.g_rec_type;
523: l_proc varchar2(72) := g_package||'ins';
524: --
525: Begin
526: hr_utility.set_location('Entering:'||l_proc, 5);
527: --
528: -- Call conversion function to turn arguments into the
529: -- p_rec structure.
530: --

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

577: --
578: p_person_analysis_id := l_rec.person_analysis_id;
579: p_object_version_number := l_rec.object_version_number;
580: --
581: hr_utility.set_location(' Leaving:'||l_proc, 10);
582: End ins;
583: --
584: end per_pea_ins;