Hi,
I would like to filter it in the Query on the OnBeforeOpen Trigger. So the Query get different No. Names from a Field.
[code]
IF Rec.GET('SAVEDFIL') THEN BEGIN
CurrQuery.SETFILTER("No.", Rec."No.");
END;
[code]
My goal is it, that the query show the No. only, that get from the Rec."No." Field. This code do not worked.
0