DBA Data[Home] [Help]

APPS.MSC_GET_BIS_VALUES dependencies on FND_FILE

Line 2777: FND_FILE.PUT_LINE(FND_FILE.LOG,'--- refreshing summary data for kpi ---');

2773: FETCH show_kpi INTO v_show_kpi,v_plan_type;
2774: CLOSE show_kpi;
2775:
2776: if nvl(v_show_kpi,1) = 1 then
2777: FND_FILE.PUT_LINE(FND_FILE.LOG,'--- refreshing summary data for kpi ---');
2778: msc_get_bis_values.refresh_data(l_err_buf, l_ret_code,p_plan_id, v_plan_type);
2779: else -- set kpi status as not refresh
2780: msc_get_bis_values.set_kpi_refresh_status(p_plan_id,'NOT REFRESH');
2781: end if;

Line 2783: FND_FILE.PUT_LINE(FND_FILE.LOG,'refreshing kpi summary data fails');

2779: else -- set kpi status as not refresh
2780: msc_get_bis_values.set_kpi_refresh_status(p_plan_id,'NOT REFRESH');
2781: end if;
2782: exception when others then
2783: FND_FILE.PUT_LINE(FND_FILE.LOG,'refreshing kpi summary data fails');
2784: END refresh_kpi_data;
2785:
2786:
2787:

Line 2814: FND_FILE.PUT_LINE(FND_FILE.LOG,'start refreshing');

2810: p_plan_id number,
2811: p_plan_type number) IS
2812: p_request_id number;
2813: BEGIN
2814: FND_FILE.PUT_LINE(FND_FILE.LOG,'start refreshing');
2815: -- set kpi as refreshing
2816: set_kpi_refresh_status(p_plan_id,'REFRESHING');
2817:
2818: for a in 1..5 loop

Line 2829: FND_FILE.PUT_LINE(FND_FILE.LOG,'request id is ='||p_request_id);

2825: false,
2826: p_plan_id,
2827: a,
2828: p_plan_type);
2829: FND_FILE.PUT_LINE(FND_FILE.LOG,'request id is ='||p_request_id);
2830: end loop;
2831:
2832: commit;
2833: