DBA Data[Home] [Help]

APPS.MSC_GET_BIS_VALUES dependencies on FND_FILE

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

2784: FETCH show_kpi INTO v_show_kpi,v_plan_type;
2785: CLOSE show_kpi;
2786:
2787: if nvl(v_show_kpi,1) = 1 then
2788: FND_FILE.PUT_LINE(FND_FILE.LOG,'--- refreshing summary data for kpi ---');
2789: msc_get_bis_values.refresh_data(l_err_buf, l_ret_code,p_plan_id, v_plan_type);
2790: else -- set kpi status as not refresh
2791: msc_get_bis_values.set_kpi_refresh_status(p_plan_id,'NOT REFRESH');
2792: end if;

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

2790: else -- set kpi status as not refresh
2791: msc_get_bis_values.set_kpi_refresh_status(p_plan_id,'NOT REFRESH');
2792: end if;
2793: exception when others then
2794: FND_FILE.PUT_LINE(FND_FILE.LOG,'refreshing kpi summary data fails');
2795: END refresh_kpi_data;
2796:
2797:
2798:

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

2821: p_plan_id number,
2822: p_plan_type number) IS
2823: p_request_id number;
2824: BEGIN
2825: FND_FILE.PUT_LINE(FND_FILE.LOG,'start refreshing');
2826: -- set kpi as refreshing
2827: set_kpi_refresh_status(p_plan_id,'REFRESHING');
2828:
2829: for a in 1..5 loop

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

2836: false,
2837: p_plan_id,
2838: a,
2839: p_plan_type);
2840: FND_FILE.PUT_LINE(FND_FILE.LOG,'request id is ='||p_request_id);
2841: end loop;
2842:
2843: commit;
2844: