DBA Data[Home] [Help]

APPS.XLA_ACCOUNTING_PUB_PKG dependencies on XLA_EVENTS

Line 38: | calling xla_events_pkg.get_entity_id |

34: | calls and the procedure. |
35: | 04/25/2005 S. Singhania Bug 4323078. Temporarily modified body |
36: | of accounting_progra_document to pass|
37: | NULL for valuation method while |
38: | calling xla_events_pkg.get_entity_id |
39: | 04/27/2005 V. Kumar Bug 4323078. Removed the temporary fix |
40: | and overloaded the procedure |
41: | get_accounting_document with extra |
42: | valuation method parameter. |

Line 179: (p_event_source_info IN xla_events_pub_pkg.t_event_source_info

175: -- Overloaded with extra valuation_method parameter
176: --
177: --============================================================================
178: PROCEDURE accounting_program_document
179: (p_event_source_info IN xla_events_pub_pkg.t_event_source_info
180: ,p_application_id IN NUMBER DEFAULT NULL
181: ,p_valuation_method IN VARCHAR2
182: ,p_entity_id IN NUMBER
183: ,p_accounting_flag IN VARCHAR2 DEFAULT 'Y'

Line 241: l_entity_id := xla_events_pkg.get_entity_id

237: END IF;
238:
239: xla_security_pkg.set_security_context(p_event_source_info.application_id);
240:
241: l_entity_id := xla_events_pkg.get_entity_id
242: (p_event_source_info => p_event_source_info
243: ,p_valuation_method => p_valuation_method );
244: l_application_id := p_event_source_info.application_id;
245: l_ledger_id := p_event_source_info.ledger_id;

Line 459: (p_event_source_info IN xla_events_pub_pkg.t_event_source_info

455: --
456: --
457: --============================================================================
458: PROCEDURE accounting_program_document
459: (p_event_source_info IN xla_events_pub_pkg.t_event_source_info
460: ,p_application_id IN NUMBER DEFAULT NULL
461: ,p_entity_id IN NUMBER
462: ,p_accounting_flag IN VARCHAR2 DEFAULT 'Y'
463: ,p_accounting_mode IN VARCHAR2

Line 576: ,xla_events xe

572:
573: INSERT INTO XLA_ACCT_PROG_EVENTS_GT(event_id, ledger_id)
574: SELECT xe.event_id, xte.ledger_id
575: FROM xla_acct_prog_docs_gt xap
576: ,xla_events xe
577: ,xla_transaction_entities xte
578: WHERE xte.application_id = p_application_id
579: AND xte.entity_id = xap.entity_id
580: AND xap.entity_id IS NOT NULL

Line 676: , xla_events xe

672: IS
673: CURSOR c_invalid_events IS
674: SELECT 1
675: FROM xla_acct_prog_events_gt xap
676: , xla_events xe
677: WHERE xe.application_id = p_application_id
678: AND xe.event_id = xap.event_id
679: AND NVL(xe.budgetary_control_flag,'N') = DECODE(p_accounting_mode
680: ,'DRAFT','Y' -- 5109240a replace 'D'

Line 754: FROM xla_events xe

750:
751: UPDATE xla_acct_prog_events_gt xpa
752: SET (ledger_id) =
753: (SELECT ledger_id
754: FROM xla_events xe
755: , xla_transaction_entities xte
756: WHERE xte.application_id = xe.application_id
757: AND xte.entity_id = xe.entity_id
758: AND xe.application_id = p_application_id