DBA Data[Home] [Help]

APPS.CE_XLA_ACCT_EVENTS_PKG dependencies on CE_CASHFLOWS

Line 67: log('CE_CASHFLOWS: '||X_event_source_info.entity_type_code);

63: BEGIN
64: log('Updating SLA event: '|| X_event_id);
65: log('260: ' || X_event_source_info.application_id);
66: log('Trx ID: '|| X_event_source_info.source_id_int_1);
67: log('CE_CASHFLOWS: '||X_event_source_info.entity_type_code);
68: log('LE: '||X_event_source_info.legal_entity_id);
69: log('Ledger: '||X_event_source_info.ledger_id);
70: log('trx num: '||X_event_source_info.transaction_number);
71:

Line 200: l_event_source_info.entity_type_code := 'CE_CASHFLOWS';

196: -- initialize event source info
197: --
198: l_event_source_info.application_id := 260;
199: l_event_source_info.source_id_int_1 := X_trx_id;
200: l_event_source_info.entity_type_code := 'CE_CASHFLOWS';
201: --
202: -- Populate event source info record and security context
203: --
204: select cf.cashflow_legal_entity_id,

Line 230: from ce_cashflows cf,

226: l_clearing_charges_amount,
227: l_clearing_error_amount,
228: l_cashflow_date,
229: l_ledger_id
230: from ce_cashflows cf,
231: ce_payment_transactions trx
232: where trx.trxn_reference_number(+) = cf.trxn_reference_number
233: and cf.cashflow_id = X_trx_id;
234: