If you are getting response in JSON, loop over it using simple for loop on the model results array?
var oModel = sap.ui.getCore().getModel().getProperty("/"); //This will have the array of values for(var i=0;i<oModel.length;i++){ alert(oModel[i].Conveyor_Status); }
Regards,
Sai Vellanki.