DBA Data[Home] [Help]

APPS.GR_TOXIC_ROUTES_TL_PKG dependencies on FND_LANGUAGES

Line 366: FROM fnd_languages lng

362:
363: CURSOR c_get_installed_languages
364: IS
365: SELECT lng.language_code
366: FROM fnd_languages lng
367: WHERE lng.installed_flag IN ('I', 'B');
368: InstLang c_get_installed_languages%ROWTYPE;
369:
370:

Line 432: /* Read fnd_languages for the installed and base languages.

428: l_last_update_login := RouteDesc.last_update_login;
429: CLOSE c_get_descs;
430: END IF;
431:
432: /* Read fnd_languages for the installed and base languages.
433: ** For those that are found, read the labels tl table.
434: ** If there isn't a record in the table for that language then
435: ** insert it and go on to the next.
436: */

Line 841: FROM fnd_languages lng

837:
838: CURSOR c_get_language
839: IS
840: SELECT lng.language_code
841: FROM fnd_languages lng
842: WHERE lng.language_code = l_language_code;
843: LangRecord c_get_language%ROWTYPE;
844:
845: BEGIN

Line 940: FROM fnd_languages lng

936:
937: CURSOR c_get_language_code
938: IS
939: SELECT lng.installed_flag
940: FROM fnd_languages lng
941: WHERE lng.language_code = p_language
942: AND lng.installed_flag IN ('B', 'I');
943: LangRecord c_get_language_code%ROWTYPE;
944:

Line 1184: from GR_TOXIC_ROUTES_TL B, FND_LANGUAGES L

1180: B.LAST_UPDATE_DATE,
1181: B.LAST_UPDATE_LOGIN,
1182: L.LANGUAGE_CODE,
1183: B.SOURCE_LANG
1184: from GR_TOXIC_ROUTES_TL B, FND_LANGUAGES L
1185: where L.INSTALLED_FLAG in ('I', 'B')
1186: and B.LANGUAGE = userenv('LANG')
1187: and not exists
1188: (select NULL