diff --git a/src/z2ui5_cl_demo_app_000.clas.abap b/src/z2ui5_cl_demo_app_000.clas.abap index 34c3364..e88d088 100644 --- a/src/z2ui5_cl_demo_app_000.clas.abap +++ b/src/z2ui5_cl_demo_app_000.clas.abap @@ -642,6 +642,12 @@ CLASS z2ui5_cl_demo_app_000 IMPLEMENTATION. class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom' ). + panel = page->panel( + expandable = abap_false + expanded = abap_true + headertext = 'Tiles' + ). + panel->generic_tile( header = 'Tile' subheader = 'Numeric Content Without Margins' diff --git a/src/z2ui5_cl_demo_app_162.clas.abap b/src/z2ui5_cl_demo_app_162.clas.abap index 6133fa5..baf94d4 100644 --- a/src/z2ui5_cl_demo_app_162.clas.abap +++ b/src/z2ui5_cl_demo_app_162.clas.abap @@ -63,14 +63,12 @@ CLASS z2ui5_cl_demo_app_162 IMPLEMENTATION. ( product = 'table2' create_date = `01.01.2023` create_by = `Peter` storage_location = `AREA_001` quantity = 400 ) ). -* DATA lt_result LIKE mt_table. -* "put the range in the where clause of your abap sql command -* "here we use an internal table instead -* LOOP AT mt_sql INTO DATA(ls_tab). -* -* "do filtering here.. -* -* ENDLOOP. + z2ui5_cl_util=>filter_itab( + EXPORTING + filter = mt_sql + CHANGING + val = mt_table + ). ENDMETHOD.