DBA Data[Home] [Help]

APPS.XLA_SUBLEDGERS_F_PKG dependencies on XLA_ENTITY_ID_MAPPINGS

Line 350: INSERT INTO xla_entity_id_mappings

346:
347: --
348: -- Create Third Party Merge entity id mapping
349: --
350: INSERT INTO xla_entity_id_mappings
351: (application_id
352: ,entity_code
353: ,creation_date
354: ,created_by

Line 507: DELETE FROM xla_entity_id_mappings

503: ,x_entity_code => C_TPM
504: ,x_event_class_code => C_TPM
505: ,x_event_type_code => 'PARTIAL_MERGE');
506:
507: DELETE FROM xla_entity_id_mappings
508: WHERE application_id = p_application_id
509: AND entity_code = C_TPM
510: ;
511:

Line 568: FROM xla_entity_id_mappings

564: WHERE application_id = x_application_id;
565:
566: CURSOR c1 IS
567: SELECT rowid
568: FROM xla_entity_id_mappings
569: WHERE application_id = x_application_id AND
570: entity_code = C_MANUAL;
571:
572: CURSOR c2 IS

Line 672: INSERT INTO xla_entity_id_mappings

668:
669: --
670: -- Create special entity id mapping for manual entries
671: --
672: INSERT INTO xla_entity_id_mappings
673: (application_id
674: ,entity_code
675: ,creation_date
676: ,created_by

Line 1032: DELETE FROM xla_entity_id_mappings

1028: ,x_entity_code => C_MANUAL
1029: ,x_event_class_code => C_MANUAL
1030: ,x_event_type_code => C_MANUAL);
1031:
1032: DELETE FROM xla_entity_id_mappings
1033: WHERE application_id = x_application_id
1034: AND entity_code = C_MANUAL
1035: ;
1036: