Hi, How can we update data using data entity through x++codes. Can we achieve it?
I am using similar code as mentioned in below sample:
CustCustomersV3Entity entity;
entity.selectforupdate(true);
entity.CustomerAccount = xyz;
entity.CustGroup = custgroup1;
ttsbegin;
entity.update();
ttscommit;