DBA Data[Home] [Help]

APPS.BEN_MTR_INS dependencies on BEN_MTR_SHD

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

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

68: t.creation_date
69: from ben_mtchg_rt_f t
70: where t.mtchg_rt_id = p_rec.mtchg_rt_id
71: and t.effective_start_date =
72: ben_mtr_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_mtchg_rt_f.created_by%TYPE;

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

Line 250: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status

246: l_last_updated_by,
247: l_last_update_login
248: );
249: --
250: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status
251: hr_utility.set_location(' Leaving:'||l_proc, 15);
252: --
253: Exception
254: When hr_api.check_integrity_violated Then

Line 256: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status

252: --
253: Exception
254: When hr_api.check_integrity_violated Then
255: -- A check constraint has been violated
256: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status
257: ben_mtr_shd.constraint_error
258: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
259: When hr_api.unique_integrity_violated Then
260: -- Unique integrity has been violated

Line 257: ben_mtr_shd.constraint_error

253: Exception
254: When hr_api.check_integrity_violated Then
255: -- A check constraint has been violated
256: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status
257: ben_mtr_shd.constraint_error
258: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
259: When hr_api.unique_integrity_violated Then
260: -- Unique integrity has been violated
261: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status

Line 261: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status

257: ben_mtr_shd.constraint_error
258: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
259: When hr_api.unique_integrity_violated Then
260: -- Unique integrity has been violated
261: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status
262: ben_mtr_shd.constraint_error
263: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
264: When Others Then
265: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status

Line 262: ben_mtr_shd.constraint_error

258: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
259: When hr_api.unique_integrity_violated Then
260: -- Unique integrity has been violated
261: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status
262: ben_mtr_shd.constraint_error
263: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
264: When Others Then
265: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status
266: Raise;

Line 265: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status

261: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status
262: ben_mtr_shd.constraint_error
263: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
264: When Others Then
265: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status
266: Raise;
267: End dt_insert_dml;
268: --
269: -- ----------------------------------------------------------------------------

Line 273: (p_rec in out nocopy ben_mtr_shd.g_rec_type,

269: -- ----------------------------------------------------------------------------
270: -- |------------------------------< insert_dml >------------------------------|
271: -- ----------------------------------------------------------------------------
272: Procedure insert_dml
273: (p_rec in out nocopy ben_mtr_shd.g_rec_type,
274: p_effective_date in date,
275: p_datetrack_mode in varchar2,
276: p_validation_start_date in date,
277: p_validation_end_date in date) is

Line 333: (p_rec in out nocopy ben_mtr_shd.g_rec_type,

329: --
330: -- {End Of Comments}
331: -- ----------------------------------------------------------------------------
332: Procedure pre_insert
333: (p_rec in out nocopy ben_mtr_shd.g_rec_type,
334: p_effective_date in date,
335: p_datetrack_mode in varchar2,
336: p_validation_start_date in date,
337: p_validation_end_date in date) is

Line 391: (p_rec in ben_mtr_shd.g_rec_type,

387: --
388: -- {End Of Comments}
389: -- ----------------------------------------------------------------------------
390: Procedure post_insert
391: (p_rec in ben_mtr_shd.g_rec_type,
392: p_effective_date in date,
393: p_datetrack_mode in varchar2,
394: p_validation_start_date in date,
395: p_validation_end_date in date) is

Line 521: p_rec in ben_mtr_shd.g_rec_type,

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

Line 562: p_rec in out nocopy ben_mtr_shd.g_rec_type,

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

Line 679: l_rec ben_mtr_shd.g_rec_type;

675: p_object_version_number out nocopy number,
676: p_effective_date in date
677: ) is
678: --
679: l_rec ben_mtr_shd.g_rec_type;
680: l_proc varchar2(72) := g_package||'ins';
681: --
682: Begin
683: hr_utility.set_location('Entering:'||l_proc, 5);

Line 689: ben_mtr_shd.convert_args

685: -- Call conversion function to turn arguments into the
686: -- p_rec structure.
687: --
688: l_rec :=
689: ben_mtr_shd.convert_args
690: (
691: null,
692: null,
693: null,