What you will need to do is the following:
Hi,
As exactly said Geoffrey,
Hi Vineet,
The solution suggested by Goeffrey will work. You, however need to be aware of the changedDate attribute (the default one) being updated with every updated to the entity. So, if this entity is updated somewhere else in your app, the changedDate is also being updated.
What you could do to overcome is to add another date attribute and update it during the button action (you mentioned in your original post).
Another thing to mention is that Goeffrey’s suggestion to calculate the daysBetween will mean that you will be able to continue running the microflow after 30 days from the update. If, however you want to be able to run the microflow every month once (i.e. once on the last day of the month and second time a day later), you would need to check if the month’s part of the current date is greater than month’s part of the “entity changed” attribute (most likely including also the year part, so something like ‘yyyyMM’ or use the trimToMonth function and check which is greater).
Hope this helps.
Cheers,
Bart
Hi ,
There is many ways to do that and also from your question there is many scenarios my suggestion to do a schedule event runs every month to update the list ,Now the process is automated .
Also if you can give us an example ,you pass an object to the popup or not ? is this action done one time for all the application or user action ?