mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
* 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:
parent
b5c45eebe5
commit
a41382352c
|
@ -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.|
|
||||
|
|
Loading…
Reference in New Issue
Block a user