I have 2 synced records. The first one is notice and the second is notice history
I have a grid that displays info from the notice history record, and I am trying to sync it when the related record of notice is updated, but it is not syncing..
My record type is: recordType!BTTNoticeHistory
My identifier is: pv!notice[recordType!BTTNotice.fields.noticeID]
Any help would be much appreciated!
Discussion posts and replies are publicly visible
hi cindyl5142,
it sounds like your grid isn’t updating because the sync isn’t triggering correctly. with smart service, make sure that your sync logic is actually watching the right identifier and that the updated field in notice is firing an event. sometimes using a computed value or a refresh action on the grid after the smart service runs helps.
notice
also double-check that pv!notice[recordType!BTTNotice.fields.noticeID] actually resolves to the correct value at runtime — if it’s null or mismatched, the sync won’t happen.
pv!notice[recordType!BTTNotice.fields.noticeID]
if possible, try adding a temporary log or alert in the smart service to confirm it’s firing when notice updates. that usually helps spot where it’s breaking.
I am trying to pass the noticeID of notice, but its not passing to the sync node