mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
Renamed variable to comply with naming conventions
t_files_local > lt_files_local
This commit is contained in:
parent
81183b6353
commit
a2f61c40b8
|
@ -271,10 +271,10 @@ CLASS lcl_gui_page_stage IMPLEMENTATION.
|
||||||
|
|
||||||
METHOD read_last_changed_by.
|
METHOD read_last_changed_by.
|
||||||
DATA: ls_local_file TYPE ty_file_item,
|
DATA: ls_local_file TYPE ty_file_item,
|
||||||
t_files_local type ty_files_item_tt.
|
lt_files_local type ty_files_item_tt.
|
||||||
TRY.
|
TRY.
|
||||||
t_files_local = mo_repo->get_files_local( ).
|
lt_files_local = mo_repo->get_files_local( ).
|
||||||
READ TABLE t_files_local INTO ls_local_file WITH KEY file = is_file.
|
READ TABLE lt_files_local INTO ls_local_file WITH KEY file = is_file.
|
||||||
IF sy-subrc = 0.
|
IF sy-subrc = 0.
|
||||||
rv_user = lcl_objects=>changed_by( ls_local_file-item ).
|
rv_user = lcl_objects=>changed_by( ls_local_file-item ).
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user