DBA Data[Home] [Help]

APPS.XLA_CONDITIONS_PKG dependencies on XLA_FLEX_PKG

Line 332: l_flexfield_segment_name := xla_flex_pkg.get_flexfield_segment_name

328: --
329: IF l_condition.flexfield_segment_code is not null THEN
330:
331: IF l_source_flex_appl_id = 101 and l_source_id_flex_code = 'GL#' THEN
332: l_flexfield_segment_name := xla_flex_pkg.get_flexfield_segment_name
333: (p_application_id => 101
334: ,p_flex_code => 'GL#'
335: ,p_chart_of_accounts_id => p_chart_of_accounts_id
336: ,p_flexfield_segment_code => l_condition.flexfield_segment_code);

Line 339: l_flexfield_segment_name := xla_flex_pkg.get_qualifier_name

335: ,p_chart_of_accounts_id => p_chart_of_accounts_id
336: ,p_flexfield_segment_code => l_condition.flexfield_segment_code);
337:
338: IF l_flexfield_segment_name is null THEN
339: l_flexfield_segment_name := xla_flex_pkg.get_qualifier_name
340: (p_application_id => 101
341: ,p_id_flex_code => 'GL#'
342: ,p_qualifier_segment => l_condition.flexfield_segment_code);
343:

Line 348: l_source_id_flex_num := xla_flex_pkg.get_flexfield_structure

344:
345: END IF;
346: ELSE
347:
348: l_source_id_flex_num := xla_flex_pkg.get_flexfield_structure
349: (p_application_id => l_source_flex_appl_id
350: ,p_id_flex_code => l_source_id_flex_code);
351:
352: l_flexfield_segment_name := xla_flex_pkg.get_flexfield_segment_name

Line 352: l_flexfield_segment_name := xla_flex_pkg.get_flexfield_segment_name

348: l_source_id_flex_num := xla_flex_pkg.get_flexfield_structure
349: (p_application_id => l_source_flex_appl_id
350: ,p_id_flex_code => l_source_id_flex_code);
351:
352: l_flexfield_segment_name := xla_flex_pkg.get_flexfield_segment_name
353: (p_application_id => l_source_flex_appl_id
354: ,p_flex_code => l_source_id_flex_code
355: ,p_chart_of_accounts_id => l_source_id_flex_num
356: ,p_flexfield_segment_code => l_condition.flexfield_segment_code);

Line 404: l_value_dsp := xla_flex_pkg.get_flex_value_meaning

400: ELSIF l_condition.value_type_code = 'C' THEN
401:
402: IF l_flex_value_set_id is not null THEN
403:
404: l_value_dsp := xla_flex_pkg.get_flex_value_meaning
405: (p_flex_value_set_id => l_flex_value_set_id
406: ,p_flex_value => l_condition.value_constant);
407:
408: ELSIF l_view_application_id is not null THEN

Line 431: l_source_id_flex_num := xla_flex_pkg.get_flexfield_structure

427: ,combination_id => to_number(l_condition.value_constant));
428:
429: ELSE
430:
431: l_source_id_flex_num := xla_flex_pkg.get_flexfield_structure
432: (p_application_id => l_source_flex_appl_id
433: ,p_id_flex_code => l_source_id_flex_code);
434:
435: OPEN c_appl(l_source_flex_appl_id);

Line 472: l_value_flexfield_segment_name := xla_flex_pkg.get_flexfield_segment_name

468: --
469: IF l_condition.value_flexfield_segment_code is not null THEN
470:
471: IF l_value_source_flex_appl_id = 101 and l_value_source_id_flex_code = 'GL#' THEN
472: l_value_flexfield_segment_name := xla_flex_pkg.get_flexfield_segment_name
473: (p_application_id => 101
474: ,p_flex_code => 'GL#'
475: ,p_chart_of_accounts_id => p_chart_of_accounts_id
476: ,p_flexfield_segment_code => l_condition.value_flexfield_segment_code);

Line 479: l_value_flexfield_segment_name := xla_flex_pkg.get_qualifier_name

475: ,p_chart_of_accounts_id => p_chart_of_accounts_id
476: ,p_flexfield_segment_code => l_condition.value_flexfield_segment_code);
477:
478: IF l_value_flexfield_segment_name is null THEN
479: l_value_flexfield_segment_name := xla_flex_pkg.get_qualifier_name
480: (p_application_id => 101
481: ,p_id_flex_code => 'GL#'
482: ,p_qualifier_segment => l_condition.value_flexfield_segment_code);
483:

Line 487: l_value_source_id_flex_num := xla_flex_pkg.get_flexfield_structure

483:
484: END IF;
485: ELSE
486:
487: l_value_source_id_flex_num := xla_flex_pkg.get_flexfield_structure
488: (p_application_id => l_value_source_flex_appl_id
489: ,p_id_flex_code => l_value_source_id_flex_code);
490:
491: l_value_flexfield_segment_name := xla_flex_pkg.get_flexfield_segment_name

Line 491: l_value_flexfield_segment_name := xla_flex_pkg.get_flexfield_segment_name

487: l_value_source_id_flex_num := xla_flex_pkg.get_flexfield_structure
488: (p_application_id => l_value_source_flex_appl_id
489: ,p_id_flex_code => l_value_source_id_flex_code);
490:
491: l_value_flexfield_segment_name := xla_flex_pkg.get_flexfield_segment_name
492: (p_application_id => l_value_source_flex_appl_id
493: ,p_flex_code => l_value_source_id_flex_code
494: ,p_chart_of_accounts_id => l_value_source_id_flex_num
495: ,p_flexfield_segment_code => l_condition.value_flexfield_segment_code);