* @param newValueObjects list of new value objects to save
* @return an ErrorResponse value object in case of errors, VOListResponse if the operation is successfully completed
*/
public Response insertRecords(int[] rowNumbers, ArrayList newValueObjects) throws Exception {
CallOutMachineryVO vo = null;
CallOutPK pk = (CallOutPK)grid.getOtherGridParams().get(ApplicationConsts.CALL_OUT_PK);
for(int i=0;i<newValueObjects.size();i++) {
vo = (CallOutMachineryVO)newValueObjects.get(i);
vo.setCompanyCodeSys01SCH13(pk.getCompanyCodeSys01SCH10());
vo.setCallOutCodeSch10SCH13(pk.getCallOutCodeSCH10());
}
return ClientUtils.getData("insertCallOutMachineries",newValueObjects);
}