Retrieve the selected data in drop-down

0
Hello everyone, There are two fields called employee and manager.  If we select the manager name in the ‘manager’ field dropdown then there is another field called employee drop-down and only the employee list under that manager should get reflected in the drop-down. Could anyone please help me in this functionality. Thanks in advance, Apurupa.  
asked
2 answers
0

Hi Apurupa,

I am not sure how your domain model is designed, but if it is designed properly then you can use the constrained by feature and limit the records to show only those who are under that manager. 

answered
0

You need to create two entities Employee and Role

 

  1. employee-role where each employee will have one role (or many roles)
  2. manager-employee where each manager will have multiple employees

 

answered