DBA Data[Home] [Help]

APPS.HXC_HSD_UPD dependencies on HR_API

Line 88: When hr_api.check_integrity_violated Then

84: hr_utility.set_location(' Leaving:'||l_proc, 10);
85: end if;
86: --
87: Exception
88: When hr_api.check_integrity_violated Then
89: -- A check constraint has been violated
90: --
91: hxc_hsd_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.check_integrity_violated Then
89: -- A check constraint has been violated
90: --
91: hxc_hsd_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: --
96: hxc_hsd_shd.constraint_error

Line 93: When hr_api.parent_integrity_violated Then

89: -- A check constraint has been violated
90: --
91: hxc_hsd_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: --
96: hxc_hsd_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.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: --
96: hxc_hsd_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.unique_integrity_violated Then
99: -- Unique integrity has been violated
100: --
101: hxc_hsd_shd.constraint_error

Line 98: When hr_api.unique_integrity_violated Then

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

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

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

Line 217: when hr_api.cannot_find_prog_unit then

213: );
214: --
215: exception
216: --
217: when hr_api.cannot_find_prog_unit then
218: --
219: hr_api.cannot_find_prog_unit_error
220: (p_module_name => 'HXC_SEEDDATA_BY_LEVEL'
221: ,p_hook_type => 'AU');

Line 219: hr_api.cannot_find_prog_unit_error

215: exception
216: --
217: when hr_api.cannot_find_prog_unit then
218: --
219: hr_api.cannot_find_prog_unit_error
220: (p_module_name => 'HXC_SEEDDATA_BY_LEVEL'
221: ,p_hook_type => 'AU');
222: --
223: end;

Line 284: If (p_rec.hxc_required = hr_api.g_varchar2) then

280: -- p_rec plsql record structure
281: -- to see if a system default is being used. If a system default
282: -- is being used then we must set to the 'current' argument value.
283: --
284: If (p_rec.hxc_required = hr_api.g_varchar2) then
285: p_rec.hxc_required :=
286: hxc_hsd_shd.g_old_rec.hxc_required;
287: End If;
288: If (p_rec.owner_application_id = hr_api.g_number) then

Line 288: If (p_rec.owner_application_id = hr_api.g_number) then

284: If (p_rec.hxc_required = hr_api.g_varchar2) then
285: p_rec.hxc_required :=
286: hxc_hsd_shd.g_old_rec.hxc_required;
287: End If;
288: If (p_rec.owner_application_id = hr_api.g_number) then
289: p_rec.owner_application_id :=
290: hxc_hsd_shd.g_old_rec.owner_application_id;
291: End If;
292: --

Line 356: ,p_hxc_required in varchar2 default hr_api.g_varchar2

352: -- ----------------------------------------------------------------------------
353: Procedure upd
354: (p_object_id in number
355: ,p_object_type in varchar2
356: ,p_hxc_required in varchar2 default hr_api.g_varchar2
357: ,p_owner_application_id in number default hr_api.g_number
358: ) is
359: --
360: l_rec hxc_hsd_shd.g_rec_type;

Line 357: ,p_owner_application_id in number default hr_api.g_number

353: Procedure upd
354: (p_object_id in number
355: ,p_object_type in varchar2
356: ,p_hxc_required in varchar2 default hr_api.g_varchar2
357: ,p_owner_application_id in number default hr_api.g_number
358: ) is
359: --
360: l_rec hxc_hsd_shd.g_rec_type;
361: l_proc varchar2(72);