DBA Data[Home] [Help]

APPS.PER_OBJ_INS dependencies on PER_OBJ_SHD

Line 69: Procedure insert_dml(p_rec in out nocopy per_obj_shd.g_rec_type) is

65: -- Internal Table Handler Use Only.
66: --
67: -- {End Of Comments}
68: -- ----------------------------------------------------------------------------
69: Procedure insert_dml(p_rec in out nocopy per_obj_shd.g_rec_type) is
70: --
71: l_proc varchar2(72) := g_package||'insert_dml';
72: --
73: Begin

Line 225: per_obj_shd.constraint_error

221: hr_utility.set_location(' Leaving:'||l_proc, 10);
222: Exception
223: When hr_api.check_integrity_violated Then
224: -- A check constraint has been violated
225: per_obj_shd.constraint_error
226: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
227: When hr_api.parent_integrity_violated Then
228: -- Parent integrity has been violated
229: per_obj_shd.constraint_error

Line 229: per_obj_shd.constraint_error

225: per_obj_shd.constraint_error
226: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
227: When hr_api.parent_integrity_violated Then
228: -- Parent integrity has been violated
229: per_obj_shd.constraint_error
230: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
231: When hr_api.unique_integrity_violated Then
232: -- Unique integrity has been violated
233: per_obj_shd.constraint_error

Line 233: per_obj_shd.constraint_error

229: per_obj_shd.constraint_error
230: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
231: When hr_api.unique_integrity_violated Then
232: -- Unique integrity has been violated
233: per_obj_shd.constraint_error
234: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
235: When Others Then
236: Raise;
237: End insert_dml;

Line 276: Procedure pre_insert(p_rec in out nocopy per_obj_shd.g_rec_type) is

272: -- Internal Table Handler Use Only.
273: --
274: -- {End Of Comments}
275: -- ----------------------------------------------------------------------------
276: Procedure pre_insert(p_rec in out nocopy per_obj_shd.g_rec_type) is
277: --
278: l_proc varchar2(72) := g_package||'pre_insert';
279: l_exists varchar2(1);
280: --

Line 363: (p_rec in per_obj_shd.g_rec_type,

359: --
360: -- {End Of Comments}
361: -- ----------------------------------------------------------------------------
362: Procedure post_insert
363: (p_rec in per_obj_shd.g_rec_type,
364: p_effective_date in date,
365: p_weighting_over_100_warning out nocopy boolean,
366: p_weighting_appraisal_warning out nocopy boolean
367: ) is

Line 468: p_rec in out nocopy per_obj_shd.g_rec_type,

464: -- |---------------------------------< ins >----------------------------------|
465: -- ----------------------------------------------------------------------------
466: Procedure ins
467: (
468: p_rec in out nocopy per_obj_shd.g_rec_type,
469: p_effective_date in date,
470: p_validate in boolean default false,
471: p_weighting_over_100_warning out nocopy boolean,
472: p_weighting_appraisal_warning out nocopy boolean

Line 630: l_rec per_obj_shd.g_rec_type;

626: p_effective_date in date,
627: p_validate in boolean default false
628: ) is
629: --
630: l_rec per_obj_shd.g_rec_type;
631: l_proc varchar2(72) := g_package||'ins';
632: l_weighting_over_100_warning boolean;
633: l_weighting_appraisal_warning boolean;
634: --

Line 642: per_obj_shd.convert_args

638: -- Call conversion function to turn arguments into the
639: -- p_rec structure.
640: --
641: l_rec :=
642: per_obj_shd.convert_args
643: (
644: null,
645: p_name,
646: p_target_date,