Refresh Foreign Key View

I’m having difficulty refreshing a foreign key view. I have added some fields from the project table to quote entry. I pull up a quote, then pull up the corresponding project, and then change the values on some of the fields. When I click refresh on the Quote I expected the project view would refresh. It does not. I did a trace and noticed that when I pull up a quote for the first time, the Project BO calls it’s GetByID method. On the other hand, when I click the refresh button the Project BO does not get used.

I’ve tried a few things with no luck:
oTrans.Refresh()
oTrans.NotifyAll()
edv.Notify()

Any suggestions?

FKV’s can be tricky to get refreshing consistently,
In some cases I have used BAQ Dataview(s) instead of FKVs.

This topic might be helpful if you wanted to give one a try…

1 Like

Brilliant. Worked like a champ. Thanks for your help!