DBA Data[Home] [Help]

APPS.WIP_WS_UTIL dependencies on MTL_PARAMETERS

Line 486: from mtl_parameters

482: l_calendar_code varchar2(10);
483: begin
484: select calendar_code
485: into l_calendar_code
486: from mtl_parameters
487: where organization_id = p_org_id;
488:
489: return l_calendar_code;
490: end get_calendar_code;

Line 513: from bom_shift_times bst, mtl_parameters mp

509: from bom_shift_dates bsd,
510: (select min(bst.from_time) from_time,
511: max(bst.to_time + decode(sign(to_time - from_time), -1, 24*60*60, 0)) to_time,
512: mp.calendar_code
513: from bom_shift_times bst, mtl_parameters mp
514: where bst.calendar_code = mp.calendar_code and
515: mp.organization_id = p_org_id and
516: bst.shift_num = p_shift_num
517: group by mp.calendar_code

Line 775: bom_shift_times bst, mtl_parameters mp

771: cursor c_shift_periods(p_cal_code varchar2, p_date date, p_dept_id number, p_resource_id number)
772: is
773: select bsd.shift_date, bst.from_time, bst.to_time
774: from bom_shift_dates bsd, bom_resource_shifts brs,
775: bom_shift_times bst, mtl_parameters mp
776: where mp.organization_id = p_organization_id and
777: bsd.calendar_code = p_cal_code and
778: bsd.exception_set_id = mp.calendar_exception_set_id and
779: bsd.shift_date >= trunc(p_date) - 1 and