DBA Data[Home] [Help]

APPS.ENG_CHANGE_TEXT_UTIL dependencies on DBMS_UTILITY

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

576: --Bug 4516938: We need to convert the db version string to be compativle with the
577: --numeric characters of that language. Eg. '9.2' need to be changed to '9F2'
578: -- in French before we can use it in TO_NUMBER
579:
580: DBMS_UTILITY.db_Version (g_DB_Version_Str, g_compatibility);
581: l_DB_Version_Str := SUBSTR(g_DB_Version_Str, 1, INSTR(g_DB_Version_Str, '.', 1, 2) - 1);
582: SELECT SUBSTR(VALUE,0,1) into l_DB_Numeric_Character
583: FROM V$NLS_PARAMETERS
584: Where PARAMETER = 'NLS_NUMERIC_CHARACTERS';