Hello Karthikeyan
It is not achievable straight forward, please check below for similar question.
Mendix Community - Question Details
Mendix Community - Question Details
Mendix Community - Question Details
Microflow Timer | Mendix Documentation
Try it out:
1. Create an entity. Record the data that needs to be processed
2. Create a resident thread in the background via java when the program starts
3. The thread is constantly reading data from db at the time you set. Execute the logic you need4. When the user is logged in successfully put the data you want to process in the entity record and wait for java's resident thread loop
You could create a login page, add Data View, add data source microflow to it and add your logic to the microflow. This would run the MF before log in. If you need scheduled run of a microflow but you do not like Mendix options, you could use a special URL that calls your microflow and you could open the URL from outside regularly using your desired interval. For example, you could use a cheap VPS (like Hetzner) and use cron jobs there calling your URL. Very easy.