DBA Data[Home] [Help]

APPS.PER_BIL_INS dependencies on HR_API

Line 114: When hr_api.check_integrity_violated Then

110: per_bil_shd.g_api_dml := false; -- Unset the api dml status
111: --
112: hr_utility.set_location(' Leaving:'||l_proc, 10);
113: Exception
114: When hr_api.check_integrity_violated Then
115: -- A check constraint has been violated
116: per_bil_shd.g_api_dml := false; -- Unset the api dml status
117: per_bil_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

114: When hr_api.check_integrity_violated Then
115: -- A check constraint has been violated
116: per_bil_shd.g_api_dml := false; -- Unset the api dml status
117: per_bil_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: per_bil_shd.g_api_dml := false; -- Unset the api dml status
122: per_bil_shd.constraint_error

Line 119: When hr_api.parent_integrity_violated Then

115: -- A check constraint has been violated
116: per_bil_shd.g_api_dml := false; -- Unset the api dml status
117: per_bil_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: per_bil_shd.g_api_dml := false; -- Unset the api dml status
122: per_bil_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: per_bil_shd.g_api_dml := false; -- Unset the api dml status
122: per_bil_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: per_bil_shd.g_api_dml := false; -- Unset the api dml status
127: per_bil_shd.constraint_error

Line 124: When hr_api.unique_integrity_violated Then

120: -- Parent integrity has been violated
121: per_bil_shd.g_api_dml := false; -- Unset the api dml status
122: per_bil_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: per_bil_shd.g_api_dml := false; -- Unset the api dml status
127: per_bil_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: per_bil_shd.g_api_dml := false; -- Unset the api dml status
127: per_bil_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When Others Then
130: per_bil_shd.g_api_dml := false; -- Unset the api dml status
131: Raise;
132: End insert_dml;

Line 263: when hr_api.cannot_find_prog_unit then

259: null;
260: --
261: exception
262: --
263: when hr_api.cannot_find_prog_unit then
264: --
265: hr_api.cannot_find_prog_unit_error
266: (p_module_name => 'hr_summary'
267: ,p_hook_type => 'AI');

Line 265: hr_api.cannot_find_prog_unit_error

261: exception
262: --
263: when hr_api.cannot_find_prog_unit then
264: --
265: hr_api.cannot_find_prog_unit_error
266: (p_module_name => 'hr_summary'
267: ,p_hook_type => 'AI');
268: --
269: end;