DBA Data[Home] [Help]

APPS.GMS_PA_API3 dependencies on GMS_ERROR_PKG

Line 2576: gms_error_pkg.gms_debug(' ARGUMENTS RECEIVED:: p_ind_rate_sch_id:' || p_ind_rate_sch_id || ',p_award_id:' || p_award_id, 'C');

2572: begin
2573: L_DEBUG := NVL(FND_PROFILE.value('GMS_ENABLE_DEBUG_MODE'), 'N'); -- to generate debug messages
2574:
2575: IF L_DEBUG = 'Y' THEN
2576: gms_error_pkg.gms_debug(' ARGUMENTS RECEIVED:: p_ind_rate_sch_id:' || p_ind_rate_sch_id || ',p_award_id:' || p_award_id, 'C');
2577: gms_error_pkg.gms_debug(',p_project_id:' || p_project_id || ',p_task_id:' || p_task_id || ',p_idc_schedule_fixed_date:' || p_idc_schedule_fixed_date, 'C');
2578: gms_error_pkg.gms_debug(',p_calling_form:' || p_calling_form || ',p_event:' || p_event, 'C');
2579: END IF;
2580:

Line 2577: gms_error_pkg.gms_debug(',p_project_id:' || p_project_id || ',p_task_id:' || p_task_id || ',p_idc_schedule_fixed_date:' || p_idc_schedule_fixed_date, 'C');

2573: L_DEBUG := NVL(FND_PROFILE.value('GMS_ENABLE_DEBUG_MODE'), 'N'); -- to generate debug messages
2574:
2575: IF L_DEBUG = 'Y' THEN
2576: gms_error_pkg.gms_debug(' ARGUMENTS RECEIVED:: p_ind_rate_sch_id:' || p_ind_rate_sch_id || ',p_award_id:' || p_award_id, 'C');
2577: gms_error_pkg.gms_debug(',p_project_id:' || p_project_id || ',p_task_id:' || p_task_id || ',p_idc_schedule_fixed_date:' || p_idc_schedule_fixed_date, 'C');
2578: gms_error_pkg.gms_debug(',p_calling_form:' || p_calling_form || ',p_event:' || p_event, 'C');
2579: END IF;
2580:
2581: x_last_updated_by := FND_GLOBAL.USER_ID;

Line 2578: gms_error_pkg.gms_debug(',p_calling_form:' || p_calling_form || ',p_event:' || p_event, 'C');

2574:
2575: IF L_DEBUG = 'Y' THEN
2576: gms_error_pkg.gms_debug(' ARGUMENTS RECEIVED:: p_ind_rate_sch_id:' || p_ind_rate_sch_id || ',p_award_id:' || p_award_id, 'C');
2577: gms_error_pkg.gms_debug(',p_project_id:' || p_project_id || ',p_task_id:' || p_task_id || ',p_idc_schedule_fixed_date:' || p_idc_schedule_fixed_date, 'C');
2578: gms_error_pkg.gms_debug(',p_calling_form:' || p_calling_form || ',p_event:' || p_event, 'C');
2579: END IF;
2580:
2581: x_last_updated_by := FND_GLOBAL.USER_ID;
2582: x_last_update_login := FND_GLOBAL.LOGIN_ID;

Line 2587: gms_error_pkg.gms_debug('p_idc_schedule_fixed_date is null', 'C');

2583: x_request_id := FND_GLOBAL.CONC_REQUEST_ID;
2584:
2585: if p_idc_schedule_fixed_date is null then -- mark only those enc items for recalc where enc date falls between any of the revisions of associated burden schedule
2586: IF L_DEBUG = 'Y' THEN
2587: gms_error_pkg.gms_debug('p_idc_schedule_fixed_date is null', 'C');
2588: END IF;
2589:
2590: begin
2591: l_test := 0;

Line 2616: gms_error_pkg.gms_debug('Call is from OVERRIDE SCHEDULES SCREEN', 'C');

