mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 20:32:26 +08:00
Fix TABL regression
This commit is contained in:
parent
98c18a8333
commit
1de9456567
|
@ -707,6 +707,8 @@ CLASS zcl_abapgit_object_tabl IMPLEMENTATION.
|
||||||
DATA lv_package TYPE devclass.
|
DATA lv_package TYPE devclass.
|
||||||
FIELD-SYMBOLS <ls_segment_definition> TYPE ty_segment_definition.
|
FIELD-SYMBOLS <ls_segment_definition> TYPE ty_segment_definition.
|
||||||
|
|
||||||
|
rv_deserialized = abap_false.
|
||||||
|
|
||||||
TRY.
|
TRY.
|
||||||
|
|
||||||
io_xml->read( EXPORTING iv_name = c_s_dataname-segment_definition
|
io_xml->read( EXPORTING iv_name = c_s_dataname-segment_definition
|
||||||
|
@ -714,10 +716,13 @@ CLASS zcl_abapgit_object_tabl IMPLEMENTATION.
|
||||||
|
|
||||||
|
|
||||||
CATCH zcx_abapgit_exception ##no_handler.
|
CATCH zcx_abapgit_exception ##no_handler.
|
||||||
rv_deserialized = abap_false.
|
|
||||||
RETURN. "previous XML version or no IDoc segment
|
RETURN. "previous XML version or no IDoc segment
|
||||||
ENDTRY.
|
ENDTRY.
|
||||||
|
|
||||||
|
IF lines( lt_segment_definitions ) = 0.
|
||||||
|
RETURN. "no IDoc segment
|
||||||
|
ENDIF.
|
||||||
|
|
||||||
rv_deserialized = abap_true.
|
rv_deserialized = abap_true.
|
||||||
|
|
||||||
lv_package = iv_package.
|
lv_package = iv_package.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user