DBA Data[Home] [Help]

APPS.OTA_TSR_SHD dependencies on OTA_SUPPLIABLE_RESOURCES

Line 36: If (p_constraint_name = 'OTA_SUPPLIABLE_RESOURCES_FK1') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'OTA_SUPPLIABLE_RESOURCES_FK1') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'OTA_SUPPLIABLE_RESOURCES_FK2') Then

37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'OTA_SUPPLIABLE_RESOURCES_FK2') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 46: ElsIf (p_constraint_name = 'OTA_SUPPLIABLE_RESOURCES_PK') Then

42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;
46: ElsIf (p_constraint_name = 'OTA_SUPPLIABLE_RESOURCES_PK') Then
47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;

Line 202: from ota_suppliable_resources

198: training_center_id ,
199: location_id ,
200: trainer_id ,
201: special_instruction
202: from ota_suppliable_resources
203: where supplied_resource_id = p_supplied_resource_id;
204: --
205: l_proc varchar2(72) := g_package||'api_updating';
206: l_fct_ret boolean;

Line 313: from ota_suppliable_resources

309: training_center_id,
310: location_id,
311: trainer_id,
312: special_instruction
313: from ota_suppliable_resources
314: where supplied_resource_id = p_supplied_resource_id
315: for update nowait;
316: --
317: l_proc varchar2(72) := g_package||'lck';

Line 356: hr_utility.set_message_token('TABLE_NAME', 'ota_suppliable_resources');

352: -- The object is locked therefore we need to supply a meaningful
353: -- error message.
354: --
355: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
356: hr_utility.set_message_token('TABLE_NAME', 'ota_suppliable_resources');
357: hr_utility.raise_error;
358: End lck;
359: --
360: -- ----------------------------------------------------------------------------