DBA Data[Home] [Help]

APPS.FTE_COMP_CONSTRAINT_UTIL dependencies on WSH_LOCATIONS

Line 81: wsh_locations wl, fte_location_parameters flp

77: 'ORGANIZATION' company_type,
78: nvl(nvl(flp.facility_code,wl.location_code),to_char(wl.wsh_location_id)) facility_code,
79: nvl(flp.description,wl.ui_location_code) description
80: FROM HR_ORGANIZATION_UNITS HAOU, HR_ORGANIZATION_INFORMATION HOI1, MTL_PARAMETERS MP,
81: wsh_locations wl, fte_location_parameters flp
82: WHERE haou.location_id = wl.source_location_id
83: AND wl.location_source_code = 'HR'
84: AND HAOU.ORGANIZATION_ID = HOI1.ORGANIZATION_ID
85: AND HAOU.ORGANIZATION_ID = MP.ORGANIZATION_ID

Line 100: wsh_locations wl,

96: nvl(nvl(flp.facility_code,wl.location_code),to_char(wl.wsh_location_id)) facility_code,
97: nvl(flp.description,wl.ui_location_code) description
98: from hz_parties hp , hz_party_sites hps,
99: hz_cust_acct_sites_all hcas,
100: wsh_locations wl,
101: fte_location_parameters flp
102: where hcas.party_site_id = hps.party_site_id
103: and hps.party_id = hp.party_id
104: AND hps.location_id = wl.source_location_id

Line 118: wsh_locations wl,

114: nvl(nvl(flp.facility_code,wl.location_code),to_char(wl.wsh_location_id)) facility_code,
115: nvl(flp.description,wl.ui_location_code) description
116: from hz_party_sites hps,
117: wsh_carriers_v wc,
118: wsh_locations wl,
119: fte_location_parameters flp
120: where hps.party_id = wc.carrier_id
121: AND hps.location_id = wl.source_location_id
122: and wl.location_source_code = 'HZ'

Line 137: wsh_locations wl,

133: FROM hz_parties hp ,
134: po_vendors po,
135: hz_relationships rel,
136: hz_party_sites hps,
137: wsh_locations wl,
138: fte_location_parameters flp
139: WHERE hps.party_id = hp.party_id
140: AND rel.relationship_type = 'POS_VENDOR_PARTY'
141: and rel.object_id = hp.party_id

Line 422: wsh_locations wl

418: cursor c_hr_details (p_locid VARCHAR2) is
419: select hou.organization_id company_id, hou.name company_name,
420: hou.name site, 'ORGANIZATION' company_type
421: FROM HR_ORGANIZATION_UNITS HOU, HR_ORGANIZATION_INFORMATION HOI1, MTL_PARAMETERS MP,
422: wsh_locations wl
423: WHERE hou.location_id = wl.source_location_id
424: AND wl.location_source_code = 'HR'
425: AND HOU.ORGANIZATION_ID = HOI1.ORGANIZATION_ID
426: AND HOU.ORGANIZATION_ID = MP.ORGANIZATION_ID

Line 436: from wsh_locations wl, hz_party_sites hps, wsh_carriers_v wc

432: cursor c_hz_details (p_locid VARCHAR2) is
433: select wc.carrier_id company_id, wc.carrier_name company_name,
434: wc.carrier_name||'/'||nvl(hps.party_site_name,hps.party_site_number)
435: site, 'CARRIER' company_type
436: from wsh_locations wl, hz_party_sites hps, wsh_carriers_v wc
437: where wl.source_location_id=hps.location_id
438: and hps.party_id=wc.carrier_id
439: and wl.location_source_code='HZ'
440: and wc.active='A'

Line 446: from wsh_locations wl, hz_party_sites hps, hz_parties hp,

442: union all
443: select hcas.cust_account_id company_id, hp.party_name company_name,
444: hp.party_name||'/'||nvl(hps.party_site_name,hps.party_site_number)
445: site, 'CUSTOMER' company_type
446: from wsh_locations wl, hz_party_sites hps, hz_parties hp,
447: hz_cust_acct_sites_all hcas
448: where wl.source_location_id=hps.location_id
449: and hps.party_id=hp.party_id
450: and wl.location_source_code='HZ'

Line 462: wsh_locations wl

458: FROM hz_parties hp ,
459: po_vendors po,
460: hz_relationships rel,
461: hz_party_sites hps,
462: wsh_locations wl
463: where wl.source_location_id=hps.location_id
464: and hps.party_id=hp.party_id
465: AND rel.relationship_type = 'POS_VENDOR_PARTY'
466: and rel.object_id = hp.party_id