DBA Data[Home] [Help]

APPS.XLA_ACCOUNTING_ENGINE_PKG dependencies on FND_PROFILE

Line 881: AND acd.amb_context_code = NVL(fnd_profile.value('XLA_AMB_CONTEXT'),'DEFAULT')

877: AND ledg.sla_accounting_method_type = acd.accounting_method_type_code
878: -- AND acm.accounting_method_code = acd.accounting_method_code
879: -- AND acm.accounting_method_type_code = acd.accounting_method_type_code
880: AND acd.application_id = p_application_id
881: AND acd.amb_context_code = NVL(fnd_profile.value('XLA_AMB_CONTEXT'),'DEFAULT')
882: AND nvl(acd.start_date_active,p_min_event_date) <= p_min_event_date
883: AND nvl(acd.end_date_active,p_max_event_date) >= p_max_event_date) t1
884: GROUP BY t1.product_rule_type_code, t1.product_rule_code) t
885: WHERE xpa.product_rule_type_code = t.product_rule_type_code

Line 887: AND xpa.amb_context_code = NVL(fnd_profile.value('XLA_AMB_CONTEXT'),'DEFAULT')

883: AND nvl(acd.end_date_active,p_max_event_date) >= p_max_event_date) t1
884: GROUP BY t1.product_rule_type_code, t1.product_rule_code) t
885: WHERE xpa.product_rule_type_code = t.product_rule_type_code
886: AND xpa.product_rule_code = t.product_rule_code
887: AND xpa.amb_context_code = NVL(fnd_profile.value('XLA_AMB_CONTEXT'),'DEFAULT')
888: AND xpa.application_id = p_application_id
889: AND xpa.application_id = xet.application_id
890: AND xpa.entity_code = xet.entity_code
891: AND xpa.event_class_code = xet.event_class_code

Line 1926: xla_accounting_engine_pkg.g_diagnostics_mode := nvl(fnd_profile.value('XLA_DIAGNOSTIC_MODE'),'N');

1922:
1923: --
1924: -- Diagnotic Framework
1925: --
1926: xla_accounting_engine_pkg.g_diagnostics_mode := nvl(fnd_profile.value('XLA_DIAGNOSTIC_MODE'),'N');
1927:
1928: --
1929: -- validate to make sure that the accounting mode parameter is correct
1930: -- (it should either be 'D' or 'F' for DRAFT/FINAL)