Hi @SanmathiKumar Create a custom activity with name - Wait for Non-Weekend and Non-Holiday and try the following JavaScriptfunction execute(context) {
// Get the current date
var currentDate = new Date();
// Define weekends and holidays
var weekends = [0, 6]; // 0 for Sunday, 6 fo...