DBA Data[Home] [Help]

APPS.PQH_BDT_SHD dependencies on PQH_BUDGET_DETAILS

Line 21: If (p_constraint_name = 'PQH_BUDGET_DETAILS_FK2') Then

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PQH_BUDGET_DETAILS_FK2') Then
22: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
23: hr_utility.set_message_token('PROCEDURE', l_proc);
24: hr_utility.set_message_token('STEP','5');
25: hr_utility.raise_error;

Line 26: ElsIf (p_constraint_name = 'PQH_BUDGET_DETAILS_FK3') Then

22: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
23: hr_utility.set_message_token('PROCEDURE', l_proc);
24: hr_utility.set_message_token('STEP','5');
25: hr_utility.raise_error;
26: ElsIf (p_constraint_name = 'PQH_BUDGET_DETAILS_FK3') Then
27: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
28: hr_utility.set_message_token('PROCEDURE', l_proc);
29: hr_utility.set_message_token('STEP','10');
30: hr_utility.raise_error;

Line 34: ElsIf (p_constraint_name = 'PQH_BUDGET_DETAILS_FK4') Then

30: hr_utility.raise_error;
31: ElsIf (p_constraint_name = 'PQH_BUDGET_PERIODS_FK1') Then
32: hr_utility.set_message(8302,'PQH_BUDGET_PERIODS_EXISTS');
33: hr_utility.raise_error;
34: ElsIf (p_constraint_name = 'PQH_BUDGET_DETAILS_FK4') Then
35: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
36: hr_utility.set_message_token('PROCEDURE', l_proc);
37: hr_utility.set_message_token('STEP','15');
38: hr_utility.raise_error;

Line 39: ElsIf (p_constraint_name = 'PQH_BUDGET_DETAILS_FK5') Then

35: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
36: hr_utility.set_message_token('PROCEDURE', l_proc);
37: hr_utility.set_message_token('STEP','15');
38: hr_utility.raise_error;
39: ElsIf (p_constraint_name = 'PQH_BUDGET_DETAILS_FK5') Then
40: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
41: hr_utility.set_message_token('PROCEDURE', l_proc);
42: hr_utility.set_message_token('STEP','20');
43: hr_utility.raise_error;

Line 44: ElsIf (p_constraint_name = 'PQH_BUDGET_DETAILS_PK') Then

40: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
41: hr_utility.set_message_token('PROCEDURE', l_proc);
42: hr_utility.set_message_token('STEP','20');
43: hr_utility.raise_error;
44: ElsIf (p_constraint_name = 'PQH_BUDGET_DETAILS_PK') Then
45: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
46: hr_utility.set_message_token('PROCEDURE', l_proc);
47: hr_utility.set_message_token('STEP','25');
48: hr_utility.raise_error;

Line 49: ElsIf (p_constraint_name = 'PQH_BUDGET_DETAILS_UK') Then

45: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
46: hr_utility.set_message_token('PROCEDURE', l_proc);
47: hr_utility.set_message_token('STEP','25');
48: hr_utility.raise_error;
49: ElsIf (p_constraint_name = 'PQH_BUDGET_DETAILS_UK') Then
50: --
51: -- Code Changed to provide a more meaningful message on
52: -- unique constraint failure.
53: --

Line 106: from pqh_budget_details

102: budget_unit3_value,
103: budget_unit3_available,
104: gl_status,
105: object_version_number
106: from pqh_budget_details
107: where budget_detail_id = p_budget_detail_id;
108: --
109: l_proc varchar2(72) := g_package||'api_updating';
110: l_fct_ret boolean;

Line 195: from pqh_budget_details

191: budget_unit3_value,
192: budget_unit3_available,
193: gl_status,
194: object_version_number
195: from pqh_budget_details
196: where budget_detail_id = p_budget_detail_id
197: for update nowait;
198: --
199: l_proc varchar2(72) := g_package||'lck';

Line 238: hr_utility.set_message_token('TABLE_NAME', 'pqh_budget_details');

234: -- The object is locked therefore we need to supply a meaningful
235: -- error message.
236: --
237: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
238: hr_utility.set_message_token('TABLE_NAME', 'pqh_budget_details');
239: hr_utility.raise_error;
240: End lck;
241: --
242: -- ----------------------------------------------------------------------------