I have a list view of requests (master) and related events (detail):
the "Request status" and "Open candidates status" fields in the master table are a computed value (via a sql view).
Once a new event is entered, "Request status" and "Open candidates status" should be changed accordingly.
How can this be obtained?
- Is there a way to trigger the reload from DB of the master line from the detail events (i.e. after a new record is added)?
- if not possible, is there a way to access to the field in the page and mark it "outdated" so that the user is informed that the value in the master record is not valid anymore?
- I have been able to refresh the events part of the page calling pageObj.reload({}) in Javascript Onload event but this has impact only on the events of that specific Request
Maybe I am trying to force the application to do something that has not been designed to, but I read similar topics (although not applicable to my case) that show that updates to master data when details change are a common requirement.
ciao.