DBA Data[Home] [Help]

APPS.BEN_PGM_INS dependencies on HR_UTILITY

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

79: l_last_updated_by ben_pgm_f.last_updated_by%TYPE;
80: l_last_update_login ben_pgm_f.last_update_login%TYPE;
81: --
82: Begin
83: hr_utility.set_location('Entering:'||l_proc, 5);
84: --
85: -- Get the object version number for the insert
86: --
87: p_rec.object_version_number :=

Line 103: hr_utility.set_location(l_proc, 10);

99: -- If the datetrack_mode is not INSERT then we must populate the WHO
100: -- columns with the 'old' creation values and 'new' updated values.
101: --
102: If (p_datetrack_mode <> 'INSERT') then
103: hr_utility.set_location(l_proc, 10);
104: --
105: -- Select the 'old' created values
106: --
107: Open C_Sel1;

Line 371: hr_utility.set_location(' Leaving:'||l_proc, 15);

367: p_rec.all_inelig
368: );
369: --
370: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status
371: hr_utility.set_location(' Leaving:'||l_proc, 15);
372: --
373: Exception
374: When hr_api.check_integrity_violated Then
375: -- A check constraint has been violated

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

398: --
399: l_proc varchar2(72) := g_package||'insert_dml';
400: --
401: Begin
402: hr_utility.set_location('Entering:'||l_proc, 5);
403: --
404: dt_insert_dml(p_rec => p_rec,
405: p_effective_date => p_effective_date,
406: p_datetrack_mode => p_datetrack_mode,

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

406: p_datetrack_mode => p_datetrack_mode,
407: p_validation_start_date => p_validation_start_date,
408: p_validation_end_date => p_validation_end_date);
409: --
410: hr_utility.set_location(' Leaving:'||l_proc, 10);
411: End insert_dml;
412: --
413: -- ----------------------------------------------------------------------------
414: -- |------------------------------< pre_insert >------------------------------|

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

463: from sys.dual;
464: --
465: --
466: Begin
467: hr_utility.set_location('Entering:'||l_proc, 5);
468: --
469: open c1;
470: fetch c1 into p_rec.pgm_id;
471: close c1;

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

470: fetch c1 into p_rec.pgm_id;
471: close c1;
472: --
473: --
474: hr_utility.set_location(' Leaving:'||l_proc, 10);
475: End pre_insert;
476: --
477: -- ----------------------------------------------------------------------------
478: -- |-----------------------------< post_insert >------------------------------|

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

515: --
516: l_proc varchar2(72) := g_package||'post_insert';
517: --
518: Begin
519: hr_utility.set_location('Entering:'||l_proc, 5);
520: --
521: -- Added for GSP validations
522: pqh_gsp_ben_validations.pgm_validations
523: ( p_pgm_id => p_rec.pgm_id

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

535: );
536:
537: --
538:
539: hr_utility.set_location(' Leaving:'||l_proc, 10);
540: End post_insert;
541: --
542: -- ----------------------------------------------------------------------------
543: -- |-------------------------------< ins_lck >--------------------------------|

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

587: l_validation_start_date date;
588: l_validation_end_date date;
589: --
590: Begin
591: hr_utility.set_location('Entering:'||l_proc, 5);
592: --
593: -- Validate the datetrack mode mode getting the validation start
594: -- and end dates for the specified datetrack operation.
595: --

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

625: --
626: p_validation_start_date := l_validation_start_date;
627: p_validation_end_date := l_validation_end_date;
628: --
629: hr_utility.set_location(' Leaving:'||l_proc, 10);
630: --
631: End ins_lck;
632: --
633: -- ----------------------------------------------------------------------------

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

644: l_validation_start_date date;
645: l_validation_end_date date;
646: --
647: Begin
648: hr_utility.set_location('Entering:'||l_proc, 5);
649: --
650: -- Call the lock operation
651: --
652: ins_lck

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

815: l_rec ben_pgm_shd.g_rec_type;
816: l_proc varchar2(72) := g_package||'ins';
817: --
818: Begin
819: hr_utility.set_location('Entering:'||l_proc, 5);
820: --
821: -- Call conversion function to turn arguments into the
822: -- p_rec structure.
823: --

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

950: p_effective_end_date := l_rec.effective_end_date;
951: p_object_version_number := l_rec.object_version_number;
952: --
953: --
954: hr_utility.set_location(' Leaving:'||l_proc, 10);
955: End ins;
956: --
957: end ben_pgm_ins;