Openerp version 7 using Automated actions and Server actions applied based on the below conditions:-
In the Form the record state change from Hold State to Cancel State automatic based on the condition Hold Date is past [Hold Date is greater than current Date].
res = obj.search(cr, uid, [], context=context) #if condition: obj.write(cr, uid, [browse.id], {'state':'cancel'})
Its working only when the user edit any one of the records is it possible to update automatic without editing any records?
Thanks in advance