Hello
I have 2 dataverse tables, one for employees and one for ordered items
Ordered items table is updated based on collection in my app
And same employees table is updated based on app whnever order is placed
Now in both tables I have order ID column, this column in employees is autonumbered, whereas in ordered items its lookup
So what I want is when employees table new record is created , it should update my ordereditems table orderid column with same number from employees
For example when employee x orders items 1,2,3,4
Table employee will create x order id 1 and ordered items will have items 1,2,3,4 under order id 1 also
How to do that? My app already generates the items and employees, but how to also automatically update orderid for items to match employees order id
