Use below query to source org items from another org
select msib.segment1
from mtl_system_items_b msib,
org_organization_definitions ood
where msib.organization_id=ood.organization_id
AND msib.source_organization_id IN (select organization_id from org_organization_definitions where organization_code='XXX') -- Enter Source Org
AND ood.organization_code='YYY' -- Enter Query Org
Comments
Post a Comment