DBA Data[Home] [Help]

APPS.HXC_TKGQC_UPD dependencies on HR_API

Line 94: When hr_api.check_integrity_violated Then

90: hr_utility.set_location(' Leaving:'||l_proc, 10);
91: end if;
92: --
93: Exception
94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: hxc_tkgqc_shd.g_api_dml := false; -- Unset the api dml status
97: hxc_tkgqc_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.check_integrity_violated Then
95: -- A check constraint has been violated
96: hxc_tkgqc_shd.g_api_dml := false; -- Unset the api dml status
97: hxc_tkgqc_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When hr_api.parent_integrity_violated Then
100: -- Parent integrity has been violated
101: hxc_tkgqc_shd.g_api_dml := false; -- Unset the api dml status
102: hxc_tkgqc_shd.constraint_error

Line 99: When hr_api.parent_integrity_violated Then

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

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

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

Line 104: When hr_api.unique_integrity_violated Then

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

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

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

Line 231: when hr_api.cannot_find_prog_unit then

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

Line 233: hr_api.cannot_find_prog_unit_error

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

Line 297: If (p_rec.tk_group_query_id = hr_api.g_number) then

293: -- p_rec plsql record structure
294: -- to see if a system default is being used. If a system default
295: -- is being used then we must set to the 'current' argument value.
296: --
297: If (p_rec.tk_group_query_id = hr_api.g_number) then
298: p_rec.tk_group_query_id :=
299: hxc_tkgqc_shd.g_old_rec.tk_group_query_id;
300: End If;
301: If (p_rec.criteria_type = hr_api.g_varchar2) then

Line 301: If (p_rec.criteria_type = hr_api.g_varchar2) then

297: If (p_rec.tk_group_query_id = hr_api.g_number) then
298: p_rec.tk_group_query_id :=
299: hxc_tkgqc_shd.g_old_rec.tk_group_query_id;
300: End If;
301: If (p_rec.criteria_type = hr_api.g_varchar2) then
302: p_rec.criteria_type :=
303: hxc_tkgqc_shd.g_old_rec.criteria_type;
304: End If;
305: If (p_rec.criteria_id = hr_api.g_number) then

Line 305: If (p_rec.criteria_id = hr_api.g_number) then

301: If (p_rec.criteria_type = hr_api.g_varchar2) then
302: p_rec.criteria_type :=
303: hxc_tkgqc_shd.g_old_rec.criteria_type;
304: End If;
305: If (p_rec.criteria_id = hr_api.g_number) then
306: p_rec.criteria_id :=
307: hxc_tkgqc_shd.g_old_rec.criteria_id;
308: End If;
309: --

Line 369: ,p_tk_group_query_id in number default hr_api.g_number

365: -- ----------------------------------------------------------------------------
366: Procedure upd
367: (p_tk_group_query_criteria_id in number
368: ,p_object_version_number in out nocopy number
369: ,p_tk_group_query_id in number default hr_api.g_number
370: ,p_criteria_type in varchar2 default hr_api.g_varchar2
371: ,p_criteria_id in number default hr_api.g_number
372: ) is
373: --

Line 370: ,p_criteria_type in varchar2 default hr_api.g_varchar2

366: Procedure upd
367: (p_tk_group_query_criteria_id in number
368: ,p_object_version_number in out nocopy number
369: ,p_tk_group_query_id in number default hr_api.g_number
370: ,p_criteria_type in varchar2 default hr_api.g_varchar2
371: ,p_criteria_id in number default hr_api.g_number
372: ) is
373: --
374: l_rec hxc_tkgqc_shd.g_rec_type;

Line 371: ,p_criteria_id in number default hr_api.g_number

367: (p_tk_group_query_criteria_id in number
368: ,p_object_version_number in out nocopy number
369: ,p_tk_group_query_id in number default hr_api.g_number
370: ,p_criteria_type in varchar2 default hr_api.g_varchar2
371: ,p_criteria_id in number default hr_api.g_number
372: ) is
373: --
374: l_rec hxc_tkgqc_shd.g_rec_type;
375: l_proc varchar2(72) ;