DBA Data[Home] [Help]

APPS.HXC_RTR_UPD dependencies on HR_API

Line 96: When hr_api.check_integrity_violated Then

92: hr_utility.set_location(' Leaving:'||l_proc, 10);
93: end if;
94: --
95: Exception
96: When hr_api.check_integrity_violated Then
97: -- A check constraint has been violated
98: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
99: hxc_rtr_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

96: When hr_api.check_integrity_violated Then
97: -- A check constraint has been violated
98: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
99: hxc_rtr_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When hr_api.parent_integrity_violated Then
102: -- Parent integrity has been violated
103: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
104: hxc_rtr_shd.constraint_error

Line 101: When hr_api.parent_integrity_violated Then

97: -- A check constraint has been violated
98: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
99: hxc_rtr_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When hr_api.parent_integrity_violated Then
102: -- Parent integrity has been violated
103: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
104: hxc_rtr_shd.constraint_error
105: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

101: When hr_api.parent_integrity_violated Then
102: -- Parent integrity has been violated
103: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
104: hxc_rtr_shd.constraint_error
105: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
106: When hr_api.unique_integrity_violated Then
107: -- Unique integrity has been violated
108: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_rtr_shd.constraint_error

Line 106: When hr_api.unique_integrity_violated Then

102: -- Parent integrity has been violated
103: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
104: hxc_rtr_shd.constraint_error
105: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
106: When hr_api.unique_integrity_violated Then
107: -- Unique integrity has been violated
108: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_rtr_shd.constraint_error
110: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

106: When hr_api.unique_integrity_violated Then
107: -- Unique integrity has been violated
108: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_rtr_shd.constraint_error
110: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
111: When Others Then
112: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
113: Raise;
114: End update_dml;

Line 233: when hr_api.cannot_find_prog_unit then

229: );
230: --
231: exception
232: --
233: when hr_api.cannot_find_prog_unit then
234: --
235: hr_api.cannot_find_prog_unit_error
236: (p_module_name => 'HXC_RETRIEVAL_RULES'
237: ,p_hook_type => 'AU');

Line 235: hr_api.cannot_find_prog_unit_error

231: exception
232: --
233: when hr_api.cannot_find_prog_unit then
234: --
235: hr_api.cannot_find_prog_unit_error
236: (p_module_name => 'HXC_RETRIEVAL_RULES'
237: ,p_hook_type => 'AU');
238: --
239: end;

Line 300: If (p_rec.retrieval_process_id = hr_api.g_number) then

296: -- p_rec plsql record structure
297: -- to see if a system default is being used. If a system default
298: -- is being used then we must set to the 'current' argument value.
299: --
300: If (p_rec.retrieval_process_id = hr_api.g_number) then
301: p_rec.retrieval_process_id :=
302: hxc_rtr_shd.g_old_rec.retrieval_process_id;
303: End If;
304: If (p_rec.name = hr_api.g_varchar2) then

Line 304: If (p_rec.name = hr_api.g_varchar2) then

300: If (p_rec.retrieval_process_id = hr_api.g_number) then
301: p_rec.retrieval_process_id :=
302: hxc_rtr_shd.g_old_rec.retrieval_process_id;
303: End If;
304: If (p_rec.name = hr_api.g_varchar2) then
305: p_rec.name :=
306: hxc_rtr_shd.g_old_rec.name;
307: End If;
308: --

Line 371: ,p_retrieval_process_id in number default hr_api.g_number

367: Procedure upd
368: (p_effective_date in date
369: ,p_retrieval_rule_id in number
370: ,p_object_version_number in out nocopy number
371: ,p_retrieval_process_id in number default hr_api.g_number
372: ,p_name in varchar2 default hr_api.g_varchar2
373: ) is
374: --
375: l_rec hxc_rtr_shd.g_rec_type;

Line 372: ,p_name in varchar2 default hr_api.g_varchar2

368: (p_effective_date in date
369: ,p_retrieval_rule_id in number
370: ,p_object_version_number in out nocopy number
371: ,p_retrieval_process_id in number default hr_api.g_number
372: ,p_name in varchar2 default hr_api.g_varchar2
373: ) is
374: --
375: l_rec hxc_rtr_shd.g_rec_type;
376: l_proc varchar2(72);