DBA Data[Home] [Help]

APPS.BEN_RZR_INS dependencies on BEN_RZR_SHD

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

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

68: t.creation_date
69: from ben_pstl_zip_rng_f t
70: where t.pstl_zip_rng_id = p_rec.pstl_zip_rng_id
71: and t.effective_start_date =
72: ben_rzr_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_pstl_zip_rng_f.created_by%TYPE;

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

Line 224: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status

220: l_last_updated_by,
221: l_last_update_login
222: );
223: --
224: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status
225: hr_utility.set_location(' Leaving:'||l_proc, 15);
226: --
227: Exception
228: When hr_api.check_integrity_violated Then

Line 230: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status

226: --
227: Exception
228: When hr_api.check_integrity_violated Then
229: -- A check constraint has been violated
230: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status
231: ben_rzr_shd.constraint_error
232: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
233: When hr_api.unique_integrity_violated Then
234: -- Unique integrity has been violated

Line 231: ben_rzr_shd.constraint_error

227: Exception
228: When hr_api.check_integrity_violated Then
229: -- A check constraint has been violated
230: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status
231: ben_rzr_shd.constraint_error
232: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
233: When hr_api.unique_integrity_violated Then
234: -- Unique integrity has been violated
235: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status

Line 235: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status

231: ben_rzr_shd.constraint_error
232: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
233: When hr_api.unique_integrity_violated Then
234: -- Unique integrity has been violated
235: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status
236: ben_rzr_shd.constraint_error
237: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
238: When Others Then
239: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status

Line 236: ben_rzr_shd.constraint_error

232: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
233: When hr_api.unique_integrity_violated Then
234: -- Unique integrity has been violated
235: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status
236: ben_rzr_shd.constraint_error
237: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
238: When Others Then
239: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status
240: Raise;

Line 239: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status

235: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status
236: ben_rzr_shd.constraint_error
237: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
238: When Others Then
239: ben_rzr_shd.g_api_dml := false; -- Unset the api dml status
240: Raise;
241: End dt_insert_dml;
242: --
243: -- ----------------------------------------------------------------------------

Line 247: (p_rec in out nocopy ben_rzr_shd.g_rec_type,

243: -- ----------------------------------------------------------------------------
244: -- |------------------------------< insert_dml >------------------------------|
245: -- ----------------------------------------------------------------------------
246: Procedure insert_dml
247: (p_rec in out nocopy ben_rzr_shd.g_rec_type,
248: p_effective_date in date,
249: p_datetrack_mode in varchar2,
250: p_validation_start_date in date,
251: p_validation_end_date in date) is

Line 307: (p_rec in out nocopy ben_rzr_shd.g_rec_type,

303: --
304: -- {End Of Comments}
305: -- ----------------------------------------------------------------------------
306: Procedure pre_insert
307: (p_rec in out nocopy ben_rzr_shd.g_rec_type,
308: p_effective_date in date,
309: p_datetrack_mode in varchar2,
310: p_validation_start_date in date,
311: p_validation_end_date in date) is

Line 362: (p_rec in ben_rzr_shd.g_rec_type,

358: --
359: -- {End Of Comments}
360: -- ----------------------------------------------------------------------------
361: Procedure post_insert
362: (p_rec in ben_rzr_shd.g_rec_type,
363: p_effective_date in date,
364: p_datetrack_mode in varchar2,
365: p_validation_start_date in date,
366: p_validation_end_date in date) is

Line 479: p_rec in ben_rzr_shd.g_rec_type,

475: -- ----------------------------------------------------------------------------
476: Procedure ins_lck
477: (p_effective_date in date,
478: p_datetrack_mode in varchar2,
479: p_rec in ben_rzr_shd.g_rec_type,
480: p_validation_start_date out nocopy date,
481: p_validation_end_date out nocopy date) is
482: --
483: l_proc varchar2(72) := g_package||'ins_lck';

Line 517: p_rec in out nocopy ben_rzr_shd.g_rec_type,

513: -- |---------------------------------< ins >----------------------------------|
514: -- ----------------------------------------------------------------------------
515: Procedure ins
516: (
517: p_rec in out nocopy ben_rzr_shd.g_rec_type,
518: p_effective_date in date
519: ) is
520: --
521: l_proc varchar2(72) := g_package||'ins';

Line 621: l_rec ben_rzr_shd.g_rec_type;

617: p_object_version_number out nocopy number,
618: p_effective_date in date
619: ) is
620: --
621: l_rec ben_rzr_shd.g_rec_type;
622: l_proc varchar2(72) := g_package||'ins';
623: --
624: Begin
625: hr_utility.set_location('Entering:'||l_proc, 5);

Line 631: ben_rzr_shd.convert_args

627: -- Call conversion function to turn arguments into the
628: -- p_rec structure.
629: --
630: l_rec :=
631: ben_rzr_shd.convert_args
632: (
633: null,
634: null,
635: null,