Hi,
i have some problem to catch the right row on a temporary page.
When i write in input the "Item No." (0736S) field, the page remove that row, and i want to move to previous row (0001S) but this not happen.
I want highlighted line, like this:
Is it possible to do it automatically ?
I tried this part of code but it isn't work:
Rec: Record "4CO Store Manager" temporary
CopyRecTemp: Record "4CO Store Manager" temporary
Code 1
Code 2
CopyRecTemp.Copy(Rec, true);
CopyRecTemp.SetRange("Item No.", gPrecItemNoTempRec);
if CopyRecTemp.FindFirst() then begin
rec.get(CopyRecTemp."EntryNo.");
CurrPage.SetRecord(Rec);
CurrPage.Update(false);
// CurrPage.SetRecord(Rec);
end