DBA Data[Home] [Help]

APPS.MSC_GET_NAME dependencies on FND_LOOKUPS

Line 299: select meaning from fnd_lookups

295: return varchar2 IS
296: meaning_text varchar2(255);
297:
298: cursor cur_lookup(l_arg_lookup_type varchar2 ,l_arg_lookup_code NUMBER) is
299: select meaning from fnd_lookups
300: where lookup_type = l_arg_lookup_type
301: and lookup_code = l_arg_lookup_code;
302:
303: BEGIN

Line 4347: from fnd_lookups

4343: end if;
4344:
4345: select meaning
4346: into meaning_text
4347: from fnd_lookups
4348: where lookup_type = arg_lookup_type
4349: and lookup_code = arg_lookup_code;
4350:
4351: return meaning_text;