Assigning objects to users

0
Hi, I have a project where I have tasks for my users to complete. I want to add a scheduled event that runs at the beginning of every day and creates a new task for each registered user automatically. With the microflow I can create all the task objects I need but I don't know how to assign the created objects to my users. How would you go at it?
asked
2 answers
0

You need to set a association between your task entity and your user/account/person entity (the entity you use to distinguish your user)

 

When creating the task, you can set this association to the registered user

 

You need a domain model like this

image.png

The cross module association can be set in the association tab

image.png

 

Microflow would look like this

image.png

The Create action would be something like this

image.png

 

answered
0

Hi Gokhan Ekici,

 

It is easy to do this task.

 

Just Follow the below steps:

1. Add a cross module association to the Account entity with the Task entity.

2. Then, In your Scheduled event flow get list of all users and list to tasks to assign.

3. And Assign Task using Loop Operation in the microflow. So that all users can be assigned a task.

 

Hope you understand.

answered