DBA Data[Home] [Help]

APPS.MRP_CL_FUNCTION dependencies on BOM_OPERATION_SEQUENCES

Line 641: from bom_operation_sequences

637:
638: Begin
639: select reverse_cumulative_yield
640: into lv_rev_cum
641: from bom_operation_sequences
642: where operation_sequence_id = v_operation_sequence_id;
643:
644: Exception
645: WHEN NO_DATA_FOUND THEN RETURN 1;

Line 691: bom_operation_sequences bos

687:
688: CURSOR c_rev_cum IS
689: SELECT bos.reverse_cumulative_yield
690: FROM wip_operations wo,
691: bom_operation_sequences bos
692: WHERE wo.wip_entity_id = p_wip_entity_id
693: AND wo.organization_id = p_org_id
694: AND (wo.quantity_in_queue <> 0 or
695: wo.quantity_running <> 0 or

Line 772: from bom_operation_sequences

768:
769: Begin
770: select reverse_cumulative_yield
771: into lv_rev_cum
772: from bom_operation_sequences
773: where operation_sequence_id = v_operation_sequence_id;
774:
775: Exception
776: