I really don't know what you mean by delete mode. Business objects do not have an editing state of Delete. Now if you delete a record within the BO and the changes have not been committed back to the server, you can just look at the current rows state:MyBO.CurrentRow.RowState = Deleted
But for this to show up, you will have to allow the deleted rows to be visible (property on the BO).