Srinath,
Scheduled event flows (SEF's) never run in a user context so it wil never show a message. SEF’s can change objects etc but if you want to show something to a user you I would set a microflow timer widget on the homepage or higher on the layout that runs a microflow and do your stuff. You then have a user context and then you can show text to a user.
Regards,
Ronald
You can use the Scheduled Event resource for creating a scheduler. Do the configuration as given below:
PLease note:
To schedule an event in Mendix step by step, follow these instructions:
1.Open your Mendix project in the Mendix Studio Pro.
2. Navigate to the module where you want to schedule the event. This could be the application module or a custom module.
3.Right-click on the "microflows" folder and select "Add" > "Other" > "Scheduled Event". A new microflow named "ScheduledEvent_<YourModuleName>" will be created.
4. Design the microflow that should be executed when the scheduled event is triggered. Add necessary activities such as logic, calls to other microflows, or data manipulation.
5. Save and close the microflow.
6. Go back to the "ScheduledEvent_<YourModuleName>" microflow and add the microflow you just designed as the "Remainder Microflow" in the "Scheduled Events" tab.
7. Set the desired schedule settings in the "Scheduled Events" tab, including the start date, time, interval, and interval type.
8. Enable the scheduler in your Mendix environment. In the Mendix Cloud, go to the "Environment" tab and enable the "Scheduler" feature. For on-premises installations, refer to the Mendix documentation on how to configure the scheduler.
9. Save and publish your changes.
Reference: Mendix Maia Tool
Hi Srinath,
You need to set server radio button instead of UTC..If u select UTC means It will reflect on cloud side.Server is used to trigger microflow from our local.So u should select option as Server.
Hope it will work.
Thanks