EAM - Verify query
select wo.*
from
eam_work_orders_v wo
,wip_requirement_operations ro
WHERE ro.organization_id = 100
AND wo.organization_id = ro.organization_id
AND wo.wip_entity_id = ro.wip_entity_id
Can somebody validate if this query is fine? OR will there be any issue with this? Earlier query was without [AND wo.organization_id = ro.organization_id] . I have added this condition and wanted to make sure it should not have any issue. Please let me know