DBA Data[Home] [Help]

APPS.EC_INBOUND_STAGE dependencies on V$NLS_PARAMETERS

Line 211: from v$nls_parameters

207:
208: if ec_inbound_stage.g_source_charset IS NULL then
209: select value
210: into ec_inbound_stage.g_source_charset
211: from v$nls_parameters
212: where parameter='NLS_CHARACTERSET';
213: end if;
214:
215: -- Get the character set from the profile option and verify it with fnd_lookups,and database settings.

Line 221: from v$nls_parameters

217:
218:
219: select value,decode(value,ec_inbound_stage.g_source_charset,'Y','N')
220: into i_db_charset,i_db_charset_flag
221: from v$nls_parameters
222: where parameter = 'NLS_CHARACTERSET';
223:
224: if sql%notfound then
225: ec_debug.pl(0,'Characterset not not same as defined in Database');