DBA Data[Home] [Help]

APPS.WIP_OPERATION_DEFAULT dependencies on BOM_STANDARD_OPERATIONS

Line 133: from bom_standard_operations

129: IF p_standard_operation_id IS NOT NULL
130: AND p_standard_operation_id IS NOT NULL THEN
131:
132: select count(*) into l_standard_oper
133: from bom_standard_operations
134: where standard_operation_id = p_standard_operation_id
135: and organization_id = p_organization_id;
136:
137: IF l_standard_oper = 1 THEN

Line 143: FROM BOM_STANDARD_OPERATIONS

139: count_point_type, operation_description,
140: backflush_flag
141: INTO l_department_id, l_min_xfer_qty, l_count_point_type,
142: l_operation_description, l_backflush_flag
143: FROM BOM_STANDARD_OPERATIONS
144: WHERE standard_operation_id = p_standard_operation_id
145: AND organization_id = p_organization_id;
146: END IF;
147: