DBA Data[Home] [Help]

APPS.GR_LABELS_TL_PKG dependencies on FND_LANGUAGES

Line 365: FROM fnd_languages lng

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

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

428: l_last_update_login := LabelDesc.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 835: FROM fnd_languages lng

831:
832: CURSOR c_get_language
833: IS
834: SELECT lng.language_code
835: FROM fnd_languages lng
836: WHERE lng.language_code = l_language_code;
837: LangRecord c_get_language%ROWTYPE;
838:
839: BEGIN

Line 930: FROM fnd_languages lng

926:
927: CURSOR c_get_language_code
928: IS
929: SELECT lng.installed_flag
930: FROM fnd_languages lng
931: WHERE lng.language_code = p_language
932: AND lng.installed_flag IN ('B', 'I');
933: LangRecord c_get_language_code%ROWTYPE;
934:

Line 1196: from FND_LANGUAGES L

1192: l_sysdate,
1193: 0,
1194: L.LANGUAGE_CODE,
1195: userenv('LANG')
1196: from FND_LANGUAGES L
1197: where L.INSTALLED_FLAG in ('I', 'B')
1198: and not exists
1199: (select NULL
1200: from GR_LABELS_TL T

Line 1262: from GR_LABELS_TL B, FND_LANGUAGES L

1258: B.LAST_UPDATE_DATE,
1259: B.LAST_UPDATE_LOGIN,
1260: L.LANGUAGE_CODE,
1261: B.SOURCE_LANG
1262: from GR_LABELS_TL B, FND_LANGUAGES L
1263: where L.INSTALLED_FLAG in ('I', 'B')
1264: and B.LANGUAGE = userenv('LANG')
1265: and not exists
1266: (select NULL