DBA Data[Home] [Help]

APPS.PQH_DEL_SHD dependencies on PQH_DFLT_BUDGET_ELEMENTS

Line 22: If (p_constraint_name = 'PQH_DFLT_BUDGET_ELEMENTS_FK1') Then

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

Line 27: ElsIf (p_constraint_name = 'PQH_DFLT_BUDGET_ELEMENTS_PK') Then

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

Line 64: from pqh_dflt_budget_elements

60: dflt_budget_set_id,
61: element_type_id,
62: dflt_dist_percentage,
63: object_version_number
64: from pqh_dflt_budget_elements
65: where dflt_budget_element_id = p_dflt_budget_element_id;
66: --
67: l_proc varchar2(72) := g_package||'api_updating';
68: l_fct_ret boolean;

Line 138: from pqh_dflt_budget_elements

134: dflt_budget_set_id,
135: element_type_id,
136: dflt_dist_percentage,
137: object_version_number
138: from pqh_dflt_budget_elements
139: where dflt_budget_element_id = p_dflt_budget_element_id
140: for update nowait;
141: --
142: l_proc varchar2(72) := g_package||'lck';

Line 181: hr_utility.set_message_token('TABLE_NAME', 'pqh_dflt_budget_elements');

177: -- The object is locked therefore we need to supply a meaningful
178: -- error message.
179: --
180: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
181: hr_utility.set_message_token('TABLE_NAME', 'pqh_dflt_budget_elements');
182: hr_utility.raise_error;
183: End lck;
184: --
185: -- ----------------------------------------------------------------------------