DBA Data[Home] [Help]

APPS.PER_STT_INS dependencies on HR_API

Line 74: When hr_api.check_integrity_violated Then

70: );
71: --
72: hr_utility.set_location(' Leaving:'||l_proc, 10);
73: Exception
74: When hr_api.check_integrity_violated Then
75: -- A check constraint has been violated
76: per_stt_shd.constraint_error
77: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
78: When hr_api.parent_integrity_violated Then

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

73: Exception
74: When hr_api.check_integrity_violated Then
75: -- A check constraint has been violated
76: per_stt_shd.constraint_error
77: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
78: When hr_api.parent_integrity_violated Then
79: -- Parent integrity has been violated
80: per_stt_shd.constraint_error
81: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 78: When hr_api.parent_integrity_violated Then

74: When hr_api.check_integrity_violated Then
75: -- A check constraint has been violated
76: per_stt_shd.constraint_error
77: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
78: When hr_api.parent_integrity_violated Then
79: -- Parent integrity has been violated
80: per_stt_shd.constraint_error
81: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
82: When hr_api.unique_integrity_violated Then

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

77: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
78: When hr_api.parent_integrity_violated Then
79: -- Parent integrity has been violated
80: per_stt_shd.constraint_error
81: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
82: When hr_api.unique_integrity_violated Then
83: -- Unique integrity has been violated
84: per_stt_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 82: When hr_api.unique_integrity_violated Then

78: When hr_api.parent_integrity_violated Then
79: -- Parent integrity has been violated
80: per_stt_shd.constraint_error
81: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
82: When hr_api.unique_integrity_violated Then
83: -- Unique integrity has been violated
84: per_stt_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When Others Then

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

81: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
82: When hr_api.unique_integrity_violated Then
83: -- Unique integrity has been violated
84: per_stt_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When Others Then
87: Raise;
88: End insert_dml;
89: --

Line 194: when hr_api.cannot_find_prog_unit then

190: );
191: --
192: exception
193: --
194: when hr_api.cannot_find_prog_unit then
195: --
196: hr_api.cannot_find_prog_unit_error
197: (p_module_name => 'per_shared_types_tl'
198: ,p_hook_type => 'AI');

Line 196: hr_api.cannot_find_prog_unit_error

192: exception
193: --
194: when hr_api.cannot_find_prog_unit then
195: --
196: hr_api.cannot_find_prog_unit_error
197: (p_module_name => 'per_shared_types_tl'
198: ,p_hook_type => 'AI');
199: --
200: end;