I hope this makes sense.
Scenario:
I have a form that has two lookup rules pointing to a 'Stored Procedure' and a 'View' in SQL. The form has 4 fields that the stored procedure uses. A teacher name, a student name, a date, and a time. When all 4 fields are selected, the stored procedure flags a column in the database called "Reserved". The 'View' only returns times that are not flagged as "Reserved". The drop down for the 'Time' field is populated with available times based on what the 'View' returns. Upon initial load of the form and after the student name, teacher name, and date is selected. The available times in the 'Time' field are correct.
Problem:
User A logs in and fills out the student name, teacher name, date, and time. The database is updated properly and the selected time is flagged as reserved. User B logs in and selects their student, the same teacher as user A, and the same date as user A. The times that appear in the drop down are correct. The time user A selected does not appear as an option. Now if user B selects a time and user A happens to change their mind and wants to select a different time. The time that user B selects is still available for user A to select. I believe this is working how it is designed to work.
Question:
Is there was a way to have the 'Time' field reload the available times when clicking on the time field?