Источник:
http://harish-m.livejournal.com/24899.html
==============
Some times when merging different layers using .AOD (Application object files) files, Ax compiler might throw compilation errors related to parameters in methods. To resolve instances like this, there was an article published in the old TechNet.
In that article the author recommended running a job which will delete the old table and class headers in the AOD. Here is this job -
X++:
static void deleteHeaders(Args _args)
{
UtilElements utilElements;
while select utilElements where
utilElements.recordType ==UtilElementType::ClassInternalHeader
{
utilElements.delete();
}
while select utilElements where
utilElements.recordType ==UtilElementType::TableInternalHeader
{
utilElements.delete();
}
}
Warning - Please run this job at your risk. I do not provide any guarantee or any warranty.
==============
Источник:
http://harish-m.livejournal.com/24899.html