Scheduled events

0
Can anyone help to to schedule an event through scheduled events to test locally, step-by-step, just to show message for every 10 seconds
asked
4 answers
3

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

 

answered
1

 

You can use the Scheduled Event resource for creating a scheduler. Do the configuration as given below:

PLease note:

  1. Select a microflow which have the desired activity.
  2. You can start with an old timing 
  3. Timezone can be server –( your local time )or UTC
  4. mark repeat as – Yes
  5. Interval – 10 , Interval type- Second.
  6. Also you need to check the enabled option yes- then only the event work in local.

 

 

answered
0

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

answered
-1

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

answered