DBA Data[Home] [Help]

APPS.OKL_DFLEX_UTIL_PVT dependencies on FND_FLEX_DESCVAL

Line 481: fnd_flex_descval.set_context_value

477: ,p_attr_name => l_desc_col_name15
478: ,p_attr_value => p_segment_values_rec.attribute15
479: );
480:
481: fnd_flex_descval.set_context_value
482: (p_segment_values_rec.attribute_category);
483:
484: if l_attr_set.count > 0 then
485: --

Line 495: fnd_flex_descval.set_column_value

491: l_attr_value := l_attr_set(l_attr_set_cnt).col2;
492: --
493: -- Add attribute details to AOL DF column details
494: --
495: fnd_flex_descval.set_column_value
496: (column_name => l_attr_name
497: ,column_value => l_attr_value
498: );
499: --

Line 506: if NOT FND_FLEX_DESCVAL.validate_desccols

502:
503: --
504: -- Validate DF column details passed to AOL
505: --
506: if NOT FND_FLEX_DESCVAL.validate_desccols
507: (appl_short_name => p_appl_short_name
508: ,desc_flex_name => p_descflex_name
509: ,values_or_ids => 'I'
510: )

Line 513: l_error_seg := FND_FLEX_DESCVAL.error_segment;

509: ,values_or_ids => 'I'
510: )
511: then
512:
513: l_error_seg := FND_FLEX_DESCVAL.error_segment;
514: find_error_segment(p_appl_short_name => p_appl_short_name,
515: p_flexfield_name => p_descflex_name,
516: p_context_code => p_segment_values_rec.attribute_category,
517: p_error_seg_num => l_error_seg,

Line 527: ,p_token1_value => FND_FLEX_DESCVAL.error_message

523: OKL_API.SET_MESSAGE
524: (p_app_name => G_APP_NAME
525: ,p_msg_name => 'OKL_DESC_FLEX_ERROR'
526: ,p_token1 => 'DESC_FLEX_MSG'
527: ,p_token1_value => FND_FLEX_DESCVAL.error_message
528: ,p_token2 => 'ERROR_SEGMENT'
529: ,p_token2_value => l_flex_seg_error_prompt
530: ,p_token3 => 'TABLE_NAME'
531: ,p_token3_value => l_table_name

Line 539: end if; -- FND_FLEX_DESCVAL.validate_desccols

535: ,p_token5_value => p_segment_values_rec.attribute_category);
536:
537: RAISE OKL_API.G_EXCEPTION_ERROR;
538: --
539: end if; -- FND_FLEX_DESCVAL.validate_desccols
540: --
541: -- Build the segment set
542: l_seg_tbl_cnt := 0;
543: --

Line 548: l_enab_seg_count := fnd_flex_descval.segment_count;

544: l_first_enab_segnum := 1;
545: --
546: -- Get the enabled segment count
547: --
548: l_enab_seg_count := fnd_flex_descval.segment_count;
549: --
550: for l_segment_cnt in l_first_enab_segnum..l_enab_seg_count loop
551: --
552: -- Get the segment column name

Line 554: l_seg_column_name := fnd_flex_descval.segment_column_name(l_segment_cnt);

550: for l_segment_cnt in l_first_enab_segnum..l_enab_seg_count loop
551: --
552: -- Get the segment column name
553: --
554: l_seg_column_name := fnd_flex_descval.segment_column_name(l_segment_cnt);
555: --
556: -- Check if the column name is set
557: --
558: if l_seg_column_name is not null then