DBA Data[Home] [Help]

APPS.CE_XLA_ACCT_EVENTS_PKG dependencies on CE_CASHFLOW_HIST_PKG

Line 283: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,

279:
280: l_accounting_date := l_cashflow_date;
281:
282: -- populate history table
283: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,
284: 0,
285: X_trx_id,
286: X_event_type_code,
287: l_accounting_date,

Line 331: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,

327: l_accounting_date := l_cleared_date;
328: END IF;
329:
330: -- populate history table
331: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,
332: 0,
333: X_trx_id,
334: X_event_type_code,
335: l_accounting_date,

Line 389: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,

385: SET status_code = 'NOT_APPLICABLE'
386: WHERE event_id = l_previous_event_id;
387:
388: -- populate history table with 'Not Applicable' status
389: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,
390: 0,
391: X_trx_id,
392: X_event_type_code,
393: l_accounting_date,

Line 428: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,

424:
425: ELSE -- clearing event is accounted
426:
427: -- populate history table with 'UNACCOUNTED' status
428: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,
429: 0,
430: X_trx_id,
431: X_event_type_code,
432: l_accounting_date,

Line 514: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,

510: WHERE event_id = l_creation_event_id;
511:
512: log('Inserting History with type code: ' ||X_event_type_code);
513: -- populate history table with 'Not Applicable' status
514: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,
515: 0,
516: X_trx_id,
517: X_event_type_code,
518: l_accounting_date,

Line 551: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,

547: l_reference_info,
548: x_trx_id );
549: ELSE -- creation event is accounted
550: -- populate history table with 'UNACCOUNTED' status
551: CE_CASHFLOW_HIST_PKG.insert_row(l_rowid,
552: 0,
553: X_trx_id,
554: X_event_type_code,
555: l_accounting_date,