DBA Data[Home] [Help]

APPS.EDW_BOM_RES_PKG dependencies on EDW_LOCAL_INSTANCE

Line 16: edw_local_instance inst

12: from mtl_parameters mp,
13: bom_departments dept,
14: bom_resources res,
15: bom_department_resources dept_res,
16: edw_local_instance inst
17: where mp.organization_id = dept.organization_id
18: and dept.department_id = nvl(dept_res.share_from_dept_id,
19: dept_res.department_id)
20: and res.resource_id = dept_res.resource_id

Line 27: edw_local_instance inst

23: CURSOR c2 is
24: select lines.line_code||'-'||mp.organization_code||'-'||inst.instance_code
25: from mtl_parameters mp,
26: wip_lines lines,
27: edw_local_instance inst
28: where mp.organization_id = lines.organization_id
29: and lines.line_id = p_dept_line_id;
30: BEGIN
31: if (p_dept_line_id is not NULL) then