Entity Event Handlers

0
Hi I have the following entities How can i write an microflow in the entity event handllers that sets DeviceModules.DeviceID to its corresponding Devices.iID   Thank you
asked
1 answers
0

Going over an association would make your DeviceModules.DeviceID attribute redundant. You can get the corresponding Devices.iID through that association.

 

If you need to set the value:

  1. Get the Devices object.
  2. Get/Create the DevicesModules object(s)
  3. Change the DevicesModules object(s), setting DeviceModules.DeviceID to $Devices.iID
answered