DBA Data[Home] [Help]

APPS.PQH_RLM_INS dependencies on PQH_RLM_SHD

Line 47: Procedure insert_dml(p_rec in out nocopy pqh_rlm_shd.g_rec_type) is

43: -- Internal Row Handler Use Only.
44: --
45: -- {End Of Comments}
46: -- ----------------------------------------------------------------------------
47: Procedure insert_dml(p_rec in out nocopy pqh_rlm_shd.g_rec_type) is
48: --
49: l_proc varchar2(72) := g_package||'insert_dml';
50: --
51: Begin

Line 84: pqh_rlm_shd.constraint_error

80: hr_utility.set_location(' Leaving:'||l_proc, 10);
81: Exception
82: When hr_api.check_integrity_violated Then
83: -- A check constraint has been violated
84: pqh_rlm_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When hr_api.parent_integrity_violated Then
87: -- Parent integrity has been violated
88: pqh_rlm_shd.constraint_error

Line 88: pqh_rlm_shd.constraint_error

84: pqh_rlm_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When hr_api.parent_integrity_violated Then
87: -- Parent integrity has been violated
88: pqh_rlm_shd.constraint_error
89: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
90: When hr_api.unique_integrity_violated Then
91: -- Unique integrity has been violated
92: pqh_rlm_shd.constraint_error

Line 92: pqh_rlm_shd.constraint_error

88: pqh_rlm_shd.constraint_error
89: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
90: When hr_api.unique_integrity_violated Then
91: -- Unique integrity has been violated
92: pqh_rlm_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When Others Then
95: Raise;
96: End insert_dml;

Line 135: Procedure pre_insert(p_rec in out nocopy pqh_rlm_shd.g_rec_type) is

131: -- Internal Row Handler Use Only.
132: --
133: -- {End Of Comments}
134: -- ----------------------------------------------------------------------------
135: Procedure pre_insert(p_rec in out nocopy pqh_rlm_shd.g_rec_type) is
136: --
137: l_proc varchar2(72) := g_package||'pre_insert';
138: --
139: Cursor C_Sel1 is select pqh_routing_list_members_s.nextval from sys.dual;

Line 187: p_effective_date in date,p_rec in pqh_rlm_shd.g_rec_type) is

183: --
184: -- {End Of Comments}
185: -- ----------------------------------------------------------------------------
186: Procedure post_insert(
187: p_effective_date in date,p_rec in pqh_rlm_shd.g_rec_type) is
188: --
189: l_proc varchar2(72) := g_package||'post_insert';
190: --
191: Begin

Line 234: p_rec in out nocopy pqh_rlm_shd.g_rec_type

230: -- ----------------------------------------------------------------------------
231: Procedure ins
232: (
233: p_effective_date in date,
234: p_rec in out nocopy pqh_rlm_shd.g_rec_type
235: ) is
236: --
237: l_proc varchar2(72) := g_package||'ins';
238: --

Line 277: l_rec pqh_rlm_shd.g_rec_type;

273: p_object_version_number out nocopy number,
274: p_user_id in number default null
275: ) is
276: --
277: l_rec pqh_rlm_shd.g_rec_type;
278: l_proc varchar2(72) := g_package||'ins';
279: --
280: Begin
281: hr_utility.set_location('Entering:'||l_proc, 5);

Line 287: pqh_rlm_shd.convert_args

283: -- Call conversion function to turn arguments into the
284: -- p_rec structure.
285: --
286: l_rec :=
287: pqh_rlm_shd.convert_args
288: (
289: p_role_id,
290: p_routing_list_id,
291: null,