DBA Data[Home] [Help]

APPS.PER_PRT_INS dependencies on PER_PRT_SHD

Line 73: Procedure insert_dml(p_rec in out nocopy per_prt_shd.g_rec_type) is

69: -- Internal Table Handler Use Only.
70:
71: -- {End Of Comments}
72: -- ---------------------------------------------------------------------------+
73: Procedure insert_dml(p_rec in out nocopy per_prt_shd.g_rec_type) is
74:
75: l_proc varchar2(72) := g_package||'insert_dml';
76:
77: Begin

Line 150: per_prt_shd.constraint_error

146: hr_utility.set_location(' Leaving:'||l_proc, 10);
147: Exception
148: When hr_api.check_integrity_violated Then
149: -- A check constraint has been violated
150: per_prt_shd.constraint_error
151: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
152: When hr_api.parent_integrity_violated Then
153: -- Parent integrity has been violated
154: per_prt_shd.constraint_error

Line 154: per_prt_shd.constraint_error

150: per_prt_shd.constraint_error
151: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
152: When hr_api.parent_integrity_violated Then
153: -- Parent integrity has been violated
154: per_prt_shd.constraint_error
155: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
156: When hr_api.unique_integrity_violated Then
157: -- Unique integrity has been violated
158: per_prt_shd.constraint_error

Line 158: per_prt_shd.constraint_error

154: per_prt_shd.constraint_error
155: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
156: When hr_api.unique_integrity_violated Then
157: -- Unique integrity has been violated
158: per_prt_shd.constraint_error
159: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
160: When Others Then
161: Raise;
162: End insert_dml;

Line 201: Procedure pre_insert(p_rec in out nocopy per_prt_shd.g_rec_type) is

197: -- Internal Table Handler Use Only.
198:
199: -- {End Of Comments}
200: -- ---------------------------------------------------------------------------+
201: Procedure pre_insert(p_rec in out nocopy per_prt_shd.g_rec_type) is
202:
203: l_proc varchar2(72) := g_package||'pre_insert';
204: l_exists varchar2(1);
205: --

Line 285: Procedure post_insert(p_rec in per_prt_shd.g_rec_type) is

281: -- Internal Table Handler Use Only.
282:
283: -- {End Of Comments}
284: -- ---------------------------------------------------------------------------+
285: Procedure post_insert(p_rec in per_prt_shd.g_rec_type) is
286:
287: l_proc varchar2(72) := g_package||'post_insert';
288:
289: Begin

Line 342: p_rec in out nocopy per_prt_shd.g_rec_type,

338: -- |---------------------------------< ins >----------------------------------|
339: -- ---------------------------------------------------------------------------+
340: Procedure ins
341: (
342: p_rec in out nocopy per_prt_shd.g_rec_type,
343: p_validate in boolean default false,
344: p_effective_date in date
345: ) is
346:

Line 446: l_rec per_prt_shd.g_rec_type;

442: p_effective_date in date,
443: p_appr_line_score in number default null
444: ) is
445:
446: l_rec per_prt_shd.g_rec_type;
447: l_proc varchar2(72) := g_package||'ins';
448:
449: Begin
450: hr_utility.set_location('Entering:'||l_proc, 5);

Line 456: per_prt_shd.convert_args

452: -- Call conversion function to turn arguments into the
453: -- p_rec structure.
454:
455: l_rec :=
456: per_prt_shd.convert_args
457: (
458: null,
459: p_person_id,
460: p_objective_id,