I solved it now in another way:
var conn = $.db.getConnection(); var query = conn.prepareStatement("CALL \"TEST_SYSTEM\".\"test_Project.procedures::discretizationODATA\" ()"); query.execute(); conn.commit(); query.close(); conn.close();This is working well.
As I wrote in the beginning I want to call this procedure before the model via oData is loaded and Data are shown in the table.
Is there some event for this, or what's the best way to do this?