TABL bugfix, #296

This commit is contained in:
larshp 2016-11-24 07:38:22 +00:00
parent 4a8419ea80
commit 95c73d82b9
2 changed files with 8 additions and 5 deletions

View File

@ -3,7 +3,7 @@ REPORT zabapgit LINE-SIZE 100.
* See http://www.abapgit.org
CONSTANTS: gc_xml_version TYPE string VALUE 'v1.0.0', "#EC NOTEXT
gc_abap_version TYPE string VALUE 'v1.23.1'. "#EC NOTEXT
gc_abap_version TYPE string VALUE 'v1.23.2'. "#EC NOTEXT
********************************************************************************
* The MIT License (MIT)

View File

@ -696,13 +696,16 @@ CLASS lcl_objects IMPLEMENTATION.
METHOD compare_remote_to_local.
DATA ls_remote_file TYPE ty_file.
DATA: ls_remote_file TYPE ty_file,
lo_remote_version TYPE REF TO lcl_xml_input,
lo_comparison_result TYPE REF TO lif_object_comparison_result.
DATA:
lo_remote_version TYPE REF TO lcl_xml_input,
lo_comparison_result TYPE REF TO lif_object_comparison_result.
IF is_result-filename CS '.XML'.
IF io_object->exists( ) = abap_false.
RETURN.
ENDIF.
READ TABLE it_remote WITH KEY filename = is_result-filename INTO ls_remote_file.
"if file does not exist in remote, we don't need to validate