DBA Data[Home] [Help]

APPS.XLA_CONDITIONS_PKG dependencies on FND_FLEX_EXT

Line 424: l_value_dsp := fnd_flex_ext.get_segs(application_short_name => 'SQLGL'

420: IF l_source_segment_code is not null or l_condition.flexfield_segment_code is not null THEN
421: l_value_dsp := l_condition.value_constant;
422:
423: ELSIF l_source_flex_appl_id = 101 and l_source_id_flex_code = 'GL#' THEN
424: l_value_dsp := fnd_flex_ext.get_segs(application_short_name => 'SQLGL'
425: ,key_flex_code => 'GL#'
426: ,structure_number => p_chart_of_accounts_id
427: ,combination_id => to_number(l_condition.value_constant));
428:

Line 440: l_value_dsp := fnd_flex_ext.get_segs(application_short_name => l_appl_short_name

436: FETCH c_appl
437: INTO l_appl_short_name;
438: CLOSE c_appl;
439:
440: l_value_dsp := fnd_flex_ext.get_segs(application_short_name => l_appl_short_name
441: ,key_flex_code => l_source_id_flex_code
442: ,structure_number => l_source_id_flex_num
443: ,combination_id => to_number(l_condition.value_constant));
444: END IF;