DBA Data[Home] [Help]

APPS.XLA_CONDITIONS_PKG dependencies on XLA_LOOKUPS_PKG

Line 375: l_line_operator_dsp := xla_lookups_pkg.get_meaning

371: l_condition_dsp := rtrim(l_condition_dsp) ||' IS NULL ';
372: ELSIF(l_condition.logical_operator_code = 'X') THEN
373: l_condition_dsp := rtrim(l_condition_dsp) ||' IS NOT NULL ';
374: ELSE
375: l_line_operator_dsp := xla_lookups_pkg.get_meaning
376: (p_lookup_type => 'XLA_LINE_OPERATOR_TYPE'
377: ,p_lookup_code => l_condition.line_operator_code);
378:
379: l_condition_dsp := rtrim(l_condition_dsp)||' '||

Line 514: l_logical_operator_dsp := xla_lookups_pkg.get_meaning

510: IF l_condition.logical_operator_code is not null THEN
511: -- bugfix 6024311: since Meaning in lookup table will be translated,
512: -- do not use get_meaning() for lookup_type XLA_LOGICAL_OPERATOR_TYPE
513: /*
514: l_logical_operator_dsp := xla_lookups_pkg.get_meaning
515: (p_lookup_type => 'XLA_LOGICAL_OPERATOR_TYPE'
516: ,p_lookup_code => l_condition.logical_operator_code);
517: l_condition_dsp := rtrim(l_condition_dsp)||' '||
518: l_logical_operator_dsp;