2612: end if;
2613:
2614: if p_calling_form = 'GMSICOVR' then -- call from override schedule screen
2615: IF L_DEBUG = 'Y' THEN
2616: gms_error_pkg.gms_debug('Call is from OVERRIDE SCHEDULES SCREEN', 'C');
2617: END IF;
2618:
2619: UPDATE gms_encumbrance_items_all ITEM
2620: SET ITEM.enc_distributed_flag = 'N',

Line 2671: gms_error_pkg.gms_debug('Call is from AWARD MANAGEMENT SCREEN', 'C');

2667:
2668: elsif p_calling_form = 'GMSAWEAW' then -- call from award management compliance tab
2669:
2670: IF L_DEBUG = 'Y' THEN
2671: gms_error_pkg.gms_debug('Call is from AWARD MANAGEMENT SCREEN', 'C');
2672: END IF;
2673:
2674: UPDATE gms_encumbrance_items_all ITEM
2675: SET ITEM.enc_distributed_flag = 'N',

Line 2706: gms_error_pkg.gms_debug('p_idc_schedule_fixed_date is not null', 'C');

2702:
2703: end if;
2704: else -- p_idc_schedule_fixed_date is not null, mark all associated enc items for recalc
2705: IF L_DEBUG = 'Y' THEN
2706: gms_error_pkg.gms_debug('p_idc_schedule_fixed_date is not null', 'C');
2707: END IF;
2708:
2709: if p_calling_form = 'GMSICOVR' then -- call from override schedule screen
2710:

Line 2712: gms_error_pkg.gms_debug('call is from override schedule screen', 'C');

2708:
2709: if p_calling_form = 'GMSICOVR' then -- call from override schedule screen
2710:
2711: IF L_DEBUG = 'Y' THEN
2712: gms_error_pkg.gms_debug('call is from override schedule screen', 'C');
2713: END IF;
2714:
2715: UPDATE gms_encumbrance_items_all ITEM
2716: SET ITEM.enc_distributed_flag = 'N',

Line 2765: gms_error_pkg.gms_debug('Call is from award management screen', 'C');

2761:
2762: elsif p_calling_form = 'GMSAWEAW' then -- call from award management compliance tab
2763:
2764: IF L_DEBUG = 'Y' THEN
2765: gms_error_pkg.gms_debug('Call is from award management screen', 'C');
2766: END IF;
2767:
2768: UPDATE gms_encumbrance_items_all ITEM
2769: SET ITEM.enc_distributed_flag = 'N',

Line 2800: gms_error_pkg.gms_debug('IN EXCEPTION BLOCK', 'C');

2796: end if;
2797: exception
2798: when others then
2799: IF L_DEBUG = 'Y' THEN
2800: gms_error_pkg.gms_debug('IN EXCEPTION BLOCK', 'C');
2801: END IF;
2802: errbuf := sqlcode;
2803: retcode := sqlerrm;
2804: end mark_enc_items_for_recalc;

Line 2845: gms_error_pkg.gms_debug('Results already available for task_id:' || g_task_id_tab(indx) || ',value:' || g_test_tab(indx), 'C');

2841: begin
2842:
2843: FOR indx in 1..g_task_id_tab.count loop
2844: if g_task_id_tab(indx) = p_item_task_id then
2845: gms_error_pkg.gms_debug('Results already available for task_id:' || g_task_id_tab(indx) || ',value:' || g_test_tab(indx), 'C');
2846: return g_test_tab(indx);
2847: end if;
2848: end loop;
2849:

Line 2850: gms_error_pkg.gms_debug('First Call to task_id:' || p_item_task_id, 'C');

2846: return g_test_tab(indx);
2847: end if;
2848: end loop;
2849:
2850: gms_error_pkg.gms_debug('First Call to task_id:' || p_item_task_id, 'C');
2851: if p_task_id is NULL then
2852:
2853: begin
2854: l_test := 0;