Hi Eder,
I dont think we can do that.
But if you are importing via DI API. Start your transaction only when you need it.
instead of
start transaction
create order object.
fill in lines
order.add()
end transaction
change it to
create order object
fill in lines
start transaction
order.add()
end transaction.
or if you have no after process you need to take care, dont start transaction at all.
regards
edy