DBA Data[Home] [Help]

APPS.BEN_PEP_INS dependencies on BEN_PEP_SHD

Line 58: (p_rec in out nocopy ben_pep_shd.g_rec_type,

54: --
55: -- {End Of Comments}
56: -- ----------------------------------------------------------------------------
57: Procedure dt_insert_dml
58: (p_rec in out nocopy ben_pep_shd.g_rec_type,
59: p_effective_date in date,
60: p_datetrack_mode in varchar2,
61: p_validation_start_date in date,
62: p_validation_end_date in date) is

Line 72: ben_pep_shd.g_old_rec.effective_start_date

68: t.creation_date
69: from ben_elig_per_f t
70: where t.elig_per_id = p_rec.elig_per_id
71: and t.effective_start_date =
72: ben_pep_shd.g_old_rec.effective_start_date
73: and t.effective_end_date = (p_validation_start_date - 1);
74: --
75: l_proc varchar2(72) := g_package||'dt_insert_dml';
76: l_created_by ben_elig_per_f.created_by%TYPE;

Line 130: ben_pep_shd.g_api_dml := true; -- Set the api dml status

126: l_last_updated_by := fnd_global.user_id;
127: l_last_update_login := fnd_global.login_id;
128: End If;
129: --
130: ben_pep_shd.g_api_dml := true; -- Set the api dml status
131: --
132: -- Insert the row into: ben_elig_per_f
133: --
134: hr_utility.set_location('Ins PEP:'||l_proc, 5);

Line 354: ben_pep_shd.g_api_dml := false; -- Unset the api dml status

350: l_last_updated_by,
351: l_last_update_login
352: );
353: --
354: ben_pep_shd.g_api_dml := false; -- Unset the api dml status
355: hr_utility.set_location(' Leaving:'||l_proc, 15);
356: --
357: Exception
358: When hr_api.check_integrity_violated Then

Line 360: ben_pep_shd.g_api_dml := false; -- Unset the api dml status

356: --
357: Exception
358: When hr_api.check_integrity_violated Then
359: -- A check constraint has been violated
360: ben_pep_shd.g_api_dml := false; -- Unset the api dml status
361: ben_pep_shd.constraint_error
362: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
363: When hr_api.unique_integrity_violated Then
364: -- Unique integrity has been violated

Line 361: ben_pep_shd.constraint_error

357: Exception
358: When hr_api.check_integrity_violated Then
359: -- A check constraint has been violated
360: ben_pep_shd.g_api_dml := false; -- Unset the api dml status
361: ben_pep_shd.constraint_error
362: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
363: When hr_api.unique_integrity_violated Then
364: -- Unique integrity has been violated
365: ben_pep_shd.g_api_dml := false; -- Unset the api dml status

Line 365: ben_pep_shd.g_api_dml := false; -- Unset the api dml status

361: ben_pep_shd.constraint_error
362: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
363: When hr_api.unique_integrity_violated Then
364: -- Unique integrity has been violated
365: ben_pep_shd.g_api_dml := false; -- Unset the api dml status
366: ben_pep_shd.constraint_error
367: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
368: When Others Then
369: ben_pep_shd.g_api_dml := false; -- Unset the api dml status

Line 366: ben_pep_shd.constraint_error

362: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
363: When hr_api.unique_integrity_violated Then
364: -- Unique integrity has been violated
365: ben_pep_shd.g_api_dml := false; -- Unset the api dml status
366: ben_pep_shd.constraint_error
367: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
368: When Others Then
369: ben_pep_shd.g_api_dml := false; -- Unset the api dml status
370: Raise;

Line 369: ben_pep_shd.g_api_dml := false; -- Unset the api dml status

365: ben_pep_shd.g_api_dml := false; -- Unset the api dml status
366: ben_pep_shd.constraint_error
367: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
368: When Others Then
369: ben_pep_shd.g_api_dml := false; -- Unset the api dml status
370: Raise;
371: End dt_insert_dml;
372: --
373: -- ----------------------------------------------------------------------------

Line 377: (p_rec in out nocopy ben_pep_shd.g_rec_type,

373: -- ----------------------------------------------------------------------------
374: -- |------------------------------< insert_dml >------------------------------|
375: -- ----------------------------------------------------------------------------
376: Procedure insert_dml
377: (p_rec in out nocopy ben_pep_shd.g_rec_type,
378: p_effective_date in date,
379: p_datetrack_mode in varchar2,
380: p_validation_start_date in date,
381: p_validation_end_date in date) is

Line 437: (p_rec in out nocopy ben_pep_shd.g_rec_type,

433: --
434: -- {End Of Comments}
435: -- ----------------------------------------------------------------------------
436: Procedure pre_insert
437: (p_rec in out nocopy ben_pep_shd.g_rec_type,
438: p_effective_date in date,
439: p_datetrack_mode in varchar2,
440: p_validation_start_date in date,
441: p_validation_end_date in date) is

Line 494: (p_rec in ben_pep_shd.g_rec_type,

490: --
491: -- {End Of Comments}
492: -- ----------------------------------------------------------------------------
493: Procedure post_insert
494: (p_rec in ben_pep_shd.g_rec_type,
495: p_effective_date in date,
496: p_datetrack_mode in varchar2,
497: p_validation_start_date in date,
498: p_validation_end_date in date) is

Line 661: p_rec in ben_pep_shd.g_rec_type,

657: -- ----------------------------------------------------------------------------
658: Procedure ins_lck
659: (p_effective_date in date,
660: p_datetrack_mode in varchar2,
661: p_rec in ben_pep_shd.g_rec_type,
662: p_validation_start_date out nocopy date,
663: p_validation_end_date out nocopy date) is
664: --
665: l_proc varchar2(72) := g_package||'ins_lck';

Line 717: (p_rec in out nocopy ben_pep_shd.g_rec_type

713: -- ----------------------------------------------------------------------------
714: -- |---------------------------------< ins >----------------------------------|
715: -- ----------------------------------------------------------------------------
716: Procedure ins
717: (p_rec in out nocopy ben_pep_shd.g_rec_type
718: ,p_effective_date in date
719: --
720: ,p_override_validation in boolean default false
721: ) is

Line 895: l_rec ben_pep_shd.g_rec_type;

891: p_override_validation in boolean default false
892: )
893: is
894: --
895: l_rec ben_pep_shd.g_rec_type;
896: l_proc varchar2(72) := g_package||'ins';
897: --
898: Begin
899: hr_utility.set_location('Entering:'||l_proc, 5);

Line 905: ben_pep_shd.convert_args

901: -- Call conversion function to turn arguments into the
902: -- p_rec structure.
903: --
904: l_rec :=
905: ben_pep_shd.convert_args
906: (
907: null,
908: null,
909: null,