DBA Data[Home] [Help]

APPS.XLA_ACCOUNTING_ENGINE_PKG dependencies on FND_PROFILE

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

871: AND ledg.sla_accounting_method_type = acd.accounting_method_type_code
872: -- AND acm.accounting_method_code = acd.accounting_method_code
873: -- AND acm.accounting_method_type_code = acd.accounting_method_type_code
874: AND acd.application_id = p_application_id
875: AND acd.amb_context_code = NVL(fnd_profile.value('XLA_AMB_CONTEXT'),'DEFAULT')
876: AND nvl(acd.start_date_active,p_min_event_date) <= p_min_event_date
877: AND nvl(acd.end_date_active,p_max_event_date) >= p_max_event_date) t1
878: GROUP BY t1.product_rule_type_code, t1.product_rule_code) t
879: WHERE xpa.product_rule_type_code = t.product_rule_type_code

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

877: AND nvl(acd.end_date_active,p_max_event_date) >= p_max_event_date) t1
878: GROUP BY t1.product_rule_type_code, t1.product_rule_code) t
879: WHERE xpa.product_rule_type_code = t.product_rule_type_code
880: AND xpa.product_rule_code = t.product_rule_code
881: AND xpa.amb_context_code = NVL(fnd_profile.value('XLA_AMB_CONTEXT'),'DEFAULT')
882: AND xpa.application_id = p_application_id
883: GROUP BY xpa.event_type_code, aad_count
884: HAVING count(*) < aad_count;
885:

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

1803:
1804: --
1805: -- Diagnotic Framework
1806: --
1807: xla_accounting_engine_pkg.g_diagnostics_mode := nvl(fnd_profile.value('XLA_DIAGNOSTIC_MODE'),'N');
1808:
1809: --
1810: -- validate to make sure that the accounting mode parameter is correct
1811: -- (it should either be 'D' or 'F' for DRAFT/FINAL)