DBA Data[Home] [Help]

APPS.GMD_API_GRP dependencies on FND_DESCRIPTIVE_FLEXS

Line 141: FROM fnd_descriptive_flexs

137: CURSOR cur_get_cont_name (
138: v_flex_field_name VARCHAR2
139: ,v_application_id NUMBER) IS
140: SELECT context_column_name, context_required_flag
141: FROM fnd_descriptive_flexs
142: WHERE application_id = v_application_id AND
143: descriptive_flexfield_name = v_flex_field_name;
144:
145: CURSOR cur_check_context (

Line 364: l_flex_name FND_DESCRIPTIVE_FLEXS.descriptive_flexfield_name%TYPE;

360: x_return_status OUT NOCOPY VARCHAR2
361: ) IS
362: l_field_value VARCHAR2 (240);
363: l_storage_value VARCHAR2 (240);
364: l_flex_name FND_DESCRIPTIVE_FLEXS.descriptive_flexfield_name%TYPE;
365: l_appl_id FND_APPLICATION.application_id%TYPE;
366: l_appl_name FND_APPLICATION.application_short_name%TYPE;
367:
368: /* Exception declaration */

Line 375: FROM fnd_descriptive_flexs

371: appl_name_not_found_exception EXCEPTION;
372:
373: CURSOR get_desc_flex_name(vTable_Name VARCHAR2) IS
374: SELECT descriptive_flexfield_name, application_id
375: FROM fnd_descriptive_flexs
376: WHERE application_table_name = vTable_name;
377:
378: CURSOR get_appl_short_name(vAppl_id NUMBER) IS
379: SELECT application_short_name