DBA Data[Home] [Help]

APPS.PQH_BGM_SHD dependencies on PQH_BUDGET_GL_FLEX_MAPS

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

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

Line 27: ElsIf (p_constraint_name = 'PQH_BUDGET_GL_FLEX_MAPS_UK') 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_BUDGET_GL_FLEX_MAPS_UK') 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 61: from pqh_budget_gl_flex_maps

57: budget_id,
58: gl_account_segment,
59: payroll_cost_segment,
60: object_version_number
61: from pqh_budget_gl_flex_maps
62: where budget_gl_flex_map_id = p_budget_gl_flex_map_id;
63: --
64: l_proc varchar2(72) := g_package||'api_updating';
65: l_fct_ret boolean;

Line 135: from pqh_budget_gl_flex_maps

131: budget_id,
132: gl_account_segment,
133: payroll_cost_segment,
134: object_version_number
135: from pqh_budget_gl_flex_maps
136: where budget_gl_flex_map_id = p_budget_gl_flex_map_id
137: for update nowait;
138: --
139: l_proc varchar2(72) := g_package||'lck';

Line 178: hr_utility.set_message_token('TABLE_NAME', 'pqh_budget_gl_flex_maps');

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