DBA Data[Home] [Help]

APPS.XLA_CONDITIONS_PKG dependencies on XLA_LOOKUPS_PKG

Line 388: l_line_operator_dsp := xla_lookups_pkg.get_meaning

384: l_condition_dsp := rtrim(l_condition_dsp) ||' IS NULL ';
385: ELSIF(l_condition.logical_operator_code = 'X') THEN
386: l_condition_dsp := rtrim(l_condition_dsp) ||' IS NOT NULL ';
387: ELSE
388: l_line_operator_dsp := xla_lookups_pkg.get_meaning
389: (p_lookup_type => 'XLA_LINE_OPERATOR_TYPE'
390: ,p_lookup_code => l_condition.line_operator_code);
391:
392: l_condition_dsp := rtrim(l_condition_dsp)||' '||

Line 527: l_logical_operator_dsp := xla_lookups_pkg.get_meaning

523: IF l_condition.logical_operator_code is not null THEN
524: -- bugfix 6024311: since Meaning in lookup table will be translated,
525: -- do not use get_meaning() for lookup_type XLA_LOGICAL_OPERATOR_TYPE
526: /*
527: l_logical_operator_dsp := xla_lookups_pkg.get_meaning
528: (p_lookup_type => 'XLA_LOGICAL_OPERATOR_TYPE'
529: ,p_lookup_code => l_condition.logical_operator_code);
530: l_condition_dsp := rtrim(l_condition_dsp)||' '||
531: l_logical_operator_dsp;