Update z2ui5_cl_core_srv_draft.clas.abap

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

View File

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