DBA Data[Home] [Help]

APPS.OKC_REP_SEARCH_UTIL_PVT dependencies on FND_LOOKUPS

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

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

Line 684: FROM fnd_lookups

680: -- query in its own block in order to catch No Data Found
681: -- exceptions.
682: SELECT meaning
683: INTO l_intent
684: FROM fnd_lookups
685: WHERE lookup_type = 'OKC_REP_CONTRACT_INTENTS'
686: AND lookup_code = p_intent_code;
687:
688: