DBA Data[Home] [Help]

APPS.HXC_TKG_UPD dependencies on HR_API

Line 93: When hr_api.check_integrity_violated Then

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

Line 98: When hr_api.parent_integrity_violated Then

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

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

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

Line 103: When hr_api.unique_integrity_violated Then

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

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

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

Line 223: when hr_api.cannot_find_prog_unit then

219: );
220: --
221: exception
222: --
223: when hr_api.cannot_find_prog_unit then
224: --
225: hr_api.cannot_find_prog_unit_error
226: (p_module_name => 'HXC_TK_GROUP'
227: ,p_hook_type => 'AU');

Line 225: hr_api.cannot_find_prog_unit_error

221: exception
222: --
223: when hr_api.cannot_find_prog_unit then
224: --
225: hr_api.cannot_find_prog_unit_error
226: (p_module_name => 'HXC_TK_GROUP'
227: ,p_hook_type => 'AU');
228: --
229: end;

Line 288: If (p_rec.tk_group_name = hr_api.g_varchar2) then

284: -- p_rec plsql record structure
285: -- to see if a system default is being used. If a system default
286: -- is being used then we must set to the 'current' argument value.
287: --
288: If (p_rec.tk_group_name = hr_api.g_varchar2) then
289: p_rec.tk_group_name :=
290: hxc_tkg_shd.g_old_rec.tk_group_name;
291: End If;
292: --