Update z2ui5_cl_core_srv_draft.clas.abap

This commit is contained in:
oblomov-dev 2025-02-03 14:55:59 +01:00 committed by GitHub
parent 82ef74cd6f
commit ba012188c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -113,11 +113,9 @@ CLASS z2ui5_cl_core_srv_draft IMPLEMENTATION.
METHOD count_entries.
data lt_tab type standard table of z2ui5_t_01 with empty key.
SELECT id
SELECT COUNT( * )
FROM z2ui5_t_01
INTO corresponding fields of table @result.
result = lines( lt_tab ).
INTO @result.
ENDMETHOD.
ENDCLASS.