DBA Data[Home] [Help]

APPS.XLA_ACCOUNTING_ERR_PKG dependencies on XLA_CONTEXT_PKG

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

1469: ,p_level => C_LEVEL_PROCEDURE
1470: ,p_module => l_log_module);
1471: END IF;
1472:
1473: l_total_error_count := NVL(xla_context_pkg.get_acct_err_context, 0);
1474:
1475: IF (C_LEVEL_PROCEDURE >= g_log_level) THEN
1476: trace
1477: (p_msg => 'RETURN value l_total_error_count = '||l_total_error_count

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

1865: -- In batch mode count of errors for a ledger are stored in a
1866: -- global context. Following updates the value in the global context.
1867: -------------------------------------------------------------------------
1868: IF g_client_id IS NOT NULL THEN
1869: l_ntemp := NVL(xla_context_pkg.get_acct_err_context, 0) + 1;
1870:
1871: xla_context_pkg.set_acct_err_context
1872: (p_error_count => l_ntemp
1873: ,p_client_id => g_client_id);

Line 1871: xla_context_pkg.set_acct_err_context

1867: -------------------------------------------------------------------------
1868: IF g_client_id IS NOT NULL THEN
1869: l_ntemp := NVL(xla_context_pkg.get_acct_err_context, 0) + 1;
1870:
1871: xla_context_pkg.set_acct_err_context
1872: (p_error_count => l_ntemp
1873: ,p_client_id => g_client_id);
1874: END IF;
1875: