DBA Data[Home] [Help]

APPS.WIP_FLOW_DERIVE dependencies on WIP_ENTITIES

Line 642: from wip_entities we

638: if (p_txn_src_id is null) and (p_txn_src_name is not null) then
639:
640: select wip_entity_id
641: into p_txn_src_id
642: from wip_entities we
643: where we.organization_id = p_org_id
644: and we.wip_entity_name = p_txn_src_name ;
645:
646: elsif (p_txn_src_id is not null) and (p_txn_src_name is null) then

Line 650: from wip_entities we

646: elsif (p_txn_src_id is not null) and (p_txn_src_name is null) then
647:
648: select wip_entity_name
649: into p_txn_src_name
650: from wip_entities we
651: where we.organization_id = p_org_id
652: and we.wip_entity_id = p_txn_src_id ;
653:
654: end if ;