Intercompany Organizations
Hello,
Can someone help to understand the underlying table for Intercompany Organiations in 11i and R12?
What I understood is all GIS Subsidiaries are upgraded to Intercompany Organizations in R12 when I run this query the counts do not match between 11i and R12. Is there anything I am missing?
SELECT COUNT(*)
FROM apps.GL_IEA_SUBSIDIARIES
WHERE ENABLED_FLAG='Y' -- 11i query
SELECT COUNT(*)
FROM AR.HZ_PARTIES HZP,
AR.PARTY_USG_ASSIGNMENTS HUA
WHERE HUA.PARTY_ID=HZP.PARTY_ID
AND HUA.PARTY_USAGE_CODE='INTERCOMPANY_ORG'
0