DBA Data[Home] [Help]

APPS.GR_MULTILINGUAL_NAME_TL_PKG dependencies on FND_LANGUAGES

Line 658: FROM fnd_languages lng

654:
655: CURSOR c_get_installed_languages
656: IS
657: SELECT lng.language_code
658: FROM fnd_languages lng
659: WHERE lng.installed_flag IN ('I', 'B');
660: InstLang c_get_installed_languages%ROWTYPE;
661:
662:

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

758: l_last_update_login := MLNameDesc.last_update_login;
759: CLOSE c_get_descs;
760: END IF;
761:
762: /* Read fnd_languages for the installed and base languages.
763: ** For those that are found, read the phrases tl table.
764: ** If there isn't a record in the table for that language then
765: ** insert it and go on to the next.
766: */

Line 1418: FROM fnd_languages lng

1414:
1415: CURSOR c_get_language
1416: IS
1417: SELECT lng.language_code
1418: FROM fnd_languages lng
1419: WHERE lng.language_code = l_language_code;
1420: LangRecord c_get_language%ROWTYPE;
1421:
1422: BEGIN

Line 1579: FROM fnd_languages lng

1575:
1576: CURSOR c_get_language_code
1577: IS
1578: SELECT lng.installed_flag
1579: FROM fnd_languages lng
1580: WHERE lng.language_code = p_language
1581: AND lng.installed_flag IN ('B', 'I');
1582: LangRecord c_get_language_code%ROWTYPE;
1583:

Line 1820: from GR_MULTILINGUAL_NAME_TL B, FND_LANGUAGES L

1816: B.LAST_UPDATE_DATE,
1817: B.LAST_UPDATE_LOGIN,
1818: L.LANGUAGE_CODE,
1819: B.SOURCE_LANG
1820: from GR_MULTILINGUAL_NAME_TL B, FND_LANGUAGES L
1821: where L.INSTALLED_FLAG in ('I', 'B')
1822: and B.LANGUAGE = userenv('LANG')
1823: and not exists
1824: (select NULL