DBA Data[Home] [Help]

APPS.FV_SLA_AR_PROCESSING_PKG dependencies on XLA_TRANSACTION_ENTITIES

Line 360: l_entity_code xla_transaction_entities.entity_code%TYPE;

356: p_error_desc OUT NOCOPY VARCHAR2
357: )
358: IS
359: l_procedure_name VARCHAR2(100) :='.get_ar_document_details';
360: l_entity_code xla_transaction_entities.entity_code%TYPE;
361: l_transcation_id xla_transaction_entities.source_id_int_1%TYPE;
362: BEGIN
363: l_procedure_name := g_path_name || l_procedure_name;
364:

Line 361: l_transcation_id xla_transaction_entities.source_id_int_1%TYPE;

357: )
358: IS
359: l_procedure_name VARCHAR2(100) :='.get_ar_document_details';
360: l_entity_code xla_transaction_entities.entity_code%TYPE;
361: l_transcation_id xla_transaction_entities.source_id_int_1%TYPE;
362: BEGIN
363: l_procedure_name := g_path_name || l_procedure_name;
364:
365: p_error_code := c_SUCCESS;

Line 378: xla_transaction_entities t

374: t.entity_code
375: INTO l_transcation_id,
376: l_entity_code
377: FROM xla_events e,
378: xla_transaction_entities t
379: WHERE e.entity_id = t.entity_id
380: AND e.event_id = p_event_id;
381:
382: trace(C_PROC_LEVEL, l_procedure_name, 'l_entity_code='||l_entity_code);