Multi Insert from a list

We have a list of items that we can issue employees. lets call them “Issue types”
When we issue an items it goes into a table called “Employee Issued”
Some of those items are defaulted as items we issue every new employee.

How do I automatically insert the default items into the employee issued table using multi insert?

Hi @rokit,

When you add a new employee, after the database insert for the employee, add a new insert for the Employees issued table using the default items you want them to be associated with. This can all be done in the same server action.

1 Like