Implementation logic question

0
Hi, I want to have a User with some status. For example, User can declare himself to be ART Positive or ART Negative and if the user is ART Positive then a list of tasks will be generated for the User to complete (Submit Travel and Health Declaration Form and Submit ART Results).
asked
2 answers
1

There are many ways to create this, personally I would make a entity with an ENUM connected to the Account with the user status.

Then when showing the form you can direct them to the different forms (different pages) or create one page with different questions based on this status.

 

 

Hope this helps

 

answered
0

For the second part of your question: You should make quees that start automatically or scheduled events that start depending on time intervals. A microflow wil check the status of accounts periodically and generate tasks for accounts whose status are available according to your enumaration values.

https://docs.mendix.com/refguide/task-queue/

https://docs.mendix.com/refguide/scheduled-events/

 

answered