DBA Data[Home] [Help]

APPS.WSH_REGIONS_SEARCH_PKG dependencies on WSH_REGIONS_TL_INTERFACE

Line 473: ' from WSH_REGIONS_INTERFACE R, WSH_REGIONS_TL_INTERFACE TL';

469:
470:
471: IF (p_interface_flag = 'Y') THEN
472: sql_string := sql_string ||
473: ' from WSH_REGIONS_INTERFACE R, WSH_REGIONS_TL_INTERFACE TL';
474: ELSE
475: sql_string := sql_string ||
476: ' from WSH_REGIONS R, WSH_REGIONS_TL TL';
477: END IF;

Line 1161: ', WSH_REGIONS_TL_INTERFACE TL ';

1157:
1158: IF (p_interface_flag = 'Y') THEN
1159:
1160: sql_string := sql_string ||
1161: ', WSH_REGIONS_TL_INTERFACE TL ';
1162:
1163: ELSE
1164:
1165: sql_string := sql_string ||

Line 1699: FROM wsh_regions_interface r, wsh_regions_tl_interface t

1695: SELECT nvl(country, country_code) country,
1696: nvl(state,state_code) state,
1697: nvl(city,city_code) city,
1698: postal_code_from
1699: FROM wsh_regions_interface r, wsh_regions_tl_interface t
1700: WHERE r.region_id = t.region_id and r.creation_date >= l_processing_date
1701: ORDER BY country, state, city, postal_code_from;
1702:
1703: CURSOR get_loc_info (l_start_date DATE, l_end_date DATE) IS