DBA Data[Home] [Help]

APPS.PO_R12_CAT_UPG_UTL dependencies on FND_LANGUAGES

Line 10: g_base_language FND_LANGUAGES.language_code%TYPE := NULL;

6:
7: g_debug BOOLEAN := PO_R12_CAT_UPG_DEBUG.is_logging_enabled;
8: g_err_num NUMBER := PO_R12_CAT_UPG_PVT.g_application_err_num;
9:
10: g_base_language FND_LANGUAGES.language_code%TYPE := NULL;
11:
12: --------------------------------------------------------------------------------
13: --Start of Comments
14: --Name: add_fatal_error

Line 1182: FROM FND_LANGUAGES

1178: -- SQL Why : Will be used to populate the created_language column
1179: -- SQL Join: installed_flag
1180: SELECT language_code
1181: INTO g_base_language
1182: FROM FND_LANGUAGES
1183: WHERE installed_flag='B';
1184: END IF;
1185:
1186: l_progress := '030';

Line 1232: FROM FND_LANGUAGES

1228: -- SQL Why : Will be used to populate TLP records.
1229: -- SQL Join: installed_flag
1230: SELECT count(*)
1231: INTO l_num_languages
1232: FROM FND_LANGUAGES
1233: WHERE installed_flag IN ('B', 'I');
1234:
1235: l_progress := '020';
1236: IF g_debug THEN PO_R12_CAT_UPG_DEBUG.log_stmt(l_log_head,l_progress,'num_languages='||l_num_languages); END IF;