DBA Data[Home] [Help]

APPS.PA_BUDGET_CORE dependencies on PA_BUDGET_CORE

Line 1: PACKAGE BODY pa_budget_core AS

1: PACKAGE BODY pa_budget_core AS
2: -- $Header: PAXBUBCB.pls 120.15.12010000.2 2008/09/12 12:43:20 paljain ship $
3:
4: -- Bug Fix: 4569365. Removed MRC code.
5: -- g_mrc_exception EXCEPTION;

Line 7: g_module_name varchar2(100) := 'pa_budget_core';

3:
4: -- Bug Fix: 4569365. Removed MRC code.
5: -- g_mrc_exception EXCEPTION;
6: p_pa_debug_mode Varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
7: g_module_name varchar2(100) := 'pa_budget_core';
8:
9: PROCEDURE PRINT_MSG(P_MSG VARCHAR2) is
10: BEGIN
11: --dbms_output.put_line(P_MSG);

Line 351: print_msg('PA_BUDGET_CORE.BASELINE- Inside');

347: x_return_status VARCHAR2(2000);
348:
349: BEGIN
350:
351: print_msg('PA_BUDGET_CORE.BASELINE- Inside');
352:
353: x_err_code := 0;
354: old_stack := x_err_stack;
355: x_err_stack := x_err_stack || '->baseline';

Line 754: in pa_budget_core1 which copies budget lines and resource assignments from

750: Fix 876456 copy_lines is a generic procedure that copies budget lines
751: and resource assignments from a source project's budget to a destination
752: project's budget
753: This procedure has been replaced with a procedure copy_draft_lines defined
754: in pa_budget_core1 which copies budget lines and resource assignments from
755: the draft budget of a project to the baselined version of the same project
756:
757: pa_budget_core.copy_lines(x_draft_version_id,
758: 1,

Line 757: pa_budget_core.copy_lines(x_draft_version_id,

753: This procedure has been replaced with a procedure copy_draft_lines defined
754: in pa_budget_core1 which copies budget lines and resource assignments from
755: the draft budget of a project to the baselined version of the same project
756:
757: pa_budget_core.copy_lines(x_draft_version_id,
758: 1,
759: 5,
760: 0,
761: x_dest_version_id,

Line 768: x_err_stage:= 'Calling pa_budget_core1.copy_draft_lines';

764: x_err_stack,
765: 'Y');
766: */
767:
768: x_err_stage:= 'Calling pa_budget_core1.copy_draft_lines';
769: print_msg(x_err_stage);
770: pa_budget_core1.copy_draft_lines(x_src_version_id => x_draft_version_id,
771: x_time_phased_type_code => x_time_phased_type_code,
772: x_entry_level_code => x_entry_level_code,

Line 770: pa_budget_core1.copy_draft_lines(x_src_version_id => x_draft_version_id,

766: */
767:
768: x_err_stage:= 'Calling pa_budget_core1.copy_draft_lines';
769: print_msg(x_err_stage);
770: pa_budget_core1.copy_draft_lines(x_src_version_id => x_draft_version_id,
771: x_time_phased_type_code => x_time_phased_type_code,
772: x_entry_level_code => x_entry_level_code,
773: x_dest_version_id => x_dest_version_id,
774: x_err_code => x_err_code,

Line 1894: pa_budget_core.copy_lines(x_src_version_id,

1890: decode(x_dest_budget_type_code, 'AR', 'Y', 'N') --Bug 5081715.
1891: from pa_budget_versions v
1892: where v.budget_version_id = x_src_version_id;
1893:
1894: pa_budget_core.copy_lines(x_src_version_id,
1895: x_amount_change_pct,
1896: x_rounding_precision,
1897: x_shift_days,
1898: x_dest_version_id,

Line 2251: pa_budget_core.get_periods(

2247: END IF; /* Mininum Task start date is null */
2248: END IF; /* Minimum Project start date is null */
2249:
2250: --Based on the shift_days check how much shift is required period wise
2251: pa_budget_core.get_periods(
2252: x_start_date1 => l_min_start_date,
2253: x_start_date2 => l_min_start_date + x_shift_days,
2254: x_period_type => x_time_phased_type_code,
2255: x_periods => x_periods,

Line 3392: END pa_budget_core;

3388: return;
3389: end copy_lines;
3390:
3391:
3392: END pa_budget_core;