When changing a field in Parent, same field in Child is not syncronized in the related list column
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2023 02:14 AM
Hello!
As the title says, when I update a field within a parent table, the same reference field gets updated the child table when I open up the child record.
However, if I don't open the child record and only see it from the related list view with the same column/field visible, I can only see the information (in this case name) before the update.
Why is that?
Parent, with name Birgitta:
Child with name Birgitta:
But in the List view, the original name (before Birgitta) is still visible:
Can you please help me fix this issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2023 02:23 AM - edited 11-08-2023 02:25 AM
There could be multiple reasons for this
1. You have a duplicate field on the table with same label
2. You are dot walking the parent field on the child form layout but in list layout its the other field that is on child table itself. Please configure list layout to check that
3. There could be an onLoad client script setting value into the field on child table that is executing only when you load the child record form but in the backend its still the old value stored so list layout displaying old value.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2023 03:56 AM
I had to make a Business rule that connects the field in the Child to the Parent, and in that way the update in the Rel list was possible! 🙂 But thanks anyways.