DBA Data[Home] [Help]

APPS.WIP_EAM_WORKREQUEST_PVT dependencies on FND_DFLEX

Line 545: flexfield fnd_dflex.dflex_r;

541: attribute_name IN fnd_descr_flex_col_usage_vl.end_user_column_name%TYPE ,
542: attribute_category IN fnd_descr_flex_contexts.descriptive_flex_context_code%TYPE := 'Global Data Elements')
543: RETURN fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE IS
544:
545: flexfield fnd_dflex.dflex_r;
546: flexinfo fnd_dflex.dflex_dr;
547: context fnd_dflex.context_r;
548: segments fnd_dflex.segments_dr;
549: l_prompt fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE;

Line 546: flexinfo fnd_dflex.dflex_dr;

542: attribute_category IN fnd_descr_flex_contexts.descriptive_flex_context_code%TYPE := 'Global Data Elements')
543: RETURN fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE IS
544:
545: flexfield fnd_dflex.dflex_r;
546: flexinfo fnd_dflex.dflex_dr;
547: context fnd_dflex.context_r;
548: segments fnd_dflex.segments_dr;
549: l_prompt fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE;
550: l_i number;

Line 547: context fnd_dflex.context_r;

543: RETURN fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE IS
544:
545: flexfield fnd_dflex.dflex_r;
546: flexinfo fnd_dflex.dflex_dr;
547: context fnd_dflex.context_r;
548: segments fnd_dflex.segments_dr;
549: l_prompt fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE;
550: l_i number;
551:

Line 548: segments fnd_dflex.segments_dr;

544:
545: flexfield fnd_dflex.dflex_r;
546: flexinfo fnd_dflex.dflex_dr;
547: context fnd_dflex.context_r;
548: segments fnd_dflex.segments_dr;
549: l_prompt fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE;
550: l_i number;
551:
552: BEGIN

Line 554: fnd_dflex.get_flexfield(appl_short_name => appl_short_name,

550: l_i number;
551:
552: BEGIN
553:
554: fnd_dflex.get_flexfield(appl_short_name => appl_short_name,
555: flexfield_name => flexfield_name,
556: flexfield => flexfield,
557: flexinfo => flexinfo);
558:

Line 564: fnd_dflex.get_segments(context => context,

560: context.context_code := attribute_category;
561: if (attribute_category is NULL OR attribute_category =' ') THEN
562: context.context_code := 'Global Data Elements';
563: END IF;
564: fnd_dflex.get_segments(context => context,
565: segments => segments);
566: l_prompt := NULL;
567:
568: FOR l_i IN 1..segments.nsegments LOOP

Line 576: fnd_dflex.get_segments(context => context,

572: END LOOP;
573:
574: IF l_prompt is NULL AND attribute_name IS NOT NULL THEN
575: context.context_code := 'Global Data Elements';
576: fnd_dflex.get_segments(context => context,
577: segments => segments);
578: FOR l_i IN 1..segments.nsegments LOOP
579: IF segments.application_column_name(l_i) = attribute_name THEN
580: l_prompt := segments.row_prompt(l_i);