DBA Data[Home] [Help]

APPS.CAC_SYNC_COMMON dependencies on FND_TERRITORIES_TL

Line 202: FROM fnd_territories_tl -- using TL since a match in any language will do

198: IS
199: CURSOR c_territory
200: (b_country IN VARCHAR2
201: )IS SELECT territory_code code
202: FROM fnd_territories_tl -- using TL since a match in any language will do
203: WHERE UPPER(b_country) = UPPER(territory_short_name)
204: OR UPPER(b_country) = UPPER(description)
205: OR UPPER(b_country) = UPPER(territory_code);
206: