DBA Data[Home] [Help]

APPS.XLA_UPGRADE_PUB dependencies on XLA_TRANSACTION_ENTITIES

Line 63: xla_transaction_entities.entity_id%type

59: -- declaring global pl/sql types
60: -------------------------------------------------------------------------------
61:
62: TYPE t_entity_id IS TABLE OF
63: xla_transaction_entities.entity_id%type
64: INDEX BY BINARY_INTEGER;
65: TYPE t_error_flag IS TABLE OF VARCHAR2(1) INDEX BY BINARY_INTEGER;
66: TYPE t_event_id IS TABLE OF
67: xla_events.event_id%type

Line 606: update xla_transaction_entities_upg

602: LIMIT g_batch_size;
603: EXIT when l_entity_id.COUNT = 0;
604:
605: FORALL i IN l_entity_id.FIRST..l_entity_id.LAST
606: update xla_transaction_entities_upg
607: set upg_valid_flag = null
608: where entity_id = l_entity_id(i);
609:
610: COMMIT;