Short cut for Date

We can fill the date in date field wirh the help of single letter as shown below Press ‘t’ from today date press ‘y’ for yesterday date press ‘T’ for Tomorrow date press ‘m’ for Month end Press ‘+’ / ‘-‘ to move forward / backward one day

Any date format to current account date format

Get current account date format :  let dateFormat = runtime.getCurrentUser().getPreference({           name: ‘DATEFORMAT’         }); Function :      /**      * @description formatDate function is to format all dates to required format.      * @param {Object} selectedDate      * @param {Object} dateFormat      */     function formattedDate(selectedDate, dateFormat) {       try {         let formattedDate = “”           formattedDate = format.format({           value: selectedDate,           type: format.Type.DATE,… Continue reading Any date format to current account date format