DBA Data[Home] [Help]

APPS.XLA_ACCOUNTING_ERR_PKG dependencies on XLA_CONTEXT_PKG

Line 1446: l_total_error_count := NVL(xla_context_pkg.get_acct_err_context, 0);

1442: ,p_level => C_LEVEL_PROCEDURE
1443: ,p_module => l_log_module);
1444: END IF;
1445:
1446: l_total_error_count := NVL(xla_context_pkg.get_acct_err_context, 0);
1447:
1448: IF (C_LEVEL_PROCEDURE >= g_log_level) THEN
1449: trace
1450: (p_msg => 'RETURN value l_total_error_count = '||l_total_error_count

Line 1842: l_ntemp := NVL(xla_context_pkg.get_acct_err_context, 0) + 1;

1838: -- In batch mode count of errors for a ledger are stored in a
1839: -- global context. Following updates the value in the global context.
1840: -------------------------------------------------------------------------
1841: IF g_client_id IS NOT NULL THEN
1842: l_ntemp := NVL(xla_context_pkg.get_acct_err_context, 0) + 1;
1843:
1844: xla_context_pkg.set_acct_err_context
1845: (p_error_count => l_ntemp
1846: ,p_client_id => g_client_id);

Line 1844: xla_context_pkg.set_acct_err_context

1840: -------------------------------------------------------------------------
1841: IF g_client_id IS NOT NULL THEN
1842: l_ntemp := NVL(xla_context_pkg.get_acct_err_context, 0) + 1;
1843:
1844: xla_context_pkg.set_acct_err_context
1845: (p_error_count => l_ntemp
1846: ,p_client_id => g_client_id);
1847: END IF;
1848: