DBA Data[Home] [Help]

APPS.PER_SCN_UPD dependencies on HR_API

Line 87: When hr_api.check_integrity_violated Then

83: --
84: hr_utility.set_location(' Leaving:'||l_proc, 10);
85: --
86: Exception
87: When hr_api.check_integrity_violated Then
88: -- A check constraint has been violated
89: --
90: per_scn_shd.constraint_error
91: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

87: When hr_api.check_integrity_violated Then
88: -- A check constraint has been violated
89: --
90: per_scn_shd.constraint_error
91: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
92: When hr_api.parent_integrity_violated Then
93: -- Parent integrity has been violated
94: --
95: per_scn_shd.constraint_error

Line 92: When hr_api.parent_integrity_violated Then

88: -- A check constraint has been violated
89: --
90: per_scn_shd.constraint_error
91: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
92: When hr_api.parent_integrity_violated Then
93: -- Parent integrity has been violated
94: --
95: per_scn_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

92: When hr_api.parent_integrity_violated Then
93: -- Parent integrity has been violated
94: --
95: per_scn_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
97: When hr_api.unique_integrity_violated Then
98: -- Unique integrity has been violated
99: --
100: per_scn_shd.constraint_error

Line 97: When hr_api.unique_integrity_violated Then

93: -- Parent integrity has been violated
94: --
95: per_scn_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
97: When hr_api.unique_integrity_violated Then
98: -- Unique integrity has been violated
99: --
100: per_scn_shd.constraint_error
101: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

97: When hr_api.unique_integrity_violated Then
98: -- Unique integrity has been violated
99: --
100: per_scn_shd.constraint_error
101: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
102: When Others Then
103: --
104: Raise;
105: End update_dml;

Line 212: when hr_api.cannot_find_prog_unit then

208: );
209: --
210: exception
211: --
212: when hr_api.cannot_find_prog_unit then
213: --
214: hr_api.cannot_find_prog_unit_error
215: (p_module_name => 'PER_SOLUTION_CMPT_NAMES'
216: ,p_hook_type => 'AU');

Line 214: hr_api.cannot_find_prog_unit_error

210: exception
211: --
212: when hr_api.cannot_find_prog_unit then
213: --
214: hr_api.cannot_find_prog_unit_error
215: (p_module_name => 'PER_SOLUTION_CMPT_NAMES'
216: ,p_hook_type => 'AU');
217: --
218: end;

Line 277: If (p_rec.name = hr_api.g_varchar2) then

273: -- p_rec plsql record structure
274: -- to see if a system default is being used. If a system default
275: -- is being used then we must set to the 'current' argument value.
276: --
277: If (p_rec.name = hr_api.g_varchar2) then
278: p_rec.name :=
279: per_scn_shd.g_old_rec.name;
280: End If;
281: /* If (p_rec.template_file = hr_api.g_varchar2) then

Line 281: /* If (p_rec.template_file = hr_api.g_varchar2) then

277: If (p_rec.name = hr_api.g_varchar2) then
278: p_rec.name :=
279: per_scn_shd.g_old_rec.name;
280: End If;
281: /* If (p_rec.template_file = hr_api.g_varchar2) then
282: p_rec.template_file :=
283: per_scn_shd.g_old_rec.template_file;
284: End If; */
285: --

Line 349: ,p_name in varchar2 default hr_api.g_varchar2

345: (p_solution_id in number
346: ,p_component_name in varchar2
347: ,p_solution_type_name in varchar2
348: ,p_object_version_number in out nocopy number
349: ,p_name in varchar2 default hr_api.g_varchar2
350: ) is
351: --
352: l_rec per_scn_shd.g_rec_type;
353: l_proc varchar2(72) := g_package||'upd';