Skip to content

Commit d5664dc

Browse files
authored
update large table (#401)
1 parent 54b6a6a commit d5664dc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/z2ui5_cl_demo_app_006.clas.abap

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ CLASS z2ui5_cl_demo_app_006 IMPLEMENTATION.
3232

3333
METHOD refresh_data.
3434

35-
DO 100 TIMES.
35+
DO 10000 TIMES.
3636
DATA ls_row TYPE ty_row.
3737
ls_row-count = sy-index.
3838
ls_row-value = 'red'.
39-
* info = COND #( WHEN sy-index < 50 THEN 'completed' ELSE 'uncompleted' )
4039
ls_row-descr = 'this is a description'.
4140
ls_row-checkbox = abap_true.
42-
* percentage = COND #( WHEN sy-index <= 100 THEN sy-index ELSE '100' )
4341
ls_row-valuecolor = `Good`.
4442
INSERT ls_row INTO TABLE t_tab.
4543
ENDDO.

0 commit comments

Comments
 (0)