DBA Data[Home] [Help]

APPS.PQH_BEL_SHD dependencies on PQH_BUDGET_ELEMENTS

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

18: --
19: Begin
20: hr_utility.set_location('Entering:'||l_proc, 5);
21: --
22: If (p_constraint_name = 'PQH_BUDGET_ELEMENTS_FK2') 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 64: from pqh_budget_elements

60: budget_set_id,
61: element_type_id,
62: distribution_percentage,
63: object_version_number
64: from pqh_budget_elements
65: where budget_element_id = p_budget_element_id;
66: --
67: l_proc varchar2(72) := g_package||'api_updating';
68: l_fct_ret boolean;

Line 138: from pqh_budget_elements

134: budget_set_id,
135: element_type_id,
136: distribution_percentage,
137: object_version_number
138: from pqh_budget_elements
139: where budget_element_id = p_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_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_budget_elements');
182: hr_utility.raise_error;
183: End lck;
184: --
185: -- ----------------------------------------------------------------------------