From 5af8cf8862fa35f668a5cd07f24f514b2b9c4ecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=BCnter?= Date: Wed, 6 Jul 2022 17:15:42 +0200 Subject: [PATCH] AFF: Downport (#5679) * AFF: Downport * fix lint --- .../zcl_abapgit_object_intf.clas.locals_imp.abap | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/objects/zcl_abapgit_object_intf.clas.locals_imp.abap b/src/objects/zcl_abapgit_object_intf.clas.locals_imp.abap index 65d10a694..c841b4d25 100644 --- a/src/objects/zcl_abapgit_object_intf.clas.locals_imp.abap +++ b/src/objects/zcl_abapgit_object_intf.clas.locals_imp.abap @@ -190,7 +190,10 @@ CLASS lcl_aff_helper IMPLEMENTATION. DATA: lt_components TYPE STANDARD TABLE OF ty_helper_type, lt_sub_components TYPE ty_sub_compontents, - lt_components_exp TYPE ty_compontents. + lt_components_exp TYPE ty_compontents, + ls_component_exp LIKE LINE OF lt_components_exp. + FIELD-SYMBOLS: + LIKE LINE OF lt_components. SELECT component~cmpname component_text~descript component~cmptype @@ -211,7 +214,11 @@ CLASS lcl_aff_helper IMPLEMENTATION. AND sub_component_text~langu = iv_language AND sub_component_text~descript <> space. "#EC CI_BUFFJOIN - MOVE-CORRESPONDING lt_components TO lt_components_exp. + LOOP AT lt_components ASSIGNING . + CLEAR ls_component_exp. + MOVE-CORRESPONDING TO ls_component_exp. + INSERT ls_component_exp INTO TABLE lt_components_exp. + ENDLOOP. rs_properties-attributes = get_attributes( lt_components_exp ). rs_properties-methods = get_methods( is_components = lt_components_exp