DBA Data[Home] [Help]

APPS.BEN_OPT_INS dependencies on BEN_OPT_SHD

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

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

68: t.creation_date
69: from ben_opt_f t
70: where t.opt_id = p_rec.opt_id
71: and t.effective_start_date =
72: ben_opt_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_opt_f.created_by%TYPE;

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

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

244: l_last_updated_by,
245: l_last_update_login
246: );
247: --
248: ben_opt_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_opt_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_opt_shd.g_api_dml := false; -- Unset the api dml status
255: ben_opt_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_opt_shd.constraint_error

251: Exception
252: When hr_api.check_integrity_violated Then
253: -- A check constraint has been violated
254: ben_opt_shd.g_api_dml := false; -- Unset the api dml status
255: ben_opt_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_opt_shd.g_api_dml := false; -- Unset the api dml status

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

255: ben_opt_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_opt_shd.g_api_dml := false; -- Unset the api dml status
260: ben_opt_shd.constraint_error
261: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
262: When Others Then
263: ben_opt_shd.g_api_dml := false; -- Unset the api dml status

Line 260: ben_opt_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_opt_shd.g_api_dml := false; -- Unset the api dml status
260: ben_opt_shd.constraint_error
261: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
262: When Others Then
263: ben_opt_shd.g_api_dml := false; -- Unset the api dml status
264: Raise;

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

259: ben_opt_shd.g_api_dml := false; -- Unset the api dml status
260: ben_opt_shd.constraint_error
261: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
262: When Others Then
263: ben_opt_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_opt_shd.g_rec_type,

267: -- ----------------------------------------------------------------------------
268: -- |------------------------------< insert_dml >------------------------------|
269: -- ----------------------------------------------------------------------------
270: Procedure insert_dml
271: (p_rec in out nocopy ben_opt_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_opt_shd.g_rec_type,

327: --
328: -- {End Of Comments}
329: -- ----------------------------------------------------------------------------
330: Procedure pre_insert
331: (p_rec in out nocopy ben_opt_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_opt_shd.g_rec_type,

384: --
385: -- {End Of Comments}
386: -- ----------------------------------------------------------------------------
387: Procedure post_insert
388: (p_rec in ben_opt_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 528: p_rec in ben_opt_shd.g_rec_type,

524: -- ----------------------------------------------------------------------------
525: Procedure ins_lck
526: (p_effective_date in date,
527: p_datetrack_mode in varchar2,
528: p_rec in ben_opt_shd.g_rec_type,
529: p_validation_start_date out nocopy date,
530: p_validation_end_date out nocopy date) is
531: --
532: l_proc varchar2(72) := g_package||'ins_lck';

Line 569: p_rec in out nocopy ben_opt_shd.g_rec_type,

565: -- |---------------------------------< ins >----------------------------------|
566: -- ----------------------------------------------------------------------------
567: Procedure ins
568: (
569: p_rec in out nocopy ben_opt_shd.g_rec_type,
570: p_effective_date in date
571: ) is
572: --
573: l_proc varchar2(72) := g_package||'ins';

Line 685: l_rec ben_opt_shd.g_rec_type;

681: p_mapping_table_pk_id in number default null,
682: p_effective_date in date
683: ) is
684: --
685: l_rec ben_opt_shd.g_rec_type;
686: l_proc varchar2(72) := g_package||'ins';
687: --
688: Begin
689: hr_utility.set_location('Entering:'||l_proc, 5);

Line 695: ben_opt_shd.convert_args

691: -- Call conversion function to turn arguments into the
692: -- p_rec structure.
693: --
694: l_rec :=
695: ben_opt_shd.convert_args
696: (
697: null,
698: null,
699: null,