DBA Data[Home] [Help]

APPS.EC_INBOUND_STAGE dependencies on FND_LOOKUPS

Line 215: -- Get the character set from the profile option and verify it with fnd_lookups,and database settings.

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.
216: -- bug 2110652
217:
218:
219: select value,decode(value,ec_inbound_stage.g_source_charset,'Y','N')

Line 234: from fnd_lookups

230: end if;
231:
232: select 'Y'
233: into i_fnd_charset_flag
234: from fnd_lookups
235: where lookup_type = 'FND_ISO_CHARACTER_SET_MAP'
236: and lookup_code = ec_inbound_stage.g_source_charset;
237:
238: if sql%notfound then

Line 239: ec_debug.pl(0,'Invalid Character Set specified in the FND_LOOKUPS');

235: where lookup_type = 'FND_ISO_CHARACTER_SET_MAP'
236: and lookup_code = ec_inbound_stage.g_source_charset;
237:
238: if sql%notfound then
239: ec_debug.pl(0,'Invalid Character Set specified in the FND_LOOKUPS');
240: EC_UTILS.i_ret_code := 2;
241: raise EC_UTILS.PROGRAM_EXIT;
242: end if;
243: