Показать сообщение отдельно
Старый 06.12.2012, 15:30   #2  
belugin is offline
belugin
Участник
Аватар для belugin
Сотрудники Microsoft Dynamics
Лучший по профессии 2017
Лучший по профессии 2015
Лучший по профессии 2014
Лучший по профессии 2011
Лучший по профессии 2009
 
4,622 / 2925 (107) +++++++++
Регистрация: 16.01.2004
Записей в блоге: 5
Судя по всему срабатывает вот этот assert в методе constructForSystemDefinedByTableId

X++:
 // Verify the type will be able to be created completely
    if ((sysDictTable.name() == '') || (tableId2name(backingEntityTableId) == '') || (fieldId2Name(backingEntityTableId, dictView.fieldId(keyField)) == '') || (fieldId2Name(backingEntityTableId, dictView.fieldId(valueField)) == '') || (dictView.label() == ''))
    {
        // The fields are always required in order for the dimensions subsystem to successfully link to the correct table and columns. This is a coding error so assert false
        Debug::assert(false);
        return null;
    }
Поробуйте отключить отладку (в параметрах пользователя Debug mode: No)
Попробуйте отключить IL
Попробуйте позвать программера и найти причину, по которой сабатыввет ассерт.

Приложение кастомизированное?