Deferred Deletion profiles and Accounts

Hello everyone, i have a scenario where I have persons and accounts already marked for deletion with default deferred deletion of 30 days.

Now I have a requirement where I am changing this value to 180 days, I wonder what will happed to employee profiles and accounts already market for deletion?

Will they be deleted as per the old deferred deletion value or new value will be considered?

If items already marked for 30 days deletion are not delayed by 180 days (the new value), is there a workaround to avoid deletion of these items?

Appreciate your support n valuable input Slight smile

Regards

Daniel

Parents
  • Hi Daniel,
    The deferred deletion will not be changed for the objects that are already in the deferred deletion phase when the deletedelaydays is changed. All these operations can be found from the dialogdeferredoperation. To change deletion time you need to modify the column DialogDeferredOperation.Targetdate. You could use an SQL-Statement to update the objects something like

    update dialogdeferredoperation set targetdate=targetdate+150 where objectkey like '%Person%'

Reply
  • Hi Daniel,
    The deferred deletion will not be changed for the objects that are already in the deferred deletion phase when the deletedelaydays is changed. All these operations can be found from the dialogdeferredoperation. To change deletion time you need to modify the column DialogDeferredOperation.Targetdate. You could use an SQL-Statement to update the objects something like

    update dialogdeferredoperation set targetdate=targetdate+150 where objectkey like '%Person%'

Children