Removing rows from a table on a mobile app screen can be done in several ways:

1. Using a system function “TableDelRow” – removes the currently selected table row
2. Using a JavaScript function you can loop table rows and make changes to row data:

var table1 = PROCE55_GetElementByName(‘s1_t1’);

for (var n = 0; n < table1.TableData.length; n++) {
// table1.TableData[n] contains the row value
}