DBA Data[Home] [Help]

APPS.GR_EXPOSURE_TYPES_TL_PKG dependencies on FND_LANGUAGES

Line 363: FROM fnd_languages lng

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

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

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

Line 836: FROM fnd_languages lng

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

Line 935: FROM fnd_languages lng

931:
932: CURSOR c_get_language_code
933: IS
934: SELECT lng.installed_flag
935: FROM fnd_languages lng
936: WHERE lng.language_code = p_language
937: AND lng.installed_flag IN ('B', 'I');
938: LangRecord c_get_language_code%ROWTYPE;
939:

Line 1177: from GR_EXPOSURE_TYPES_TL B, FND_LANGUAGES L

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