Dependency Condition

0
Hello, I have an Attribute in one entity ( A) and have few attributes in other entity ( B)and these 2 have an assosiation. I want to use B entity’s attributes based when there is an input in entity A attribute ( On Enter). How to implement the logic here, please.
asked
1 answers
0

Use an event, like on-enter, to run a microflow. In that microflow:

  • You’ll have EA as a parameter, assume it’s called $EA
  • Use a retrieve from database with these settings:
    • Entity: EB
    • First object
    • Constraint: 
      [MinValue <= $EA/Value][MaxValue >= $EA/Value]

       

answered