DBA Data[Home] [Help]

APPS.WIP_MASSLOAD_PUB dependencies on WIP_OPERATIONS

Line 461: from wip_operations

457: l_opFound boolean := false;
458:
459: cursor c_ops(v_wipEntityID number) is
460: select operation_seq_num
461: from wip_operations
462: where wip_entity_id = v_wipEntityID;
463:
464: begin
465: x_returnStatus := fnd_api.g_ret_sts_success;

Line 488: from wip_operations wo

484: set serialization_start_op = null
485: where wip_entity_id = l_wipEntityID
486: and serialization_start_op <> 1
487: and not exists(select 1
488: from wip_operations wo
489: where wo.wip_entity_id = wdj.wip_entity_id
490: and wo.operation_seq_num = wdj.serialization_start_op);
491: return;
492: end if;