DBA Data[Home] [Help]

APPS.XLA_JOURNAL_ENTRIES_PKG dependencies on XLA_ACCOUNTING_ERRORS

Line 1337: DELETE FROM xla_accounting_errors

1333: END LOOP;
1334:
1335: CLOSE c_entries;
1336:
1337: DELETE FROM xla_accounting_errors
1338: WHERE event_id = p_event_id;
1339:
1340: DELETE FROM xla_distribution_links
1341: WHERE application_id = p_application_id

Line 2560: DELETE FROM xla_accounting_errors WHERE event_id = l_info.event_id;

2556:
2557: --
2558: -- Clear the error table for the journal entry
2559: --
2560: DELETE FROM xla_accounting_errors WHERE event_id = l_info.event_id;
2561:
2562: IF (C_LEVEL_STATEMENT >= g_log_level) THEN
2563: trace(p_msg => 'p_retcode = '||p_retcode,
2564: p_module => l_log_module,

Line 6811: FROM xla_accounting_errors

6807: RETURN BOOLEAN
6808: IS
6809: CURSOR c IS
6810: SELECT ae_header_id
6811: FROM xla_accounting_errors
6812: WHERE ae_header_id = p_ae_header_id
6813: AND ROWNUM = 1;
6814: l_exists INTEGER;
6815: l_retcode BOOLEAN := TRUE;

Line 6828: DELETE FROM xla_accounting_errors

6824: p_module => l_log_module,
6825: p_level => C_LEVEL_PROCEDURE);
6826: END IF;
6827:
6828: DELETE FROM xla_accounting_errors
6829: WHERE ae_header_id = p_ae_header_id
6830: AND event_id = p_event_id
6831: AND nvl(ae_line_num,-1) = nvl(p_ae_line_num,-1);
6832: