DBA Data[Home] [Help]

APPS.HXC_TCC_UPD dependencies on HR_API

Line 101: When hr_api.check_integrity_violated Then

97: hr_utility.set_location(' Leaving:'||l_proc, 10);
98: end if;
99:
100: Exception
101: When hr_api.check_integrity_violated Then
102: -- A check constraint has been violated
103: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
104: hxc_tcc_shd.constraint_error
105: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

101: When hr_api.check_integrity_violated Then
102: -- A check constraint has been violated
103: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
104: hxc_tcc_shd.constraint_error
105: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
106: When hr_api.parent_integrity_violated Then
107: -- Parent integrity has been violated
108: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_tcc_shd.constraint_error

Line 106: When hr_api.parent_integrity_violated Then

102: -- A check constraint has been violated
103: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
104: hxc_tcc_shd.constraint_error
105: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
106: When hr_api.parent_integrity_violated Then
107: -- Parent integrity has been violated
108: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_tcc_shd.constraint_error
110: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

106: When hr_api.parent_integrity_violated Then
107: -- Parent integrity has been violated
108: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_tcc_shd.constraint_error
110: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
111: When hr_api.unique_integrity_violated Then
112: -- Unique integrity has been violated
113: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
114: hxc_tcc_shd.constraint_error

Line 111: When hr_api.unique_integrity_violated Then

107: -- Parent integrity has been violated
108: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_tcc_shd.constraint_error
110: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
111: When hr_api.unique_integrity_violated Then
112: -- Unique integrity has been violated
113: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
114: hxc_tcc_shd.constraint_error
115: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

111: When hr_api.unique_integrity_violated Then
112: -- Unique integrity has been violated
113: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
114: hxc_tcc_shd.constraint_error
115: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
116: When Others Then
117: hxc_tcc_shd.g_api_dml := false; -- Unset the api dml status
118: Raise;
119: End update_dml;

Line 241: when hr_api.cannot_find_prog_unit then

237: ,p_object_version_number_o=> hxc_tcc_shd.g_old_rec.object_version_number );
238:
239: exception
240:
241: when hr_api.cannot_find_prog_unit then
242:
243: hr_api.cannot_find_prog_unit_error
244: (p_module_name => 'HXC_TIME_CATEGORY_COMPS'
245: ,p_hook_type => 'AU');

Line 243: hr_api.cannot_find_prog_unit_error

239: exception
240:
241: when hr_api.cannot_find_prog_unit then
242:
243: hr_api.cannot_find_prog_unit_error
244: (p_module_name => 'HXC_TIME_CATEGORY_COMPS'
245: ,p_hook_type => 'AU');
246:
247: end;

Line 308: If (p_rec.time_category_id = hr_api.g_number) then

304: -- p_rec plsql record structure
305: -- to see if a system default is being used. If a system default
306: -- is being used then we must set to the 'current' argument value.
307:
308: If (p_rec.time_category_id = hr_api.g_number) then
309: p_rec.time_category_id := hxc_tcc_shd.g_old_rec.time_category_id;
310: End If;
311:
312: If (p_rec.ref_time_category_id = hr_api.g_number) then

Line 312: If (p_rec.ref_time_category_id = hr_api.g_number) then

308: If (p_rec.time_category_id = hr_api.g_number) then
309: p_rec.time_category_id := hxc_tcc_shd.g_old_rec.time_category_id;
310: End If;
311:
312: If (p_rec.ref_time_category_id = hr_api.g_number) then
313: p_rec.ref_time_category_id := hxc_tcc_shd.g_old_rec.ref_time_category_id;
314: End If;
315:
316: If (p_rec.component_type_id = hr_api.g_number) then

Line 316: If (p_rec.component_type_id = hr_api.g_number) then

312: If (p_rec.ref_time_category_id = hr_api.g_number) then
313: p_rec.ref_time_category_id := hxc_tcc_shd.g_old_rec.ref_time_category_id;
314: End If;
315:
316: If (p_rec.component_type_id = hr_api.g_number) then
317: p_rec.component_type_id := hxc_tcc_shd.g_old_rec.component_type_id;
318: End If;
319:
320: If (p_rec.flex_value_set_id = hr_api.g_number) then

Line 320: If (p_rec.flex_value_set_id = hr_api.g_number) then

316: If (p_rec.component_type_id = hr_api.g_number) then
317: p_rec.component_type_id := hxc_tcc_shd.g_old_rec.component_type_id;
318: End If;
319:
320: If (p_rec.flex_value_set_id = hr_api.g_number) then
321: p_rec.flex_value_set_id := hxc_tcc_shd.g_old_rec.flex_value_set_id;
322: End If;
323:
324: If (p_rec.value_id = hr_api.g_varchar2) then

Line 324: If (p_rec.value_id = hr_api.g_varchar2) then

320: If (p_rec.flex_value_set_id = hr_api.g_number) then
321: p_rec.flex_value_set_id := hxc_tcc_shd.g_old_rec.flex_value_set_id;
322: End If;
323:
324: If (p_rec.value_id = hr_api.g_varchar2) then
325: p_rec.value_id := hxc_tcc_shd.g_old_rec.value_id;
326: End If;
327:
328: If (p_rec.is_null = hr_api.g_varchar2) then

Line 328: If (p_rec.is_null = hr_api.g_varchar2) then

