DBA Data[Home] [Help]

APPS.WIP_FLOW_DERIVE dependencies on WIP_ENTITIES

Line 633: from wip_entities we

629: if (p_txn_src_id is null) and (p_txn_src_name is not null) then
630:
631: select wip_entity_id
632: into p_txn_src_id
633: from wip_entities we
634: where we.organization_id = p_org_id
635: and we.wip_entity_name = p_txn_src_name ;
636:
637: elsif (p_txn_src_id is not null) and (p_txn_src_name is null) then

Line 641: from wip_entities we

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