597:
598: /* Bug 16375305: irrespective of profile value for icx numeric characters session
599: value is forced set to ',.'. Resetting value of this session parameter based
600: on value found in profile option */
601: IF FND_PROFILE.VALUE('ICX_NUMERIC_CHARACTERS') = ',.' THEN
602: execute immediate ('alter session set nls_numeric_characters ='',.''');
603: ELSE
604: execute immediate ('alter session set nls_numeric_characters =''.,''');
605: END IF;