Показать сообщение отдельно
Старый 14.11.2024, 14:42   #12  
Logger is offline
Logger
Участник
Лучший по профессии 2015
Лучший по профессии 2014
 
3,968 / 3266 (116) ++++++++++
Регистрация: 12.10.2004
Адрес: Москва
Записей в блоге: 2
\Classes\BatchRun\serverCleanUpDeadTasks
X++:
        //cancel executing jobs for disabled users
        update_recordset batchJob setting Status = BatchStatus::Cancelling
            where batchJob.Status == BatchStatus::Executing
        exists join userInfo where userInfo.Id == batchJob.CreatedBy
            && userInfo.Enable == false;
...
        //Send waiting jobs to hold
        update_recordset batchJob setting Status = BatchStatus::Hold
            where batchJob.Status == BatchStatus::Waiting
        exists join userInfo where userInfo.Id == batchJob.CreatedBy
            && userInfo.Enable == false;
правда здесь учетка не в AD заблочена, а в аксапте.
Но вроде бы это приводило к аналогичному результату.