Hi Community
I have an issue, when I modified a sales line and back to quote view the value it doesn't change automatically, I need to refresh f5 to get the new value.
I create a trigger but still is not working.
This is my scenario:
If I delete one Line, my total amount will change in my Quote view page

But still keeping the old value till I press F5.

I create a trigger:
pageextension 50114 SalesQuoteViewList extends "Sales Quotes"
trigger OnAfterGetCurrRecord()
begin
CurrPage.Update(false);
end;
But still is not working.
If you have some recommendation I will appreciate or you now how use RefrehonActive for extend pages, please let me know.