Use the following in Apex:
DateTime dt = System.now();
DateTime fiveMinutesBefore = dt.addMinutes(-5);
System.debug(dt + '\t' + fiveMinutesBefore);
Use the following in Apex:
DateTime dt = System.now();
DateTime fiveMinutesBefore = dt.addMinutes(-5);
System.debug(dt + '\t' + fiveMinutesBefore);
Comments
Post a Comment