Hi experts,
I am using the default BO delete operation to delete some line on table.
First i get the list of BO to delete and then i iterate over then deleting one by one, like that:
// listMyBO is the list containing all my BO for(MyBO mob: listMyBO){ if (/*true clause*/) { this.getMyBOServiceLocal().delete(mob); } }
When i execute this operation with a little bit quantity of BO in the listMyBO, the execution finish sucessfully and the records are deleted in the database.
If the list have a lot of BO the problem occurs. I tested the operation with 3000 BO in a list. The process execute with no error, but the records are not deleted on the database.
hope anyone have already see this...
I will apreciate your help.
Best regards