DBA Data[Home] [Help]

APPS.BEN_VMR_INS dependencies on BEN_VMR_SHD

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

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

68: t.creation_date
69: from ben_vrbl_mtchg_rt_f t
70: where t.vrbl_mtchg_rt_id = p_rec.vrbl_mtchg_rt_id
71: and t.effective_start_date =
72: ben_vmr_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_vrbl_mtchg_rt_f.created_by%TYPE;

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

Line 248: ben_vmr_shd.g_api_dml := false; -- Unset the api dml status

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

Line 254: ben_vmr_shd.g_api_dml := false; -- Unset the api dml status

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

Line 255: ben_vmr_shd.constraint_error

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

Line 259: ben_vmr_shd.g_api_dml := false; -- Unset the api dml status

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

Line 260: ben_vmr_shd.constraint_error

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

Line 263: ben_vmr_shd.g_api_dml := false; -- Unset the api dml status

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

Line 271: (p_rec in out nocopy ben_vmr_shd.g_rec_type,

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

Line 331: (p_rec in out nocopy ben_vmr_shd.g_rec_type,

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

Line 388: (p_rec in ben_vmr_shd.g_rec_type,

384: --
385: -- {End Of Comments}
386: -- ----------------------------------------------------------------------------
387: Procedure post_insert
388: (p_rec in ben_vmr_shd.g_rec_type,
389: p_effective_date in date,
390: p_datetrack_mode in varchar2,
391: p_validation_start_date in date,
392: p_validation_end_date in date) is

Line 517: p_rec in ben_vmr_shd.g_rec_type,

513: -- ----------------------------------------------------------------------------
514: Procedure ins_lck
515: (p_effective_date in date,
516: p_datetrack_mode in varchar2,
517: p_rec in ben_vmr_shd.g_rec_type,
518: p_validation_start_date out nocopy date,
519: p_validation_end_date out nocopy date) is
520: --
521: l_proc varchar2(72) := g_package||'ins_lck';

Line 558: p_rec in out nocopy ben_vmr_shd.g_rec_type,

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

Line 674: l_rec ben_vmr_shd.g_rec_type;

670: p_object_version_number out nocopy number,
671: p_effective_date in date
672: ) is
673: --
674: l_rec ben_vmr_shd.g_rec_type;
675: l_proc varchar2(72) := g_package||'ins';
676: --
677: Begin
678: hr_utility.set_location('Entering:'||l_proc, 5);

Line 684: ben_vmr_shd.convert_args

680: -- Call conversion function to turn arguments into the
681: -- p_rec structure.
682: --
683: l_rec :=
684: ben_vmr_shd.convert_args
685: (
686: null,
687: null,
688: null,