DBA Data[Home] [Help]

APPS.JG_ZZ_COMMON_PKG dependencies on XLE_ENTITY_PROFILES

Line 276: ,xle_entity_profiles XEP

272: ,hp.party_id
273: -- Adding code for the GLOB006-ER
274: ,HL.region_1
275: FROM xle_registrations XR
276: ,xle_entity_profiles XEP
277: ,hr_locations_all HL
278: ,hz_parties HP
279: ,fnd_territories_vl FT
280: WHERE XR.source_id = XEP.legal_entity_id

Line 281: AND XR.source_table = 'XLE_ENTITY_PROFILES'

277: ,hr_locations_all HL
278: ,hz_parties HP
279: ,fnd_territories_vl FT
280: WHERE XR.source_id = XEP.legal_entity_id
281: AND XR.source_table = 'XLE_ENTITY_PROFILES'
282: AND XEP.legal_entity_id = pn_legal_entity_id
283: AND XR.location_id = HL.location_id
284: AND HL.country = FT.TERRITORY_CODE
285: AND XEP.party_id = HP.party_id

Line 323: from XLE_REGISTRATIONS xler, XLE_JURISDICTIONS_B xlej, xle_entity_profiles xlee

319:
320: /* Added for GLOBE-006 ER*/
321: CURSOR lc_commercial_num IS
322: select nvl(xler.registration_number,'') commercial_number
323: from XLE_REGISTRATIONS xler, XLE_JURISDICTIONS_B xlej, xle_entity_profiles xlee
324: where xlej.JURISDICTION_ID= xler.JURISDICTION_ID
325: and xlej.LEGISLATIVE_CAT_CODE = 'COMMERCIAL_LAW'
326: AND xler.source_id = xlee.LEGAL_ENTITY_ID
327: AND xler.source_TABLE = 'XLE_ENTITY_PROFILES'

Line 327: AND xler.source_TABLE = 'XLE_ENTITY_PROFILES'

323: from XLE_REGISTRATIONS xler, XLE_JURISDICTIONS_B xlej, xle_entity_profiles xlee
324: where xlej.JURISDICTION_ID= xler.JURISDICTION_ID
325: and xlej.LEGISLATIVE_CAT_CODE = 'COMMERCIAL_LAW'
326: AND xler.source_id = xlee.LEGAL_ENTITY_ID
327: AND xler.source_TABLE = 'XLE_ENTITY_PROFILES'
328: and xlee.legal_entity_id = pn_legal_entity_id;
329:
330: ln_party_id HZ_PARTIES.party_id%TYPE;
331:

Line 498: ,xle_entity_profiles XEP

494:
495: SELECT HL.country
496: INTO l_country_code
497: FROM xle_registrations XR
498: ,xle_entity_profiles XEP
499: ,hr_locations_all HL
500: WHERE XR.source_id = XEP.legal_entity_id
501: AND XR.source_table = 'XLE_ENTITY_PROFILES'
502: AND XEP.legal_entity_id = p_legal_entity_id

Line 501: AND XR.source_table = 'XLE_ENTITY_PROFILES'

497: FROM xle_registrations XR
498: ,xle_entity_profiles XEP
499: ,hr_locations_all HL
500: WHERE XR.source_id = XEP.legal_entity_id
501: AND XR.source_table = 'XLE_ENTITY_PROFILES'
502: AND XEP.legal_entity_id = p_legal_entity_id
503: AND XR.location_id = HL.location_id
504: AND xr.identifying_flag = 'Y';
505: