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 369: hr_utility.set_location(' Leaving:'||l_proc, 15);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

946: p_effective_end_date := l_rec.effective_end_date;
947: p_object_version_number := l_rec.object_version_number;
948: --
949: --
950: hr_utility.set_location(' Leaving:'||l_proc, 10);
951: End ins;
952: --
953: end ben_pgm_ins;