Hello,
I need to increase auto save timing in dynamics crm.
I have tried
UPDATE MSCRM_CONFIG.dbo.DeploymentPropertiesSET IntColumn = 100WHERE ColumnName = 'AutoSaveInterval'*This post is locked for comments
I have the same question (0)

Hello,
I need to increase auto save timing in dynamics crm.
I have tried
UPDATE MSCRM_CONFIG.dbo.DeploymentPropertiesSET IntColumn = 100WHERE ColumnName = 'AutoSaveInterval'*This post is locked for comments
I have the same question (0)Hi,
there is not supported way to update this value , but you can use Javascript logic to prevent it save.
function preventAutoSave(econtext) {
var eventArgs = econtext.getEventArgs();
if (eventArgs.getSaveMode() == 70 || eventArgs.getSaveMode() == 2)
{
// put in your logic here,maybe a timer to count if the field is dirty. If the timer is not 100 , then call the this eventArgs.preventDefault();
}
}