Skip to content

Commit

Permalink
update large table
Browse files Browse the repository at this point in the history
  • Loading branch information
oblomov-dev committed Oct 9, 2024
1 parent 54b6a6a commit 9feab7a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/z2ui5_cl_demo_app_006.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,12 @@ CLASS z2ui5_cl_demo_app_006 IMPLEMENTATION.

METHOD refresh_data.

DO 100 TIMES.
DO 10000 TIMES.
DATA ls_row TYPE ty_row.
ls_row-count = sy-index.
ls_row-value = 'red'.
* info = COND #( WHEN sy-index < 50 THEN 'completed' ELSE 'uncompleted' )
ls_row-descr = 'this is a description'.
ls_row-checkbox = abap_true.
* percentage = COND #( WHEN sy-index <= 100 THEN sy-index ELSE '100' )
ls_row-valuecolor = `Good`.
INSERT ls_row INTO TABLE t_tab.
ENDDO.
Expand Down

0 comments on commit 9feab7a

Please sign in to comment.