If you are facing issue that Delete_From not working with changeCompany keyword in Axapta then you can assign null to table object before delete_from line. It will work 100%
changecompany(dataArea.Id)
{
tableobject=null;
delete_from tableobject where condition;
}
Comments