You are on page 1of 1

--alter session set current_schema = apps;

SELECT DISTINCT hrl.country,


hroutl_bg.NAME bg,
lep.legal_entity_id,
lep.NAME legal_entity,
hroutl_ou.NAME ou_name,
hroutl_ou.organization_id OU_ID,
ood.organization_code IO_Code,
ood.organization_name IO_Description,
ood.organization_id IO_ID
--hrl.location_id,
--hrl.location_code,
---glev.FLEX_SEGMENT_VALUE
FROM xle_entity_profiles lep,
xle_registrations reg,
hr_locations_all hrl,
hz_parties hzp,
fnd_territories_vl ter,
hr_operating_units hro,
hr_all_organization_units_tl hroutl_bg,
hr_all_organization_units_tl hroutl_ou,
hr_organization_units hou,
APPS.org_organization_definitions ood,
apps.mtl_parameters mp,
gl_legal_entities_bsvs glev
WHERE lep.transacting_entity_flag = 'Y'
and mp.organization_id = ood.organization_id
and ood.operating_unit = hro.organization_id
AND lep.party_id = hzp.party_id
AND lep.legal_entity_id = reg.source_id
and hroutl_bg.NAME = 'Setup Business Group'
AND reg.source_table = 'XLE_ENTITY_PROFILES'
AND hrl.location_id = reg.location_id
AND reg.identifying_flag = 'Y'
AND ter.territory_code = hrl.country
AND lep.legal_entity_id = hro.default_legal_context_id
AND hou.organization_id = hro.organization_id
AND hroutl_bg.organization_id = hro.business_group_id
AND hroutl_ou.organization_id = hro.organization_id
AND glev.legal_entity_id = lep.legal_entity_id
order by hrl.country, ood.organization_code

--select * from apps.mtl_parameters where rownum =1

You might also like