mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
generic object handler: fix unit test (#6399)
Co-authored-by: Marc Bernard <59966492+mbtools@users.noreply.github.com>
This commit is contained in:
parent
9a4c9bb37d
commit
89f715ed5f
|
@ -125,7 +125,7 @@ ENDCLASS.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CLASS zcl_abapgit_objects_generic IMPLEMENTATION.
|
CLASS ZCL_ABAPGIT_OBJECTS_GENERIC IMPLEMENTATION.
|
||||||
|
|
||||||
|
|
||||||
METHOD after_import.
|
METHOD after_import.
|
||||||
|
@ -241,6 +241,9 @@ CLASS zcl_abapgit_objects_generic IMPLEMENTATION.
|
||||||
SORT mt_object_table BY tobj_name ASCENDING.
|
SORT mt_object_table BY tobj_name ASCENDING.
|
||||||
DELETE ADJACENT DUPLICATES FROM mt_object_table COMPARING tobj_name.
|
DELETE ADJACENT DUPLICATES FROM mt_object_table COMPARING tobj_name.
|
||||||
|
|
||||||
|
* back to primary key table sorting,
|
||||||
|
SORT mt_object_table BY objectname objecttype trwcount.
|
||||||
|
|
||||||
* object methods
|
* object methods
|
||||||
SELECT * FROM objm INTO TABLE mt_object_method
|
SELECT * FROM objm INTO TABLE mt_object_method
|
||||||
WHERE objectname = is_item-obj_type
|
WHERE objectname = is_item-obj_type
|
||||||
|
|
Loading…
Reference in New Issue
Block a user