Prevent Salesforce records update for 15 minutes

Prevent Salesforce records update for 15 minutes

NOW () – ( 15/1440 ) can be checked against the record’s LastModifiedDate in the Validation Rule to prevent/avoid/lock Salesforce records update for 15 minutes .

Sample Validation Rule:

Validation Rule Formula:

AND(
NOT( ISNEW() ),
PRIORVALUE( LastModifiedDate ) >= NOW () - ( 15/1440 )
)

Output:

Leave a Reply