DBA Data[Home] [Help]

APPS.HR_HNM_UPD dependencies on HR_API

Line 84: When hr_api.check_integrity_violated Then

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

Line 88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

84: When hr_api.check_integrity_violated Then
85: -- A check constraint has been violated
86: --
87: hr_hnm_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: --
92: hr_hnm_shd.constraint_error

Line 89: When hr_api.parent_integrity_violated Then

85: -- A check constraint has been violated
86: --
87: hr_hnm_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: --
92: hr_hnm_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: --
92: hr_hnm_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: --
97: hr_hnm_shd.constraint_error

Line 94: When hr_api.unique_integrity_violated Then

90: -- Parent integrity has been violated
91: --
92: hr_hnm_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: --
97: hr_hnm_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: --
97: hr_hnm_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When Others Then
100: --
101: Raise;
102: End update_dml;

Line 213: when hr_api.cannot_find_prog_unit then

209: );
210: --
211: exception
212: --
213: when hr_api.cannot_find_prog_unit then
214: --
215: hr_api.cannot_find_prog_unit_error
216: (p_module_name => 'HR_KI_HIERARCHY_NODE_MAPS'
217: ,p_hook_type => 'AU');

Line 215: hr_api.cannot_find_prog_unit_error

211: exception
212: --
213: when hr_api.cannot_find_prog_unit then
214: --
215: hr_api.cannot_find_prog_unit_error
216: (p_module_name => 'HR_KI_HIERARCHY_NODE_MAPS'
217: ,p_hook_type => 'AU');
218: --
219: end;

Line 278: If (p_rec.hierarchy_id = hr_api.g_number) then

274: -- p_rec plsql record structure
275: -- to see if a system default is being used. If a system default
276: -- is being used then we must set to the 'current' argument value.
277: --
278: If (p_rec.hierarchy_id = hr_api.g_number) then
279: p_rec.hierarchy_id :=
280: hr_hnm_shd.g_old_rec.hierarchy_id;
281: End If;
282: If (p_rec.topic_id = hr_api.g_number) then

Line 282: If (p_rec.topic_id = hr_api.g_number) then

278: If (p_rec.hierarchy_id = hr_api.g_number) then
279: p_rec.hierarchy_id :=
280: hr_hnm_shd.g_old_rec.hierarchy_id;
281: End If;
282: If (p_rec.topic_id = hr_api.g_number) then
283: p_rec.topic_id :=
284: hr_hnm_shd.g_old_rec.topic_id;
285: End If;
286: If (p_rec.user_interface_id = hr_api.g_number) then

Line 286: If (p_rec.user_interface_id = hr_api.g_number) then

282: If (p_rec.topic_id = hr_api.g_number) then
283: p_rec.topic_id :=
284: hr_hnm_shd.g_old_rec.topic_id;
285: End If;
286: If (p_rec.user_interface_id = hr_api.g_number) then
287: p_rec.user_interface_id :=
288: hr_hnm_shd.g_old_rec.user_interface_id;
289: End If;
290: --

Line 350: ,p_hierarchy_id in number default hr_api.g_number

346: -- ----------------------------------------------------------------------------
347: Procedure upd
348: (p_hierarchy_node_map_id in number
349: ,p_object_version_number in out nocopy number
350: ,p_hierarchy_id in number default hr_api.g_number
351: ,p_topic_id in number default hr_api.g_number
352: ,p_user_interface_id in number default hr_api.g_number
353: ) is
354: --

Line 351: ,p_topic_id in number default hr_api.g_number

347: Procedure upd
348: (p_hierarchy_node_map_id in number
349: ,p_object_version_number in out nocopy number
350: ,p_hierarchy_id in number default hr_api.g_number
351: ,p_topic_id in number default hr_api.g_number
352: ,p_user_interface_id in number default hr_api.g_number
353: ) is
354: --
355: l_rec hr_hnm_shd.g_rec_type;

Line 352: ,p_user_interface_id in number default hr_api.g_number

348: (p_hierarchy_node_map_id in number
349: ,p_object_version_number in out nocopy number
350: ,p_hierarchy_id in number default hr_api.g_number
351: ,p_topic_id in number default hr_api.g_number
352: ,p_user_interface_id in number default hr_api.g_number
353: ) is
354: --
355: l_rec hr_hnm_shd.g_rec_type;
356: l_proc varchar2(72) := g_package||'upd';