Which table in Oracle Fusion serves same purpose as PO_LOCATION_ASSOCIATIONS_ALL in Oracle E-Busines
we need to migrate the below table(po_location_associations_all) of EBS to fusion.
SELECT
attribute18
FROM
po_location_associations_all la,
hr_locations_all l
WHERE
la.site_use_id = site_use.site_use_id
AND la.location_id = l.location_id
AND ROWNUM <= 1
0