DBA Data[Home] [Help]

APPS.PA_BUDGET_UTILS dependencies on PA_PROJECT_TYPES

Line 197: -- pa_project_types

193: x_err_stack := x_err_stack || '->get_default_resource_list_id';
194:
195: -- if a baselined budget exists
196: -- then get the resource_list_id from it else get it from
197: -- pa_project_types
198:
199: -- Get the baselined version
200: x_err_stage := 'get baselined budget id <' || to_char(x_project_id)
201: || '><' || x_budget_type_code || '>';

Line 245: from pa_project_types t,

241: select t.allow_cost_budget_entry_flag,
242: t.cost_budget_resource_list_id
243: into x_allow_budget_entry_flag,
244: x_resource_list_id
245: from pa_project_types t,
246: pa_projects p
247: where p.project_id = x_project_id
248: and p.project_type = t.project_type;
249:

Line 256: from pa_project_types t,

252: select t.allow_rev_budget_entry_flag,
253: t.rev_budget_resource_list_id
254: into x_allow_budget_entry_flag,
255: x_resource_list_id
256: from pa_project_types t,
257: pa_projects p
258: where p.project_id = x_project_id
259: and p.project_type = t.project_type;
260:

Line 322: from pa_project_types t,

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

Line 333: from pa_project_types t,

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