324: If (p_rec.value_id = hr_api.g_varchar2) then
325: p_rec.value_id := hxc_tcc_shd.g_old_rec.value_id;
326: End If;
327:
328: If (p_rec.is_null = hr_api.g_varchar2) then
329: p_rec.is_null := hxc_tcc_shd.g_old_rec.is_null;
330: End If;
331:
332: If (p_rec.equal_to = hr_api.g_varchar2) then

Line 332: If (p_rec.equal_to = hr_api.g_varchar2) then

328: If (p_rec.is_null = hr_api.g_varchar2) then
329: p_rec.is_null := hxc_tcc_shd.g_old_rec.is_null;
330: End If;
331:
332: If (p_rec.equal_to = hr_api.g_varchar2) then
333: p_rec.equal_to := hxc_tcc_shd.g_old_rec.equal_to;
334: End If;
335:
336: If (p_rec.type = hr_api.g_varchar2) then

Line 336: If (p_rec.type = hr_api.g_varchar2) then

332: If (p_rec.equal_to = hr_api.g_varchar2) then
333: p_rec.equal_to := hxc_tcc_shd.g_old_rec.equal_to;
334: End If;
335:
336: If (p_rec.type = hr_api.g_varchar2) then
337: p_rec.type := hxc_tcc_shd.g_old_rec.type;
338: End If;
339:
340: End convert_defs;

Line 416: ,p_ref_time_category_id in number default hr_api.g_number

412: (
413: p_time_category_comp_id in number
414: ,p_time_category_id in number
415: ,p_object_version_number in out nocopy number
416: ,p_ref_time_category_id in number default hr_api.g_number
417: ,p_component_type_id in number default hr_api.g_number
418: ,p_flex_value_set_id in number default hr_api.g_number
419: ,p_value_id in varchar2 default hr_api.g_varchar2
420: ,p_is_null in varchar2 default hr_api.g_varchar2

Line 417: ,p_component_type_id in number default hr_api.g_number

413: p_time_category_comp_id in number
414: ,p_time_category_id in number
415: ,p_object_version_number in out nocopy number
416: ,p_ref_time_category_id in number default hr_api.g_number
417: ,p_component_type_id in number default hr_api.g_number
418: ,p_flex_value_set_id in number default hr_api.g_number
419: ,p_value_id in varchar2 default hr_api.g_varchar2
420: ,p_is_null in varchar2 default hr_api.g_varchar2
421: ,p_equal_to in varchar2 default hr_api.g_varchar2

Line 418: ,p_flex_value_set_id in number default hr_api.g_number

414: ,p_time_category_id in number
415: ,p_object_version_number in out nocopy number
416: ,p_ref_time_category_id in number default hr_api.g_number
417: ,p_component_type_id in number default hr_api.g_number
418: ,p_flex_value_set_id in number default hr_api.g_number
419: ,p_value_id in varchar2 default hr_api.g_varchar2
420: ,p_is_null in varchar2 default hr_api.g_varchar2
421: ,p_equal_to in varchar2 default hr_api.g_varchar2
422: ,p_type in varchar2 default hr_api.g_varchar2

Line 419: ,p_value_id in varchar2 default hr_api.g_varchar2

415: ,p_object_version_number in out nocopy number
416: ,p_ref_time_category_id in number default hr_api.g_number
417: ,p_component_type_id in number default hr_api.g_number
418: ,p_flex_value_set_id in number default hr_api.g_number
419: ,p_value_id in varchar2 default hr_api.g_varchar2
420: ,p_is_null in varchar2 default hr_api.g_varchar2
421: ,p_equal_to in varchar2 default hr_api.g_varchar2
422: ,p_type in varchar2 default hr_api.g_varchar2
423: ) is

Line 420: ,p_is_null in varchar2 default hr_api.g_varchar2

416: ,p_ref_time_category_id in number default hr_api.g_number
417: ,p_component_type_id in number default hr_api.g_number
418: ,p_flex_value_set_id in number default hr_api.g_number
419: ,p_value_id in varchar2 default hr_api.g_varchar2
420: ,p_is_null in varchar2 default hr_api.g_varchar2
421: ,p_equal_to in varchar2 default hr_api.g_varchar2
422: ,p_type in varchar2 default hr_api.g_varchar2
423: ) is
424: --

Line 421: ,p_equal_to in varchar2 default hr_api.g_varchar2

417: ,p_component_type_id in number default hr_api.g_number
418: ,p_flex_value_set_id in number default hr_api.g_number
419: ,p_value_id in varchar2 default hr_api.g_varchar2
420: ,p_is_null in varchar2 default hr_api.g_varchar2
421: ,p_equal_to in varchar2 default hr_api.g_varchar2
422: ,p_type in varchar2 default hr_api.g_varchar2
423: ) is
424: --
425: l_rec hxc_tcc_shd.g_rec_type;

Line 422: ,p_type in varchar2 default hr_api.g_varchar2

418: ,p_flex_value_set_id in number default hr_api.g_number
419: ,p_value_id in varchar2 default hr_api.g_varchar2
420: ,p_is_null in varchar2 default hr_api.g_varchar2
421: ,p_equal_to in varchar2 default hr_api.g_varchar2
422: ,p_type in varchar2 default hr_api.g_varchar2
423: ) is
424: --
425: l_rec hxc_tcc_shd.g_rec_type;
426: l_proc varchar2(72);