DBA Data[Home] [Help]

APPS.ENG_ECO_COST dependencies on BOM_ORG_CAL_PERIODS_VIEW

Line 286: FROM bom_org_cal_periods_view

282: -- This will then be used to spread the rate based demand.
283: --
284: CURSOR cal_periods IS
285: SELECT period_start_date, next_date, period_name
286: FROM bom_org_cal_periods_view
287: WHERE organization_id = p_org_id
288: AND next_date > p_demand_date
289: AND period_start_date <= p_comp_date;
290:

Line 370: FROM bom_org_cal_periods_view

366: -- given start and end dates
367: --
368: CURSOR calendar_periods IS
369: SELECT period_start_date, next_date, period_name
370: FROM bom_org_cal_periods_view
371: WHERE organization_id = p_org_id
372: AND next_date >= p_start_date
373: AND period_start_date <= p_end_date;
374: