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 209: l_event_source_info.entity_type_code := 'CE_CASHFLOWS';

205: -- initialize event source info
206: --
207: l_event_source_info.application_id := 260;
208: l_event_source_info.source_id_int_1 := X_trx_id;
209: l_event_source_info.entity_type_code := 'CE_CASHFLOWS';
210: --
211: -- Populate event source info record and security context
212: --
213: select cf.cashflow_legal_entity_id,

Line 239: from ce_cashflows cf,

235: l_clearing_charges_amount,
236: l_clearing_error_amount,
237: l_cashflow_date,
238: l_ledger_id
239: from ce_cashflows cf,
240: ce_payment_transactions trx
241: where trx.trxn_reference_number(+) = cf.trxn_reference_number
242: and cf.cashflow_id = X_trx_id;
243: