DBA Data[Home] [Help]

APPS.HR_TIP_UPD dependencies on HR_API

Line 83: When hr_api.check_integrity_violated Then

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

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

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

Line 88: When hr_api.parent_integrity_violated Then

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

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

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

Line 93: When hr_api.unique_integrity_violated Then

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

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

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

Line 208: when hr_api.cannot_find_prog_unit then

204: );
205: --
206: exception
207: --
208: when hr_api.cannot_find_prog_unit then
209: --
210: hr_api.cannot_find_prog_unit_error
211: (p_module_name => 'HR_TEMPLATE_ITEM_TAB_PAGES'
212: ,p_hook_type => 'AU');

Line 210: hr_api.cannot_find_prog_unit_error

206: exception
207: --
208: when hr_api.cannot_find_prog_unit then
209: --
210: hr_api.cannot_find_prog_unit_error
211: (p_module_name => 'HR_TEMPLATE_ITEM_TAB_PAGES'
212: ,p_hook_type => 'AU');
213: --
214: end;

Line 273: If (p_rec.template_item_id = hr_api.g_number) then

269: -- p_rec plsql record structure
270: -- to see if a system default is being used. If a system default
271: -- is being used then we must set to the 'current' argument value.
272: --
273: If (p_rec.template_item_id = hr_api.g_number) then
274: p_rec.template_item_id :=
275: hr_tip_shd.g_old_rec.template_item_id;
276: End If;
277: If (p_rec.template_tab_page_id = hr_api.g_number) then

Line 277: If (p_rec.template_tab_page_id = hr_api.g_number) then

273: If (p_rec.template_item_id = hr_api.g_number) then
274: p_rec.template_item_id :=
275: hr_tip_shd.g_old_rec.template_item_id;
276: End If;
277: If (p_rec.template_tab_page_id = hr_api.g_number) then
278: p_rec.template_tab_page_id :=
279: hr_tip_shd.g_old_rec.template_tab_page_id;
280: End If;
281: --

Line 335: ,p_template_item_id in number default hr_api.g_number

331: -- ----------------------------------------------------------------------------
332: Procedure upd
333: (p_template_item_tab_page_id in number
334: ,p_object_version_number in out nocopy number
335: ,p_template_item_id in number default hr_api.g_number
336: ,p_template_tab_page_id in number default hr_api.g_number
337: ) is
338: --
339: l_rec hr_tip_shd.g_rec_type;

Line 336: ,p_template_tab_page_id in number default hr_api.g_number

332: Procedure upd
333: (p_template_item_tab_page_id in number
334: ,p_object_version_number in out nocopy number
335: ,p_template_item_id in number default hr_api.g_number
336: ,p_template_tab_page_id in number default hr_api.g_number
337: ) is
338: --
339: l_rec hr_tip_shd.g_rec_type;
340: l_proc varchar2(72) := g_package||'upd';