DBA Data[Home] [Help]

APPS.CE_FORECAST_UTILS dependencies on CE_FORECAST_ERRORS

Line 183: from ce_forecast_errors

179: end if;
180:
181: select count(1)
182: into l_count
183: from ce_forecast_errors
184: where forecast_id = X_forecast_id;
185:
186: if l_count > 0 then
187: delete from ce_forecast_errors where forecast_id = X_forecast_id;

Line 187: delete from ce_forecast_errors where forecast_id = X_forecast_id;

183: from ce_forecast_errors
184: where forecast_id = X_forecast_id;
185:
186: if l_count > 0 then
187: delete from ce_forecast_errors where forecast_id = X_forecast_id;
188: end if;
189:
190: END Delete_Forecast_Children;
191: