DBA Data[Home] [Help]

APPS.GMS_BUDGET_UTILS dependencies on PA_PROJECT_TYPES

Line 182: -- pa_project_types

178: x_err_stack := x_err_stack || '->get_default_resource_list_id';
179:
180: -- if a baselined budget exists
181: -- then get the resource_list_id from the baselined budget else get it from
182: -- pa_project_types
183:
184: -- Get the baselined version
185: x_err_stage := 'get baselined budget id <' || to_char(x_project_id)
186: || '><' || x_award_id || '>';

Line 225: from pa_project_types t,

221: select t.allow_cost_budget_entry_flag,
222: t.cost_budget_resource_list_id
223: into x_allow_budget_entry_flag,
224: x_resource_list_id
225: from pa_project_types t,
226: pa_projects p
227: where p.project_id = x_project_id
228: and p.project_type = t.project_type;
229:

Line 236: from pa_project_types t,

232: select t.allow_rev_budget_entry_flag,
233: t.rev_budget_resource_list_id
234: into x_allow_budget_entry_flag,
235: x_resource_list_id
236: from pa_project_types t,
237: pa_projects p
238: where p.project_id = x_project_id
239: and p.project_type = t.project_type;
240:

Line 321: from pa_project_types t,

317: select t.allow_cost_budget_entry_flag,
318: t.cost_budget_entry_method_code
319: into x_allow_budget_entry_flag,
320: x_budget_entry_method_code
321: from pa_project_types t,
322: pa_projects p
323: where p.project_id = x_project_id
324: and p.project_type = t.project_type;
325:

Line 332: from pa_project_types t,

328: select t.allow_rev_budget_entry_flag,
329: t.rev_budget_entry_method_code
330: into x_allow_budget_entry_flag,
331: x_budget_entry_method_code
332: from pa_project_types t,
333: pa_projects p
334: where p.project_id = x_project_id
335: and p.project_type = t.project_type;
336: