I am currently working on a requirement where I need to implement a process flow in the Mendix application, similar to the one shown in the attached image. The flow includes different types of steps such as Storage, Inspection, and Operation, connected in a specific sequence.

0
    To be honest, I’m not sure how to design or implement this flow dynamically in Mendix. I’m looking for your guidance on the following points: How to represent different types of steps (e.g., operation, inspection, storage) in Mendix? How to store and visualize the sequence or flow between each step? Is there a way to manage or build such flows dynamically using entities and associations? Any example or reference to help model this type of flow? My goal is to allow users to define or view such process flows within the application, but I’m unsure where to start. Your help or suggestions will be really appreciated.
asked
2 answers
1

Hi Chadani,

 

you can try Mendix workflows. workflow is a visual and structured way to model and automate business processes that involve human tasksdecisions, and system actions. It allows you to define how a process flows from start to finish, who is involved, and what needs to happen at each step.

for more information on Work flow follow the below link. 

Mendix WorkFlow

 

Cheers!

answered
0

I’m trying to create a flowchart using Mermaid graph widget from marketplace inside a Mendix application. The goal is to visualize a sequence of operations (like a process flow), and I want to render this using Mermaid syntax.

 

graph TD   

Start --> Operation1   

Operation1 --> Operation2   

Operation2 --> End

 

Any guidance, code examples, or sample projects would be really appreciated!

Thanks in advance 🙏

 

 

answered