Activation on ABAP 7.02 ( #2665) (#2666)

* fixed error when activating on ABAP 7.02

* implemented suggestion, direct assignment instead of casting

* implemented suggestion (now using the interface)

* changed lr_popups to li_popups
This commit is contained in:
Hector Martinez 2019-05-14 08:49:11 +02:00 committed by Lars Hvam
parent b5c45eebe5
commit a41382352c

View File

@ -238,7 +238,8 @@ CLASS ZCL_ABAPGIT_SERVICES_REPO IMPLEMENTATION.
DATA: lt_colums_to_display TYPE stringtab,
lv_column LIKE LINE OF lt_colums_to_display,
lt_selected LIKE ct_overwrite.
lt_selected LIKE ct_overwrite,
li_popups TYPE REF TO zif_abapgit_popups.
FIELD-SYMBOLS: <ls_overwrite> LIKE LINE OF ct_overwrite.
@ -253,7 +254,8 @@ CLASS ZCL_ABAPGIT_SERVICES_REPO IMPLEMENTATION.
lv_column = 'DEVCLASS'.
INSERT lv_column INTO TABLE lt_colums_to_display.
zcl_abapgit_ui_factory=>get_popups( )->popup_to_select_from_list(
li_popups = zcl_abapgit_ui_factory=>get_popups( ).
li_popups->popup_to_select_from_list(
EXPORTING
it_list = ct_overwrite
iv_header_text = |The following objects have been created in other packages.|