DBA Data[Home] [Help]

APPS.GR_SUB_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 := SubHdgRecord.last_update_login;
427: CLOSE c_get_sub_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 832: FROM fnd_languages lng

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

Line 927: FROM fnd_languages lng

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

Line 1100: from GR_SUB_HEADINGS_TL B, FND_LANGUAGES L

1096: B.LAST_UPDATED_BY,
1097: B.LAST_UPDATE_LOGIN,
1098: L.LANGUAGE_CODE,
1099: B.SOURCE_LANG
1100: from GR_SUB_HEADINGS_TL B, FND_LANGUAGES L
1101: where L.INSTALLED_FLAG in ('I', 'B')
1102: and B.LANGUAGE = userenv('LANG')
1103: and not exists
1104: (select NULL