14.06.2007, 22:14 | #1 |
Участник
|
Harish Mohanbabu: Axapta 3.0 compilation errors
Источник: 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(); } } ============== Источник: http://harish-m.livejournal.com/24899.html
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|