DBA Data[Home] [Help]

APPS.EAM_WO_VALIDATE_PVT dependencies on BOM_CALENDAR_DATES

Line 2281: from bom_calendar_dates bcd, mtl_parameters mp

2277: if p_eam_wo_rec.requested_start_date is not null then
2278:
2279: select 1
2280: into g_dummy
2281: from bom_calendar_dates bcd, mtl_parameters mp
2282: where mp.organization_id = p_eam_wo_rec.organization_id
2283: and mp.calendar_code = bcd.calendar_code
2284: and mp.calendar_exception_set_id = bcd.exception_set_id
2285: and bcd.calendar_date = trunc(p_eam_wo_rec.requested_start_date);

Line 2291: from bom_calendar_dates bcd, mtl_parameters mp

2287:
2288: if p_eam_wo_rec.due_date is not null then
2289: select 1
2290: into g_dummy
2291: from bom_calendar_dates bcd, mtl_parameters mp
2292: where mp.organization_id = p_eam_wo_rec.organization_id
2293: and mp.calendar_code = bcd.calendar_code
2294: and mp.calendar_exception_set_id = bcd.exception_set_id
2295: and bcd.calendar_date = trunc(p_eam_wo_rec.due_date);