DBA Data[Home] [Help]

APPS.EGO_ITEM_TEXT_UTIL dependencies on DBMS_UTILITY

Line 1275: DBMS_UTILITY.db_Version (g_DB_Version_Str, g_compatibility);

1271: -------------------------
1272: --Bug 4045988: We need to convert the db version string to be compativle with the
1273: --numeric characters of that language. Eg. '9.2' need to be changed to '9F2'
1274: -- in French before we can use it in TO_NUMBER
1275: DBMS_UTILITY.db_Version (g_DB_Version_Str, g_compatibility);
1276: l_DB_Version_Str := SUBSTR(g_DB_Version_Str, 1, INSTR(g_DB_Version_Str, '.', 1, 2) - 1);
1277: SELECT SUBSTR(VALUE,0,1) into l_DB_Numeric_Character
1278: FROM V$NLS_PARAMETERS
1279: Where PARAMETER = 'NLS_NUMERIC_CHARACTERS';