Hi Everyone,
I am displaying data in multiple dropdown using recordtype. I have the requirement to make the deselected values as inactive in db. Can anyone please guide me?
Discussion posts and replies are publicly visible
I would achieve this by comparing the newly selected values with the previously stored values in the database.
Steps:
e.g.
local!deselected: difference(local!activeSelections, local!newSelections), local!reactivated: intersection(local!inactiveSelections, local!newSelections)
I believe this would ensure deselected values become inactive and reselected values become active dynamically.