DBA Data[Home] [Help]

APPS.BEN_LEN_INS dependencies on BEN_LEN_SHD

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

54: --
55: -- {End Of Comments}
56: -- ----------------------------------------------------------------------------
57: Procedure dt_insert_dml
58: (p_rec in out nocopy ben_len_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_len_shd.g_old_rec.effective_start_date

68: t.creation_date
69: from ben_lee_rsn_f t
70: where t.lee_rsn_id = p_rec.lee_rsn_id
71: and t.effective_start_date =
72: ben_len_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_lee_rsn_f.created_by%TYPE;

Line 129: ben_len_shd.g_api_dml := true; -- Set the api dml status

125: l_last_updated_by := fnd_global.user_id;
126: l_last_update_login := fnd_global.login_id;
127: End If;
128: --
129: ben_len_shd.g_api_dml := true; -- Set the api dml status
130: --
131: -- Insert the row into: ben_lee_rsn_f
132: --
133: insert into ben_lee_rsn_f

Line 272: ben_len_shd.g_api_dml := false; -- Unset the api dml status

268: p_rec.ENRT_PERD_END_DAYS ,
269: p_rec.defer_deenrol_flag
270: );
271: --
272: ben_len_shd.g_api_dml := false; -- Unset the api dml status
273: hr_utility.set_location(' Leaving:'||l_proc, 15);
274: --
275: Exception
276: When hr_api.check_integrity_violated Then

Line 278: ben_len_shd.g_api_dml := false; -- Unset the api dml status

274: --
275: Exception
276: When hr_api.check_integrity_violated Then
277: -- A check constraint has been violated
278: ben_len_shd.g_api_dml := false; -- Unset the api dml status
279: ben_len_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated

Line 279: ben_len_shd.constraint_error

275: Exception
276: When hr_api.check_integrity_violated Then
277: -- A check constraint has been violated
278: ben_len_shd.g_api_dml := false; -- Unset the api dml status
279: ben_len_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated
283: ben_len_shd.g_api_dml := false; -- Unset the api dml status

Line 283: ben_len_shd.g_api_dml := false; -- Unset the api dml status

279: ben_len_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated
283: ben_len_shd.g_api_dml := false; -- Unset the api dml status
284: ben_len_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When Others Then
287: ben_len_shd.g_api_dml := false; -- Unset the api dml status

Line 284: ben_len_shd.constraint_error

280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated
283: ben_len_shd.g_api_dml := false; -- Unset the api dml status
284: ben_len_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When Others Then
287: ben_len_shd.g_api_dml := false; -- Unset the api dml status
288: Raise;

Line 287: ben_len_shd.g_api_dml := false; -- Unset the api dml status

283: ben_len_shd.g_api_dml := false; -- Unset the api dml status
284: ben_len_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When Others Then
287: ben_len_shd.g_api_dml := false; -- Unset the api dml status
288: Raise;
289: End dt_insert_dml;
290: --
291: -- ----------------------------------------------------------------------------

Line 295: (p_rec in out nocopy ben_len_shd.g_rec_type,

291: -- ----------------------------------------------------------------------------
292: -- |------------------------------< insert_dml >------------------------------|
293: -- ----------------------------------------------------------------------------
294: Procedure insert_dml
295: (p_rec in out nocopy ben_len_shd.g_rec_type,
296: p_effective_date in date,
297: p_datetrack_mode in varchar2,
298: p_validation_start_date in date,
299: p_validation_end_date in date) is

Line 355: (p_rec in out nocopy ben_len_shd.g_rec_type,

351: --
352: -- {End Of Comments}
353: -- ----------------------------------------------------------------------------
354: Procedure pre_insert
355: (p_rec in out nocopy ben_len_shd.g_rec_type,
356: p_effective_date in date,
357: p_datetrack_mode in varchar2,
358: p_validation_start_date in date,
359: p_validation_end_date in date) is

Line 409: (p_rec in ben_len_shd.g_rec_type,

405: --
406: -- {End Of Comments}
407: -- ----------------------------------------------------------------------------
408: Procedure post_insert
409: (p_rec in ben_len_shd.g_rec_type,
410: p_effective_date in date,
411: p_datetrack_mode in varchar2,
412: p_validation_start_date in date,
413: p_validation_end_date in date) is

Line 550: p_rec in ben_len_shd.g_rec_type,

546: -- ----------------------------------------------------------------------------
547: Procedure ins_lck
548: (p_effective_date in date,
549: p_datetrack_mode in varchar2,
550: p_rec in ben_len_shd.g_rec_type,
551: p_validation_start_date out nocopy date,
552: p_validation_end_date out nocopy date) is
553: --
554: l_proc varchar2(72) := g_package||'ins_lck';

Line 591: p_rec in out nocopy ben_len_shd.g_rec_type,

587: -- |---------------------------------< ins >----------------------------------|
588: -- ----------------------------------------------------------------------------
589: Procedure ins
590: (
591: p_rec in out nocopy ben_len_shd.g_rec_type,
592: p_effective_date in date
593: ) is
594: --
595: l_proc varchar2(72) := g_package||'ins';

Line 719: l_rec ben_len_shd.g_rec_type;

715: p_ENRT_PERD_END_DAYS in number default null ,
716: p_defer_deenrol_flag in varchar2 default 'N'
717: ) is
718: --
719: l_rec ben_len_shd.g_rec_type;
720: l_proc varchar2(72) := g_package||'ins';
721: --
722: Begin
723: hr_utility.set_location('Entering:'||l_proc, 5);

Line 729: ben_len_shd.convert_args

725: -- Call conversion function to turn arguments into the
726: -- p_rec structure.
727: --
728: l_rec :=
729: ben_len_shd.convert_args
730: (
731: null,
732: null,
733: null,