DBA Data[Home] [Help]

APPS.FF_FCU_UPD dependencies on HR_API

Line 84: When hr_api.check_integrity_violated Then

80: --
81: hr_utility.set_location(' Leaving:'||l_proc, 10);
82: --
83: Exception
84: When hr_api.check_integrity_violated Then
85: -- A check constraint has been violated
86: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
87: ff_fcu_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

84: When hr_api.check_integrity_violated Then
85: -- A check constraint has been violated
86: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
87: ff_fcu_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
92: ff_fcu_shd.constraint_error

Line 89: When hr_api.parent_integrity_violated Then

85: -- A check constraint has been violated
86: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
87: ff_fcu_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
92: ff_fcu_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
92: ff_fcu_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
97: ff_fcu_shd.constraint_error

Line 94: When hr_api.unique_integrity_violated Then

90: -- Parent integrity has been violated
91: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
92: ff_fcu_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
97: ff_fcu_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.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
97: ff_fcu_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When Others Then
100: ff_fcu_shd.g_api_dml := false; -- Unset the api dml status
101: Raise;
102: End update_dml;

Line 207: when hr_api.cannot_find_prog_unit then

203: );
204: --
205: exception
206: --
207: when hr_api.cannot_find_prog_unit then
208: --
209: hr_api.cannot_find_prog_unit_error
210: (p_module_name => 'FF_FUNCTION_CONTEXT_USAGES'
211: ,p_hook_type => 'AU');

Line 209: hr_api.cannot_find_prog_unit_error

205: exception
206: --
207: when hr_api.cannot_find_prog_unit then
208: --
209: hr_api.cannot_find_prog_unit_error
210: (p_module_name => 'FF_FUNCTION_CONTEXT_USAGES'
211: ,p_hook_type => 'AU');
212: --
213: end;

Line 272: If (p_rec.context_id = hr_api.g_number) then

268: -- p_rec plsql record structure
269: -- to see if a system default is being used. If a system default
270: -- is being used then we must set to the 'current' argument value.
271: --
272: If (p_rec.context_id = hr_api.g_number) then
273: p_rec.context_id :=
274: ff_fcu_shd.g_old_rec.context_id;
275: End If;
276: --

Line 338: ,p_context_id in number default hr_api.g_number

334: Procedure upd
335: (p_function_id in number
336: ,p_sequence_number in number
337: ,p_object_version_number in out nocopy number
338: ,p_context_id in number default hr_api.g_number
339: ) is
340: --
341: l_rec ff_fcu_shd.g_rec_type;
342: l_proc varchar2(72) := g_package||'upd';