DBA Data[Home] [Help]

APPS.EAM_WO_VALIDATE_PVT dependencies on BOM_CALENDAR_DATES

Line 2361: from bom_calendar_dates bcd, mtl_parameters mp

2357: if p_eam_wo_rec.requested_start_date is not null then
2358:
2359: select 1
2360: into g_dummy
2361: from bom_calendar_dates bcd, mtl_parameters mp
2362: where mp.organization_id = p_eam_wo_rec.organization_id
2363: and mp.calendar_code = bcd.calendar_code
2364: and mp.calendar_exception_set_id = bcd.exception_set_id
2365: and bcd.calendar_date = trunc(p_eam_wo_rec.requested_start_date);

Line 2371: from bom_calendar_dates bcd, mtl_parameters mp

2367:
2368: if p_eam_wo_rec.due_date is not null then
2369: select 1
2370: into g_dummy
2371: from bom_calendar_dates bcd, mtl_parameters mp
2372: where mp.organization_id = p_eam_wo_rec.organization_id
2373: and mp.calendar_code = bcd.calendar_code
2374: and mp.calendar_exception_set_id = bcd.exception_set_id
2375: and bcd.calendar_date = trunc(p_eam_wo_rec.due_date);