DBA Data[Home] [Help]

APPS.FF_FCU_INS dependencies on HR_API

Line 109: When hr_api.check_integrity_violated Then

105: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
106: --
107: hr_utility.set_location(' Leaving:'||l_proc, 10);
108: Exception
109: When hr_api.check_integrity_violated Then
110: -- A check constraint has been violated
111: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
112: ff_fcu_shd.constraint_error
113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

109: When hr_api.check_integrity_violated Then
110: -- A check constraint has been violated
111: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
112: ff_fcu_shd.constraint_error
113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
114: When hr_api.parent_integrity_violated Then
115: -- Parent integrity has been violated
116: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
117: ff_fcu_shd.constraint_error

Line 114: When hr_api.parent_integrity_violated Then

110: -- A check constraint has been violated
111: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
112: ff_fcu_shd.constraint_error
113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
114: When hr_api.parent_integrity_violated Then
115: -- Parent integrity has been violated
116: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
117: ff_fcu_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.parent_integrity_violated Then
115: -- Parent integrity has been violated
116: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
117: ff_fcu_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.unique_integrity_violated Then
120: -- Unique integrity has been violated
121: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
122: ff_fcu_shd.constraint_error

Line 119: When hr_api.unique_integrity_violated Then

115: -- Parent integrity has been violated
116: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
117: ff_fcu_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.unique_integrity_violated Then
120: -- Unique integrity has been violated
121: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
122: ff_fcu_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.unique_integrity_violated Then
120: -- Unique integrity has been violated
121: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
122: ff_fcu_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When Others Then
125: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
126: Raise;
127: End insert_dml;

Line 283: when hr_api.cannot_find_prog_unit then

279: );
280: --
281: exception
282: --
283: when hr_api.cannot_find_prog_unit then
284: --
285: hr_api.cannot_find_prog_unit_error
286: (p_module_name => 'FF_FUNCTION_CONTEXT_USAGES'
287: ,p_hook_type => 'AI');

Line 285: hr_api.cannot_find_prog_unit_error

281: exception
282: --
283: when hr_api.cannot_find_prog_unit then
284: --
285: hr_api.cannot_find_prog_unit_error
286: (p_module_name => 'FF_FUNCTION_CONTEXT_USAGES'
287: ,p_hook_type => 'AI');
288: --
289: end;