DBA Data[Home] [Help]

APPS.BEN_REG_INS dependencies on BEN_REG_SHD

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

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

68: t.creation_date
69: from ben_regn_f t
70: where t.regn_id = p_rec.regn_id
71: and t.effective_start_date =
72: ben_reg_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_regn_f.created_by%TYPE;

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

Line 264: ben_reg_shd.g_api_dml := false; -- Unset the api dml status

260: where t.regn_id = p_rec.regn_id
261: and t.effective_start_date = p_rec.effective_start_date
262: and t.language = l.language_code);
263: --
264: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
265: hr_utility.set_location(' Leaving:'||l_proc, 15);
266: --
267: Exception
268: When hr_api.check_integrity_violated Then

Line 270: ben_reg_shd.g_api_dml := false; -- Unset the api dml status

266: --
267: Exception
268: When hr_api.check_integrity_violated Then
269: -- A check constraint has been violated
270: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
271: ben_reg_shd.constraint_error
272: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
273: When hr_api.unique_integrity_violated Then
274: -- Unique integrity has been violated

Line 271: ben_reg_shd.constraint_error

267: Exception
268: When hr_api.check_integrity_violated Then
269: -- A check constraint has been violated
270: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
271: ben_reg_shd.constraint_error
272: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
273: When hr_api.unique_integrity_violated Then
274: -- Unique integrity has been violated
275: ben_reg_shd.g_api_dml := false; -- Unset the api dml status

Line 275: ben_reg_shd.g_api_dml := false; -- Unset the api dml status

271: ben_reg_shd.constraint_error
272: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
273: When hr_api.unique_integrity_violated Then
274: -- Unique integrity has been violated
275: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
276: ben_reg_shd.constraint_error
277: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
278: When Others Then
279: ben_reg_shd.g_api_dml := false; -- Unset the api dml status

Line 276: ben_reg_shd.constraint_error

272: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
273: When hr_api.unique_integrity_violated Then
274: -- Unique integrity has been violated
275: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
276: ben_reg_shd.constraint_error
277: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
278: When Others Then
279: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
280: Raise;

Line 279: ben_reg_shd.g_api_dml := false; -- Unset the api dml status

275: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
276: ben_reg_shd.constraint_error
277: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
278: When Others Then
279: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
280: Raise;
281: End dt_insert_dml;
282: --
283: -- ----------------------------------------------------------------------------

Line 287: (p_rec in out nocopy ben_reg_shd.g_rec_type,

283: -- ----------------------------------------------------------------------------
284: -- |------------------------------< insert_dml >------------------------------|
285: -- ----------------------------------------------------------------------------
286: Procedure insert_dml
287: (p_rec in out nocopy ben_reg_shd.g_rec_type,
288: p_effective_date in date,
289: p_datetrack_mode in varchar2,
290: p_validation_start_date in date,
291: p_validation_end_date in date) is

Line 347: (p_rec in out nocopy ben_reg_shd.g_rec_type,

343: --
344: -- {End Of Comments}
345: -- ----------------------------------------------------------------------------
346: Procedure pre_insert
347: (p_rec in out nocopy ben_reg_shd.g_rec_type,
348: p_effective_date in date,
349: p_datetrack_mode in varchar2,
350: p_validation_start_date in date,
351: p_validation_end_date in date) is

Line 405: (p_rec in ben_reg_shd.g_rec_type,

401: --
402: -- {End Of Comments}
403: -- ----------------------------------------------------------------------------
404: Procedure post_insert
405: (p_rec in ben_reg_shd.g_rec_type,
406: p_effective_date in date,
407: p_datetrack_mode in varchar2,
408: p_validation_start_date in date,
409: p_validation_end_date in date) is

Line 523: p_rec in ben_reg_shd.g_rec_type,

519: -- ----------------------------------------------------------------------------
520: Procedure ins_lck
521: (p_effective_date in date,
522: p_datetrack_mode in varchar2,
523: p_rec in ben_reg_shd.g_rec_type,
524: p_validation_start_date out nocopy date,
525: p_validation_end_date out nocopy date) is
526: --
527: l_proc varchar2(72) := g_package||'ins_lck';

Line 561: p_rec in out nocopy ben_reg_shd.g_rec_type,

557: -- |---------------------------------< ins >----------------------------------|
558: -- ----------------------------------------------------------------------------
559: Procedure ins
560: (
561: p_rec in out nocopy ben_reg_shd.g_rec_type,
562: p_effective_date in date
563: ) is
564: --
565: l_proc varchar2(72) := g_package||'ins';

Line 666: l_rec ben_reg_shd.g_rec_type;

662: p_object_version_number out nocopy number,
663: p_effective_date in date
664: ) is
665: --
666: l_rec ben_reg_shd.g_rec_type;
667: l_proc varchar2(72) := g_package||'ins';
668: --
669: Begin
670: hr_utility.set_location('Entering:'||l_proc, 5);

Line 676: ben_reg_shd.convert_args

672: -- Call conversion function to turn arguments into the
673: -- p_rec structure.
674: --
675: l_rec :=
676: ben_reg_shd.convert_args
677: (
678: null,
679: null,
680: null,