DBA Data[Home] [Help]

APPS.WIP_EAM_WORKREQUEST_PVT dependencies on FND_DFLEX

Line 557: flexfield fnd_dflex.dflex_r;

553: attribute_name IN fnd_descr_flex_col_usage_vl.end_user_column_name%TYPE ,
554: attribute_category IN fnd_descr_flex_contexts.descriptive_flex_context_code%TYPE := 'Global Data Elements')
555: RETURN fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE IS
556:
557: flexfield fnd_dflex.dflex_r;
558: flexinfo fnd_dflex.dflex_dr;
559: context fnd_dflex.context_r;
560: segments fnd_dflex.segments_dr;
561: l_prompt fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE;

Line 558: flexinfo fnd_dflex.dflex_dr;

554: attribute_category IN fnd_descr_flex_contexts.descriptive_flex_context_code%TYPE := 'Global Data Elements')
555: RETURN fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE IS
556:
557: flexfield fnd_dflex.dflex_r;
558: flexinfo fnd_dflex.dflex_dr;
559: context fnd_dflex.context_r;
560: segments fnd_dflex.segments_dr;
561: l_prompt fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE;
562: l_i number;

Line 559: context fnd_dflex.context_r;

555: RETURN fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE IS
556:
557: flexfield fnd_dflex.dflex_r;
558: flexinfo fnd_dflex.dflex_dr;
559: context fnd_dflex.context_r;
560: segments fnd_dflex.segments_dr;
561: l_prompt fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE;
562: l_i number;
563:

Line 560: segments fnd_dflex.segments_dr;

556:
557: flexfield fnd_dflex.dflex_r;
558: flexinfo fnd_dflex.dflex_dr;
559: context fnd_dflex.context_r;
560: segments fnd_dflex.segments_dr;
561: l_prompt fnd_descr_flex_col_usage_vl.form_above_prompt%TYPE;
562: l_i number;
563:
564: BEGIN

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

562: l_i number;
563:
564: BEGIN
565:
566: fnd_dflex.get_flexfield(appl_short_name => appl_short_name,
567: flexfield_name => flexfield_name,
568: flexfield => flexfield,
569: flexinfo => flexinfo);
570:

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

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

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

584: END LOOP;
585:
586: IF l_prompt is NULL AND attribute_name IS NOT NULL THEN
587: context.context_code := 'Global Data Elements';
588: fnd_dflex.get_segments(context => context,
589: segments => segments);
590: FOR l_i IN 1..segments.nsegments LOOP
591: IF segments.application_column_name(l_i) = attribute_name THEN
592: l_prompt := segments.row_prompt(l_i);