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.23.12020000.3 2012/12/07 10:40:41 tvala 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 352: print_msg('PA_BUDGET_CORE.BASELINE- Inside');

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

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

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

Line 760: pa_budget_core.copy_lines(x_draft_version_id,

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

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

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

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

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

Line 1898: pa_budget_core.copy_lines(x_src_version_id,

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

Line 2255: pa_budget_core.get_periods(

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

Line 3396: END pa_budget_core;

3392: return;
3393: end copy_lines;
3394:
3395:
3396: END pa_budget_core;