DBA Data[Home] [Help]

APPS.BEN_PRM_INS dependencies on BEN_PRM_SHD

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

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

68: t.creation_date
69: from ben_prtt_prem_by_mo_f t
70: where t.prtt_prem_by_mo_id = p_rec.prtt_prem_by_mo_id
71: and t.effective_start_date =
72: ben_prm_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_prtt_prem_by_mo_f.created_by%TYPE;

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

Line 252: ben_prm_shd.g_api_dml := false; -- Unset the api dml status

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

Line 258: ben_prm_shd.g_api_dml := false; -- Unset the api dml status

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

Line 259: ben_prm_shd.constraint_error

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

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

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

Line 264: ben_prm_shd.constraint_error

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

Line 267: ben_prm_shd.g_api_dml := false; -- Unset the api dml status

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

Line 275: (p_rec in out nocopy ben_prm_shd.g_rec_type,

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

Line 335: (p_rec in out nocopy ben_prm_shd.g_rec_type,

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

Line 389: (p_rec in ben_prm_shd.g_rec_type,

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

Line 540: p_rec in ben_prm_shd.g_rec_type,

536: -- ----------------------------------------------------------------------------
537: Procedure ins_lck
538: (p_effective_date in date,
539: p_datetrack_mode in varchar2,
540: p_rec in ben_prm_shd.g_rec_type,
541: p_validation_start_date out nocopy date,
542: p_validation_end_date out nocopy date) is
543: --
544: l_proc varchar2(72) := g_package||'ins_lck';

Line 581: p_rec in out nocopy ben_prm_shd.g_rec_type,

577: -- |---------------------------------< ins >----------------------------------|
578: -- ----------------------------------------------------------------------------
579: Procedure ins
580: (
581: p_rec in out nocopy ben_prm_shd.g_rec_type,
582: p_effective_date in date
583: ) is
584: --
585: l_proc varchar2(72) := g_package||'ins';

Line 699: l_rec ben_prm_shd.g_rec_type;

695: p_program_update_date in date default null,
696: p_effective_date in date
697: ) is
698: --
699: l_rec ben_prm_shd.g_rec_type;
700: l_proc varchar2(72) := g_package||'ins';
701: --
702: Begin
703: hr_utility.set_location('Entering:'||l_proc, 5);

Line 709: ben_prm_shd.convert_args

705: -- Call conversion function to turn arguments into the
706: -- p_rec structure.
707: --
708: l_rec :=
709: ben_prm_shd.convert_args
710: (
711: null,
712: null,
713: null,