DBA Data[Home] [Help]

APPS.OKC_REP_SEARCH_UTIL_PVT dependencies on FND_LOOKUPS

Line 684: -- there is no entry in fnd_lookups for that intent code and lookup

680: -- Append the document type to the attribute list.
681: x_attrs := l_doc_type || ',';
682:
683: -- 2. Get the document intent. If the intent is null (meaning that
684: -- there is no entry in fnd_lookups for that intent code and lookup
685: -- type), set the intent to be the intent code. We nest the
686: -- query in its own block in order to catch No Data Found
687: -- exceptions.
688: SELECT meaning

Line 690: FROM fnd_lookups

686: -- query in its own block in order to catch No Data Found
687: -- exceptions.
688: SELECT meaning
689: INTO l_intent
690: FROM fnd_lookups
691: WHERE lookup_type = 'OKC_REP_CONTRACT_INTENTS'
692: AND lookup_code = p_intent_code;
693:
694: