DBA Data[Home] [Help]

APPS.MSC_GET_NAME dependencies on FND_LOOKUP_VALUES

Line 225: from fnd_lookup_values lv

221: and lookup_code = arg_lookup_code;
222: /*
223: select lv.meaning
224: into meaning_text
225: from fnd_lookup_values lv
226: where lv.language = userenv('LANG')
227: and lv.view_application_id =700
228: and lv.lookup_type = arg_lookup_type
229: and lv.lookup_code = to_char(arg_lookup_code)

Line 3056: from fnd_lookup_values

3052: end if;
3053:
3054: select meaning
3055: into meaning_text
3056: from fnd_lookup_values
3057: where lookup_type = arg_lookup_type
3058: and lookup_code = arg_lookup_code
3059: and view_application_id = arg_application_id
3060: and language = userenv('LANG')