DBA Data[Home] [Help]

APPS.PER_CNF_UPD dependencies on HR_API

Line 83: When hr_api.check_integrity_violated Then

79: --
80: hr_utility.set_location(' Leaving:'||l_proc, 10);
81: --
82: Exception
83: When hr_api.check_integrity_violated Then
84: -- A check constraint has been violated
85: --
86: per_cnf_shd.constraint_error
87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

83: When hr_api.check_integrity_violated Then
84: -- A check constraint has been violated
85: --
86: per_cnf_shd.constraint_error
87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
88: When hr_api.parent_integrity_violated Then
89: -- Parent integrity has been violated
90: --
91: per_cnf_shd.constraint_error

Line 88: When hr_api.parent_integrity_violated Then

84: -- A check constraint has been violated
85: --
86: per_cnf_shd.constraint_error
87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
88: When hr_api.parent_integrity_violated Then
89: -- Parent integrity has been violated
90: --
91: per_cnf_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

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

Line 93: When hr_api.unique_integrity_violated Then

89: -- Parent integrity has been violated
90: --
91: per_cnf_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: --
96: per_cnf_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

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

Line 210: when hr_api.cannot_find_prog_unit then

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

Line 212: hr_api.cannot_find_prog_unit_error

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

Line 275: If (p_rec.configuration_type = hr_api.g_varchar2) then

271: -- p_rec plsql record structure
272: -- to see if a system default is being used. If a system default
273: -- is being used then we must set to the 'current' argument value.
274: --
275: If (p_rec.configuration_type = hr_api.g_varchar2) then
276: p_rec.configuration_type :=
277: per_cnf_shd.g_old_rec.configuration_type;
278: End If;
279: If (p_rec.configuration_status = hr_api.g_varchar2) then

Line 279: If (p_rec.configuration_status = hr_api.g_varchar2) then

275: If (p_rec.configuration_type = hr_api.g_varchar2) then
276: p_rec.configuration_type :=
277: per_cnf_shd.g_old_rec.configuration_type;
278: End If;
279: If (p_rec.configuration_status = hr_api.g_varchar2) then
280: p_rec.configuration_status :=
281: per_cnf_shd.g_old_rec.configuration_status;
282: End If;
283: --

Line 346: ,p_configuration_type in varchar2 default hr_api.g_varchar2

342: -- ----------------------------------------------------------------------------
343: Procedure upd
344: (p_effective_date in date
345: ,p_configuration_code in varchar2
346: ,p_configuration_type in varchar2 default hr_api.g_varchar2
347: ,p_configuration_status in varchar2 default hr_api.g_varchar2
348: ,p_object_version_number in out nocopy number
349: ) is
350: --

Line 347: ,p_configuration_status in varchar2 default hr_api.g_varchar2

343: Procedure upd
344: (p_effective_date in date
345: ,p_configuration_code in varchar2
346: ,p_configuration_type in varchar2 default hr_api.g_varchar2
347: ,p_configuration_status in varchar2 default hr_api.g_varchar2
348: ,p_object_version_number in out nocopy number
349: ) is
350: --
351: l_rec per_cnf_shd.g_rec_type;