DDLS: deletes remaining TADIR entry during delete (#6745)

Co-authored-by: Marc Bernard <59966492+mbtools@users.noreply.github.com>
Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
Ludwig Stockbauer-Muhr 2024-01-14 07:43:01 +01:00 committed by GitHub
parent 75ecfdaffe
commit 7801eb8d9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -256,6 +256,14 @@ CLASS zcl_abapgit_object_ddls IMPLEMENTATION.
corr_insert( iv_package ).
" rebuild object list to delete remaining TADIR entry
CALL FUNCTION 'WB_TREE_UPDATE_OBJECTLIST'
EXPORTING
p_object_type = 'DF'
p_object_name = ms_item-obj_name
p_operation = 'DELETE'
EXCEPTIONS
OTHERS = 0.
ENDMETHOD.