Hello,
I need to increase auto save timing in dynamics crm.
I have tried
UPDATE MSCRM_CONFIG.dbo.
DeploymentProperties
SET
IntColumn = 100
WHERE
ColumnName =
'AutoSaveInterval'
*This post is locked for comments
Hello,
I need to increase auto save timing in dynamics crm.
I have tried
UPDATE MSCRM_CONFIG.dbo.
DeploymentProperties
SET
IntColumn = 100
WHERE
ColumnName =
'AutoSaveInterval'
*This post is locked for comments
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();
}
}
André Arnaud de Cal...
292,494
Super User 2025 Season 1
Martin Dráb
231,307
Most Valuable Professional
nmaenpaa
101,156