DBA Data[Home] [Help]

APPS.OKC_UTIL dependencies on FND_LOOKUP_VALUES

Line 3163: from FND_LOOKUP_VALUES

3159: p_lookup_code varchar2) return varchar2 is
3160: --
3161: cursor csr_lookup is -- /striping/ only for p_lookup_type = 'OKC_RULE_DEF'
3162: select meaning
3163: from FND_LOOKUP_VALUES
3164: where language = userenv('LANG')
3165: and NVL(enabled_flag,'N') = 'Y'
3166: and lookup_type = p_lookup_type
3167: and lookup_code = p_lookup_code;

Line 3266: from FND_LOOKUP_VALUES

3262: --******************************************************************************
3263: --
3264: cursor csr_lookup is
3265: select description
3266: from FND_LOOKUP_VALUES
3267: where language = userenv('LANG')
3268: and lookup_type = p_lookup_type
3269: and lookup_code = p_lookup_code;
3270: