DBA Data[Home] [Help]

APPS.GR_GENERIC_ML_NAME_TL_PKG dependencies on FND_LANGUAGES

Line 665: FROM fnd_languages lng

661:
662: CURSOR c_get_installed_languages
663: IS
664: SELECT lng.language_code
665: FROM fnd_languages lng
666: WHERE lng.installed_flag IN ('I', 'B');
667: InstLang c_get_installed_languages%ROWTYPE;
668:
669:

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

764: l_last_update_login := GenericDesc.last_update_login;
765: CLOSE c_get_descs;
766: END IF;
767:
768: /* Read fnd_languages for the installed and base languages.
769: ** For those that are found, read the phrases tl table.
770: ** If there isn't a record in the table for that language then
771: ** insert it and go on to the next.
772: */

Line 1450: FROM fnd_languages lng

1446:
1447: CURSOR c_get_language
1448: IS
1449: SELECT lng.language_code
1450: FROM fnd_languages lng
1451: WHERE lng.language_code = l_language_code;
1452: LangRecord c_get_language%ROWTYPE;
1453:
1454: BEGIN

Line 1626: FROM fnd_languages lng

1622:
1623: CURSOR c_get_language_code
1624: IS
1625: SELECT lng.installed_flag
1626: FROM fnd_languages lng
1627: WHERE lng.language_code = p_language
1628: AND lng.installed_flag IN ('B', 'I');
1629: LangRecord c_get_language_code%ROWTYPE;
1630:

Line 1876: from GR_GENERIC_ML_NAME_TL B, FND_LANGUAGES L

1872: B.ATTRIBUTE8,
1873: B.ATTRIBUTE9,
1874: L.LANGUAGE_CODE,
1875: B.SOURCE_LANG
1876: from GR_GENERIC_ML_NAME_TL B, FND_LANGUAGES L
1877: where L.INSTALLED_FLAG in ('I', 'B')
1878: and B.LANGUAGE = userenv('LANG')
1879: and not exists
1880: (select NULL