DBA Data[Home] [Help]

APPS.XLA_CONDITIONS_PKG dependencies on FND_FLEX_EXT

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

433: IF l_source_segment_code is not null or l_condition.flexfield_segment_code is not null THEN
434: l_value_dsp := l_condition.value_constant;
435:
436: ELSIF l_source_flex_appl_id = 101 and l_source_id_flex_code = 'GL#' THEN
437: l_value_dsp := fnd_flex_ext.get_segs(application_short_name => 'SQLGL'
438: ,key_flex_code => 'GL#'
439: ,structure_number => p_chart_of_accounts_id
440: ,combination_id => to_number(l_condition.value_constant));
441:

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

449: FETCH c_appl
450: INTO l_appl_short_name;
451: CLOSE c_appl;
452:
453: l_value_dsp := fnd_flex_ext.get_segs(application_short_name => l_appl_short_name
454: ,key_flex_code => l_source_id_flex_code
455: ,structure_number => l_source_id_flex_num
456: ,combination_id => to_number(l_condition.value_constant));
457: END IF;