E10 Customization Changes from E8

I am working on a customization in E10 and a few things are not the same.

For instance to update a record in a View I would simply do the following.


Jobprod.DataView(JobProd.Row).BeginEdit

jobProdataView(JobProd.Row)("Number"01") = 1

JobProd.dataView(JobProd.Row).EndEdit

oTrans.Update()


Now I cannot get the data to commit to the DB otrans.update(hardsave) is what it now shows in the object explorer.


Also GetByID for all the adapters seems to have "Parameters" instead of the field names. I can get it to work if a single variable was needed, but now if there are multiple I get no rows found. For example

OrderDtlSearchAdapt.GetByID(orderNum, orderLine)  "This works in 8"


However this is what E10 shows

OrderDtlSearchAdapt.GetByID(parameters)


I tried combining the order and line into a seperated string "parameters" but that does not work.