DBA Data[Home] [Help]

APPS.FND_DFLEX dependencies on FND_DESCR_FLEX_CONTEXTS

Line 104: FROM fnd_descr_flex_contexts_vl

100: CURSOR context_c IS
101: SELECT /* $Header: AFFFDDUB.pls 120.2.12010000.1 2008/07/25 14:13:42 appldev ship $ */
102: descriptive_flex_context_code, descriptive_flex_context_name,
103: description, global_flag, enabled_flag
104: FROM fnd_descr_flex_contexts_vl
105: WHERE application_id = flexfield.application_id
106: AND descriptive_flexfield_name = flexfield.flexfield_name
107: ORDER BY descriptive_flex_context_code;
108: i BINARY_INTEGER := 0;

Line 130: context_code IN fnd_descr_flex_contexts.descriptive_flex_context_code%TYPE)

126:
127:
128: /* since we don't have arrays of structures, provide a way to make a context structure */
129: FUNCTION make_context(flexfield IN dflex_r,
130: context_code IN fnd_descr_flex_contexts.descriptive_flex_context_code%TYPE)
131: RETURN context_r
132: IS
133: rv context_r;
134: BEGIN