DBA Data[Home] [Help]

APPS.PQH_GVN_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: pqh_gvn_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: pqh_gvn_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: pqh_gvn_shd.constraint_error

Line 88: When hr_api.parent_integrity_violated Then

84: -- A check constraint has been violated
85: --
86: pqh_gvn_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: pqh_gvn_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: pqh_gvn_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: pqh_gvn_shd.constraint_error

Line 93: When hr_api.unique_integrity_violated Then

89: -- Parent integrity has been violated
90: --
91: pqh_gvn_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: pqh_gvn_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: pqh_gvn_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 => 'PQH_DE_LEVEL_NUMBERS'
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 => 'PQH_DE_LEVEL_NUMBERS'
214: ,p_hook_type => 'AU');
215: --
216: end;

Line 275: If (p_rec.level_number = 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.level_number = hr_api.g_varchar2) then
276: p_rec.level_number :=
277: pqh_gvn_shd.g_old_rec.level_number;
278: End If;
279: If (p_rec.description = hr_api.g_varchar2) then

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

275: If (p_rec.level_number = hr_api.g_varchar2) then
276: p_rec.level_number :=
277: pqh_gvn_shd.g_old_rec.level_number;
278: End If;
279: If (p_rec.description = hr_api.g_varchar2) then
280: p_rec.description :=
281: pqh_gvn_shd.g_old_rec.description;
282: End If;
283: --

Line 347: ,p_level_number in varchar2 default hr_api.g_varchar2

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

Line 348: ,p_description in varchar2 default hr_api.g_varchar2

344: (p_effective_date in date
345: ,p_level_number_id in number
346: ,p_object_version_number in out nocopy number
347: ,p_level_number in varchar2 default hr_api.g_varchar2
348: ,p_description in varchar2 default hr_api.g_varchar2
349: ) is
350: --
351: l_rec pqh_gvn_shd.g_rec_type;
352: l_proc varchar2(72) := g_package||'upd';