How before create and after create event handlers works in mendix?

0
Hi all, i was trying to implement each bit of the event handler but I'm facing issues when I'm choosing before create and after create , can any one please help me how can i use these.
asked
2 answers
1

Before and After Create mean that these event handlers are executed around creation of a new object.

Before Create is executed before the object you are about to create exists, so the new object cannot be passed as a parameter into your before create microflow.

After Create is executed when the object exists, so the object can be passed into your event handler microflow.

As an object is created only once, these event handlers both run only once as well.

You’ll find additional information here: https://docs.mendix.com/refguide/event-handlers/

 

answered
1

Can you describe the issues you are facing? How are your microflows looking? It will not help if we show example microflows that have nothing to do with your usecase.

answered