mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +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.
|
||||
FIELD-SYMBOLS <ls_segment_definition> TYPE ty_segment_definition.
|
||||
|
||||
rv_deserialized = abap_false.
|
||||
|
||||
TRY.
|
||||
|
||||
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.
|
||||
rv_deserialized = abap_false.
|
||||
RETURN. "previous XML version or no IDoc segment
|
||||
ENDTRY.
|
||||
|
||||
IF lines( lt_segment_definitions ) = 0.
|
||||
RETURN. "no IDoc segment
|
||||
ENDIF.
|
||||
|
||||
rv_deserialized = abap_true.
|
||||
|
||||
lv_package = iv_package.
|
||||
|
|
Loading…
Reference in New Issue
Block a user