DBA Data[Home] [Help]

APPS.QA_MQA_MWA_API dependencies on HR_LOCATIONS_ALL_TL

Line 102: from wsh_delivery_details wdd, hr_locations_all_tl tl

98: wdd.customer_id = rc.customer_id;
99:
100: cursor ShipToLocation(lpnID NUMBER) is
101: select wdd.ship_to_location_id, tl.description
102: from wsh_delivery_details wdd, hr_locations_all_tl tl
103: where wdd.lpn_id = lpnID and
104: wdd.ship_to_location_id = tl.location_id and
105: tl.language = userenv('LANG')
106: union