DMN for rule every weekend

Hi,

I need to implement rules in DMN to resolve only on weekends. Like when user logs into system on weekend the DMN should execute rule that applies on weekend. Can you share some ideas around implementing such a scenario for DMN rules?

1 Like

Hi @shashi_chavan,

you could use the FEEL built-in function day of week() to retrieve the weekday of a given date.

The expression could be used in a decision table as an input expression. In the input entry, you can check if the weekday is Saturday or Sunday.

Does this help you?

Best regards,
Philipp

3 Likes