DBA Data[Home] [Help]

APPS.MSC_GET_NAME dependencies on FND_LOOKUPS

Line 405: select meaning from fnd_lookups

401: return varchar2 IS
402: meaning_text varchar2(255);
403:
404: cursor cur_lookup(l_arg_lookup_type varchar2 ,l_arg_lookup_code NUMBER) is
405: select meaning from fnd_lookups
406: where lookup_type = l_arg_lookup_type
407: and lookup_code = l_arg_lookup_code;
408:
409: BEGIN

Line 4819: from fnd_lookups

4815: end if;
4816:
4817: select meaning
4818: into meaning_text
4819: from fnd_lookups
4820: where lookup_type = arg_lookup_type
4821: and lookup_code = arg_lookup_code;
4822:
4823: return meaning_text;