DBA Data[Home] [Help]

APPS.BEN_LER_INS dependencies on BEN_LER_SHD

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

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

68: t.creation_date
69: from ben_ler_f t
70: where t.ler_id = p_rec.ler_id
71: and t.effective_start_date =
72: ben_ler_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_ler_f.created_by%TYPE;

Line 129: ben_ler_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_ler_shd.g_api_dml := true; -- Set the api dml status
130: --
131: -- Insert the row into: ben_ler_f
132: --
133: insert into ben_ler_f

Line 302: ben_ler_shd.g_api_dml := false; -- Unset the api dml status

298: where t.ler_id = p_rec.ler_id
299: and t.effective_start_date = p_rec.effective_start_date
300: and t.language = l.language_code);
301: --
302: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
303: hr_utility.set_location(' Leaving:'||l_proc, 15);
304: --
305: Exception
306: When hr_api.check_integrity_violated Then

Line 308: ben_ler_shd.g_api_dml := false; -- Unset the api dml status

304: --
305: Exception
306: When hr_api.check_integrity_violated Then
307: -- A check constraint has been violated
308: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
309: ben_ler_shd.constraint_error
310: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
311: When hr_api.unique_integrity_violated Then
312: -- Unique integrity has been violated

Line 309: ben_ler_shd.constraint_error

305: Exception
306: When hr_api.check_integrity_violated Then
307: -- A check constraint has been violated
308: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
309: ben_ler_shd.constraint_error
310: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
311: When hr_api.unique_integrity_violated Then
312: -- Unique integrity has been violated
313: ben_ler_shd.g_api_dml := false; -- Unset the api dml status

Line 313: ben_ler_shd.g_api_dml := false; -- Unset the api dml status

309: ben_ler_shd.constraint_error
310: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
311: When hr_api.unique_integrity_violated Then
312: -- Unique integrity has been violated
313: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
314: ben_ler_shd.constraint_error
315: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
316: When Others Then
317: ben_ler_shd.g_api_dml := false; -- Unset the api dml status

Line 314: ben_ler_shd.constraint_error

310: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
311: When hr_api.unique_integrity_violated Then
312: -- Unique integrity has been violated
313: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
314: ben_ler_shd.constraint_error
315: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
316: When Others Then
317: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
318: Raise;

Line 317: ben_ler_shd.g_api_dml := false; -- Unset the api dml status

313: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
314: ben_ler_shd.constraint_error
315: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
316: When Others Then
317: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
318: Raise;
319: End dt_insert_dml;
320: --
321: -- ----------------------------------------------------------------------------

Line 325: (p_rec in out nocopy ben_ler_shd.g_rec_type,

321: -- ----------------------------------------------------------------------------
322: -- |------------------------------< insert_dml >------------------------------|
323: -- ----------------------------------------------------------------------------
324: Procedure insert_dml
325: (p_rec in out nocopy ben_ler_shd.g_rec_type,
326: p_effective_date in date,
327: p_datetrack_mode in varchar2,
328: p_validation_start_date in date,
329: p_validation_end_date in date) is

Line 385: (p_rec in out nocopy ben_ler_shd.g_rec_type,

381: --
382: -- {End Of Comments}
383: -- ----------------------------------------------------------------------------
384: Procedure pre_insert
385: (p_rec in out nocopy ben_ler_shd.g_rec_type,
386: p_effective_date in date,
387: p_datetrack_mode in varchar2,
388: p_validation_start_date in date,
389: p_validation_end_date in date) is

Line 442: (p_rec in ben_ler_shd.g_rec_type,

438: --
439: -- {End Of Comments}
440: -- ----------------------------------------------------------------------------
441: Procedure post_insert
442: (p_rec in ben_ler_shd.g_rec_type,
443: p_effective_date in date,
444: p_datetrack_mode in varchar2,
445: p_validation_start_date in date,
446: p_validation_end_date in date) is

Line 577: p_rec in ben_ler_shd.g_rec_type,

573: -- ----------------------------------------------------------------------------
574: Procedure ins_lck
575: (p_effective_date in date,
576: p_datetrack_mode in varchar2,
577: p_rec in ben_ler_shd.g_rec_type,
578: p_validation_start_date out nocopy date,
579: p_validation_end_date out nocopy date) is
580: --
581: l_proc varchar2(72) := g_package||'ins_lck';

Line 618: p_rec in out nocopy ben_ler_shd.g_rec_type,

614: -- |---------------------------------< ins >----------------------------------|
615: -- ----------------------------------------------------------------------------
616: Procedure ins
617: (
618: p_rec in out nocopy ben_ler_shd.g_rec_type,
619: p_effective_date in date
620: ) is
621: --
622: l_proc varchar2(72) := g_package||'ins';

Line 741: l_rec ben_ler_shd.g_rec_type;

737: p_object_version_number out nocopy number,
738: p_effective_date in date
739: ) is
740: --
741: l_rec ben_ler_shd.g_rec_type;
742: l_proc varchar2(72) := g_package||'ins';
743: --
744: Begin
745: hr_utility.set_location('Entering:'||l_proc, 5);

Line 751: ben_ler_shd.convert_args

747: -- Call conversion function to turn arguments into the
748: -- p_rec structure.
749: --
750: l_rec :=
751: ben_ler_shd.convert_args
752: (
753: null,
754: null,
755: null,