From f0fa964c25e0b491e4c457bf3e507ff0dcf28278 Mon Sep 17 00:00:00 2001 From: Marc Bernard <59966492+mbtools@users.noreply.github.com> Date: Thu, 9 Feb 2023 09:27:40 +0100 Subject: [PATCH] TABL: Fix activation of secondary indexes (#6055) --- src/objects/zcl_abapgit_object_tabl.clas.abap | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/objects/zcl_abapgit_object_tabl.clas.abap b/src/objects/zcl_abapgit_object_tabl.clas.abap index 1b5189e34..864b7f543 100644 --- a/src/objects/zcl_abapgit_object_tabl.clas.abap +++ b/src/objects/zcl_abapgit_object_tabl.clas.abap @@ -350,8 +350,6 @@ CLASS zcl_abapgit_object_tabl IMPLEMENTATION. LOOP AT lt_dd12v INTO ls_dd12v. -* todo, call corr_insert? - CLEAR lt_secondary. LOOP AT lt_dd17v INTO ls_dd17v WHERE sqltab = ls_dd12v-sqltab AND indexname = ls_dd12v-indexname. @@ -384,8 +382,8 @@ CLASS zcl_abapgit_object_tabl IMPLEMENTATION. IMPORTING obj_name = lv_tname. - zcl_abapgit_objects_activation=>add( iv_type = 'INDX' - iv_name = lv_tname ). + " Secondary indexes are automatically activated as part of R3TR TABL + " So there's no need to add them to activation queue ENDLOOP.