DBA Data[Home] [Help]

APPS.GR_MAIN_HEADINGS_TL_PKG dependencies on FND_LANGUAGES

Line 364: FROM fnd_languages lng

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

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

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

Line 833: FROM fnd_languages lng

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

Line 928: FROM fnd_languages lng

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

Line 1176: from GR_MAIN_HEADINGS_TL B, FND_LANGUAGES L

1172: B.MAIN_HEADING_DESCRIPTION,
1173: B.CREATED_BY,
1174: L.LANGUAGE_CODE,
1175: B.SOURCE_LANG
1176: from GR_MAIN_HEADINGS_TL B, FND_LANGUAGES L
1177: where L.INSTALLED_FLAG in ('I', 'B')
1178: and B.LANGUAGE = userenv('LANG')
1179: and not exists
1180: (select NULL