DBA Data[Home] [Help]

APPS.OTA_TPL_SHD dependencies on OTA_PRICE_LISTS

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'OTA_PRICE_LISTS_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_PRICE_LISTS_PK') 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_PRICE_LISTS_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;

Line 46: ElsIf (p_constraint_name = 'OTA_PRICE_LISTS_UK2') 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_PRICE_LISTS_UK2') 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 149: from ota_price_lists

145: tpl_information17,
146: tpl_information18,
147: tpl_information19,
148: tpl_information20
149: from ota_price_lists
150: where price_list_id = p_price_list_id;
151: --
152: l_proc varchar2(72) := g_package||'api_updating';
153: l_fct_ret boolean;

Line 252: from ota_price_lists

248: tpl_information17,
249: tpl_information18,
250: tpl_information19,
251: tpl_information20
252: from ota_price_lists
253: where price_list_id = p_price_list_id
254: for update nowait;
255: --
256: l_proc varchar2(72) := g_package||'lck';

Line 295: hr_utility.set_message_token('TABLE_NAME', 'ota_price_lists');

291: -- The object is locked therefore we need to supply a meaningful
292: -- error message.
293: --
294: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
295: hr_utility.set_message_token('TABLE_NAME', 'ota_price_lists');
296: hr_utility.raise_error;
297: End lck;
298: --
299: -- ----------------------------------------------------------------------------